| Index: source/libvpx/vp8/common/common.h
|
| ===================================================================
|
| --- source/libvpx/vp8/common/common.h (revision 247498)
|
| +++ source/libvpx/vp8/common/common.h (working copy)
|
| @@ -18,6 +18,10 @@
|
|
|
| #include "vpx_mem/vpx_mem.h"
|
|
|
| +#ifdef __cplusplus
|
| +extern "C" {
|
| +#endif
|
| +
|
| /* Only need this for fixed-size arrays, for structs just assign. */
|
|
|
| #define vp8_copy( Dest, Src) { \
|
| @@ -37,4 +41,8 @@
|
| #define vp8_zero_array( Dest, N) vpx_memset( Dest, 0, N * sizeof( *Dest));
|
|
|
|
|
| +#ifdef __cplusplus
|
| +} // extern "C"
|
| +#endif
|
| +
|
| #endif // VP8_COMMON_COMMON_H_
|
|
|