Allow 2x2 transform block forward model update
This commit allows the forward model update for 2x2 transform
block size.
Change-Id: Ie08c401e488b3872be0d92640468857f0aa0d0b3
diff --git a/av1/encoder/bitstream.c b/av1/encoder/bitstream.c
index 4799617..1e10e5e 100644
--- a/av1/encoder/bitstream.c
+++ b/av1/encoder/bitstream.c
@@ -2939,7 +2939,7 @@
}
#endif // CONFIG_ENTROPY
- for (tx_size = TX_4X4; tx_size <= max_tx_size; ++tx_size) {
+ for (tx_size = 0; tx_size <= max_tx_size; ++tx_size) {
av1_coeff_stats frame_branch_ct[PLANE_TYPES];
av1_coeff_probs_model frame_coef_probs[PLANE_TYPES];
if (cpi->td.counts->tx_size_totals[tx_size] <= 20 ||