summaryrefslogtreecommitdiff
path: root/vp8/encoder/onyx_int.h
diff options
context:
space:
mode:
authorRonald S. Bultje <rbultje@google.com>2012-10-10 17:18:22 -0700
committerRonald S. Bultje <rbultje@google.com>2012-10-11 09:26:00 -0700
commitf39b0f192fed13cc788f76877dd2a6495cfe8dd4 (patch)
tree9a548c6d0f23ef74553130669fda64b515d4fca1 /vp8/encoder/onyx_int.h
parenta7333b0a5b9f9d435bba7b1dce72632ae70c0330 (diff)
downloadlibvpx-f39b0f192fed13cc788f76877dd2a6495cfe8dd4.tar
libvpx-f39b0f192fed13cc788f76877dd2a6495cfe8dd4.tar.gz
libvpx-f39b0f192fed13cc788f76877dd2a6495cfe8dd4.tar.bz2
libvpx-f39b0f192fed13cc788f76877dd2a6495cfe8dd4.zip
Use transform-size selection for i8x8_pred also.
Change-Id: Iecb282fc89f9b5145ef31c5eda294ad42bc32a5d
Diffstat (limited to 'vp8/encoder/onyx_int.h')
-rw-r--r--vp8/encoder/onyx_int.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/vp8/encoder/onyx_int.h b/vp8/encoder/onyx_int.h
index fe029217b..696da14ed 100644
--- a/vp8/encoder/onyx_int.h
+++ b/vp8/encoder/onyx_int.h
@@ -470,7 +470,8 @@ typedef struct VP8_COMP {
int single_pred_count[COMP_PRED_CONTEXTS];
#if CONFIG_TX_SELECT
// FIXME contextualize
- int txfm_count[TX_SIZE_MAX + 1];
+ int txfm_count[TX_SIZE_MAX];
+ int txfm_count_8x8p[TX_SIZE_MAX - 1];
int64_t rd_tx_select_diff[NB_TXFM_MODES];
int rd_tx_select_threshes[4][NB_TXFM_MODES];
#endif