summaryrefslogtreecommitdiff
path: root/vp8/encoder/denoising.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/denoising.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/denoising.h')
-rw-r--r--vp8/encoder/denoising.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/vp8/encoder/denoising.h b/vp8/encoder/denoising.h
index 83fb93a14..cc9913afa 100644
--- a/vp8/encoder/denoising.h
+++ b/vp8/encoder/denoising.h
@@ -13,6 +13,10 @@
#include "block.h"
+#ifdef __cplusplus
+extern "C" {
+#endif
+
#define SUM_DIFF_THRESHOLD (16 * 16 * 2)
#define MOTION_MAGNITUDE_THRESHOLD (8*3)
@@ -39,4 +43,8 @@ void vp8_denoiser_denoise_mb(VP8_DENOISER *denoiser,
int recon_yoffset,
int recon_uvoffset);
+#ifdef __cplusplus
+} // extern "C"
+#endif
+
#endif // VP8_ENCODER_DENOISING_H_