Fix bustage caused by 8089315a6c2b with daala_tx.
The inverse transform API was changed to pass in an unpadded 32x32
block of coefficients for transforms larger than 32x32, but the
code path actually used for daala_tx was not modified to pad it out
to the full size like the others were.
Change-Id: Ibda5d20a9d839ba41f8a1a0308c414111219da92
diff --git a/av1/common/blockd.h b/av1/common/blockd.h
index eb5dbb8..3645f61 100644
--- a/av1/common/blockd.h
+++ b/av1/common/blockd.h
@@ -1430,7 +1430,7 @@
}
static INLINE int av1_get_max_eob(TX_SIZE tx_size) {
-#if CONFIG_TX64X64 && !CONFIG_DAALA_TX
+#if CONFIG_TX64X64
if (tx_size == TX_64X64 || tx_size == TX_64X32 || tx_size == TX_32X64) {
return 1024;
}