summaryrefslogtreecommitdiff
path: root/vp8/encoder/mcomp.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
commit513fae3ee6cbd820bbe31181d243d197b8a46dff (patch)
tree1eb910242d30f81aa9c60969ea483ca937132983 /vp8/encoder/mcomp.h
parent14ae5fd8f3d97fafb25a8d4888374d6cbf981b6a (diff)
downloadlibvpx-513fae3ee6cbd820bbe31181d243d197b8a46dff.tar
libvpx-513fae3ee6cbd820bbe31181d243d197b8a46dff.tar.gz
libvpx-513fae3ee6cbd820bbe31181d243d197b8a46dff.tar.bz2
libvpx-513fae3ee6cbd820bbe31181d243d197b8a46dff.zip
vp8/encoder: add extern "C" to headers
Change-Id: I252f5f8a5d5ada65da08699774a7bb1eb2bd5b2e
Diffstat (limited to 'vp8/encoder/mcomp.h')
-rw-r--r--vp8/encoder/mcomp.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/vp8/encoder/mcomp.h b/vp8/encoder/mcomp.h
index 85bc7add8..f284f7c38 100644
--- a/vp8/encoder/mcomp.h
+++ b/vp8/encoder/mcomp.h
@@ -15,6 +15,10 @@
#include "block.h"
#include "vp8/common/variance.h"
+#ifdef __cplusplus
+extern "C" {
+#endif
+
#ifdef VP8_ENTROPY_STATS
extern void init_mv_ref_counts();
extern void accum_mv_refs(MB_PREDICTION_MODE, const int near_mv_ref_cts[4]);
@@ -104,4 +108,8 @@ typedef int (*vp8_diamond_search_fn_t)
int_mv *center_mv
);
+#ifdef __cplusplus
+} // extern "C"
+#endif
+
#endif // VP8_ENCODER_MCOMP_H_