fixes test linkage
Change-Id: I15a7b32551fddc5e78e3035e9d2e94a57ff9f1d2
#include "aom_dsp/aom_dsp_common.h"
#include "aom_ports/bitops.h"
+#ifdef __cplusplus
+extern "C" {
+#endif
+
/*Smallest blocks are 4x4*/
#define OD_LOG_BSIZE0 (2)
/*There are 5 block sizes total (4x4, 8x8, 16x16, 32x32 and 64x64).*/
We define a special version of the macro to use when x can be zero.*/
#define OD_ILOG(x) ((x) ? OD_ILOG_NZ(x) : 0)
+#ifdef __cplusplus
+} // extern "C"
#endif
+
+#endif // AV1_COMMON_ODINTRIN_H_