Change COEFF_CONTEXT_BITS from 6 to 3

3 bits are enough for the transform coefficient entropy contexts because
they are saturated above 4. Reducing the number of bits help improve
encoding speed. Tests show about 1% instruction counts reduction.

Change-Id: Idcc0b6858dc83409f8da688704802b7b1a832d2e
diff --git a/av1/common/entropy.h b/av1/common/entropy.h
index 41218d3..ee78f56 100644
--- a/av1/common/entropy.h
+++ b/av1/common/entropy.h
@@ -48,7 +48,7 @@
 #define BR_CDF_SIZE (4)
 #define COEFF_BASE_RANGE (4 * (BR_CDF_SIZE - 1))
 
-#define COEFF_CONTEXT_BITS 6
+#define COEFF_CONTEXT_BITS 3
 #define COEFF_CONTEXT_MASK ((1 << COEFF_CONTEXT_BITS) - 1)
 #define MAX_BASE_BR_RANGE (COEFF_BASE_RANGE + NUM_BASE_LEVELS + 1)