| Index: source/libvpx/vp9/encoder/vp9_variance.h
|
| ===================================================================
|
| --- source/libvpx/vp9/encoder/vp9_variance.h (revision 247498)
|
| +++ source/libvpx/vp9/encoder/vp9_variance.h (working copy)
|
| @@ -12,8 +12,11 @@
|
| #define VP9_ENCODER_VP9_VARIANCE_H_
|
|
|
| #include "vpx/vpx_integer.h"
|
| -// #include "./vpx_config.h"
|
|
|
| +#ifdef __cplusplus
|
| +extern "C" {
|
| +#endif
|
| +
|
| void variance(const uint8_t *src_ptr,
|
| int source_stride,
|
| const uint8_t *ref_ptr,
|
| @@ -112,4 +115,8 @@
|
| ref += ref_stride;
|
| }
|
| }
|
| +#ifdef __cplusplus
|
| +} // extern "C"
|
| +#endif
|
| +
|
| #endif // VP9_ENCODER_VP9_VARIANCE_H_
|
|
|