odintrin.h: delete more unused macro definitions
Change-Id: Iae26d9fb979020f0d2eeb792be74fda763c7c820
diff --git a/av1/common/odintrin.h b/av1/common/odintrin.h
index 99ff85d..a555265 100644
--- a/av1/common/odintrin.h
+++ b/av1/common/odintrin.h
@@ -50,33 +50,6 @@
# define M_LN2 (0.69314718055994530941723212145818)
# endif
-/*Smallest blocks are 4x4*/
-#define OD_LOG_BSIZE0 (2)
-/*There are 5 block sizes total (4x4, 8x8, 16x16, 32x32 and 64x64).*/
-#define OD_NBSIZES (5)
-
-/*There are 4 transform sizes total in AV1 (4x4, 8x8, 16x16 and 32x32).*/
-#define OD_TXSIZES TX_SIZES
-/*The log of the maximum length of the side of a transform.*/
-#define OD_LOG_TXSIZE_MAX (OD_LOG_BSIZE0 + OD_TXSIZES - 1)
-/*The maximum length of the side of a transform.*/
-#define OD_TXSIZE_MAX (1 << OD_LOG_TXSIZE_MAX)
-
-/**The maximum number of color planes allowed in a single frame.*/
-# define OD_NPLANES_MAX (3)
-
-/* Native coefficient 'bitdepth'; TX is scaled up by (TX_COEFF_DEPTH-bitdepth)
- such that the real coefficient depth precision is always TX_CEOFF_DEPTH
- regardless of bitdepth or transform size.
-*/
-# define TX_COEFF_DEPTH (12)
-
-# define OD_DISABLE_CFL (1)
-# define OD_DISABLE_FILTER (1)
-
-# define OD_LOG(a)
-# define OD_LOG_PARTIAL(a)
-
typedef int od_coeff;
#define OD_DIVU_DMAX (1024)
@@ -100,11 +73,6 @@
#define OD_CLZ0 (1)
#define OD_CLZ(x) (-get_msb(x))
#define OD_ILOG_NZ(x) (OD_CLZ0 - OD_CLZ(x))
-/*Note that __builtin_clz is not defined when x == 0, according to the gcc
- documentation (and that of the x86 BSR instruction that implements it), so
- we have to special-case it.
- 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)
#define OD_LOG2(x) (M_LOG2E*log(x))
#define OD_EXP2(x) (exp(M_LN2*(x)))