summaryrefslogtreecommitdiff
path: root/vp9/encoder/vp9_lookahead.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
commitb453941caffb0bf7e826c1e092f5d8affd101089 (patch)
treec1051ea2b07445fb14f4c25f99550ec453093407 /vp9/encoder/vp9_lookahead.h
parent40aa910c19d2dc03b905966c66a75ed68d52f5c7 (diff)
downloadlibvpx-b453941caffb0bf7e826c1e092f5d8affd101089.tar
libvpx-b453941caffb0bf7e826c1e092f5d8affd101089.tar.gz
libvpx-b453941caffb0bf7e826c1e092f5d8affd101089.tar.bz2
libvpx-b453941caffb0bf7e826c1e092f5d8affd101089.zip
vp9/encoder: add extern "C" to headers
Change-Id: I4f51ce859a97bf1b8fd2b37ac585b7c643232b69
Diffstat (limited to 'vp9/encoder/vp9_lookahead.h')
-rw-r--r--vp9/encoder/vp9_lookahead.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/vp9/encoder/vp9_lookahead.h b/vp9/encoder/vp9_lookahead.h
index c773f8fcc..1c00c462d 100644
--- a/vp9/encoder/vp9_lookahead.h
+++ b/vp9/encoder/vp9_lookahead.h
@@ -14,6 +14,10 @@
#include "vpx_scale/yv12config.h"
#include "vpx/vpx_integer.h"
+#ifdef __cplusplus
+extern "C" {
+#endif
+
#define MAX_LAG_BUFFERS 25
struct lookahead_entry {
@@ -94,4 +98,8 @@ struct lookahead_entry *vp9_lookahead_peek(struct lookahead_ctx *ctx,
*/
unsigned int vp9_lookahead_depth(struct lookahead_ctx *ctx);
+#ifdef __cplusplus
+} // extern "C"
+#endif
+
#endif // VP9_ENCODER_VP9_LOOKAHEAD_H_