| Index: source/libvpx/vp9/common/vp9_common.h
|
| ===================================================================
|
| --- source/libvpx/vp9/common/vp9_common.h (revision 247498)
|
| +++ source/libvpx/vp9/common/vp9_common.h (working copy)
|
| @@ -19,6 +19,10 @@
|
| #include "vpx_mem/vpx_mem.h"
|
| #include "vpx/vpx_integer.h"
|
|
|
| +#ifdef __cplusplus
|
| +extern "C" {
|
| +#endif
|
| +
|
| #define MIN(x, y) (((x) < (y)) ? (x) : (y))
|
| #define MAX(x, y) (((x) > (y)) ? (x) : (y))
|
|
|
| @@ -91,4 +95,8 @@
|
| #define VP9_FRAME_MARKER 0x2
|
|
|
|
|
| +#ifdef __cplusplus
|
| +} // extern "C"
|
| +#endif
|
| +
|
| #endif // VP9_COMMON_VP9_COMMON_H_
|
|
|