summaryrefslogtreecommitdiff
path: root/vp9/common/vp9_ppflags.h
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2014-01-18 12:16:11 -0800
committerJames Zern <jzern@google.com>2014-01-23 16:21:24 -0800
commit0940c9cfdeb8f248e8422ddc5a7265fa2e9a693f (patch)
tree22cac13000451e4dd73cc533023457f1a6a59bbd /vp9/common/vp9_ppflags.h
parent513fae3ee6cbd820bbe31181d243d197b8a46dff (diff)
downloadlibvpx-0940c9cfdeb8f248e8422ddc5a7265fa2e9a693f.tar
libvpx-0940c9cfdeb8f248e8422ddc5a7265fa2e9a693f.tar.gz
libvpx-0940c9cfdeb8f248e8422ddc5a7265fa2e9a693f.tar.bz2
libvpx-0940c9cfdeb8f248e8422ddc5a7265fa2e9a693f.zip
vp9/common: add extern "C" to headers
Change-Id: Ic334da9aee968e33762c2b25d9fbad24c844b411
Diffstat (limited to 'vp9/common/vp9_ppflags.h')
-rw-r--r--vp9/common/vp9_ppflags.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/vp9/common/vp9_ppflags.h b/vp9/common/vp9_ppflags.h
index 561c93028..8168935fc 100644
--- a/vp9/common/vp9_ppflags.h
+++ b/vp9/common/vp9_ppflags.h
@@ -11,6 +11,10 @@
#ifndef VP9_COMMON_VP9_PPFLAGS_H_
#define VP9_COMMON_VP9_PPFLAGS_H_
+#ifdef __cplusplus
+extern "C" {
+#endif
+
enum {
VP9D_NOFILTERING = 0,
VP9D_DEBLOCK = 1 << 0,
@@ -35,4 +39,8 @@ typedef struct {
int display_mv_flag;
} vp9_ppflags_t;
+#ifdef __cplusplus
+} // extern "C"
+#endif
+
#endif // VP9_COMMON_VP9_PPFLAGS_H_