Remove the EC_SMALLMUL experimental flag.
This experiment has been fully adopted and is now an integral part
of the draft AV1 bitstream definition.
objdump -d libaom.a gives identical output before and after this
patch.
Change-Id: I6f936f4b10de23a9471e0ccadf9cf178fb62be69
diff --git a/aom_dsp/entcode.h b/aom_dsp/entcode.h
index 534959e..981a951 100644
--- a/aom_dsp/entcode.h
+++ b/aom_dsp/entcode.h
@@ -28,15 +28,11 @@
3 => 1/8th bits.*/
#define OD_BITRES (3)
-/*With CONFIG_EC_SMALLMUL, the value stored in a CDF is 32768 minus the actual
- Q15 cumulative probability (an "inverse" CDF).
+/*The value stored in an iCDF is 32768 minus the actual Q15 cumulative
+ probability (an "inverse" CDF).
This function converts from one representation to the other (and is its own
inverse).*/
-#if CONFIG_EC_SMALLMUL
#define OD_ICDF(x) (32768U - (x))
-#else
-#define OD_ICDF(x) (x)
-#endif
/*See entcode.c for further documentation.*/