summaryrefslogtreecommitdiff
path: root/vp9/encoder/vp9_onyx_int.h
diff options
context:
space:
mode:
authorDmitry Kovalev <dkovalev@google.com>2013-10-30 14:40:34 -0700
committerDmitry Kovalev <dkovalev@google.com>2013-10-30 14:40:34 -0700
commit6761872e49d59e62472015ee42bf02703a195c81 (patch)
tree726d24f93330b368120f7607ca481dd1853c86f0 /vp9/encoder/vp9_onyx_int.h
parent54c2854fe2252fa1a6a791fb69a54be160b5a150 (diff)
downloadlibvpx-6761872e49d59e62472015ee42bf02703a195c81.tar
libvpx-6761872e49d59e62472015ee42bf02703a195c81.tar.gz
libvpx-6761872e49d59e62472015ee42bf02703a195c81.tar.bz2
libvpx-6761872e49d59e62472015ee42bf02703a195c81.zip
Replacing (SWITCHABLE_FILTERS + 1) with SWITCHABLE_FILTER_CONTEXTS.
Change-Id: I9781a62bc1a4cd9176554d1271d87dbcafda9cb0
Diffstat (limited to 'vp9/encoder/vp9_onyx_int.h')
-rw-r--r--vp9/encoder/vp9_onyx_int.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/vp9/encoder/vp9_onyx_int.h b/vp9/encoder/vp9_onyx_int.h
index 20831bedf..0498043fc 100644
--- a/vp9/encoder/vp9_onyx_int.h
+++ b/vp9/encoder/vp9_onyx_int.h
@@ -396,9 +396,9 @@ typedef struct VP9_COMP {
// FIXME(rbultje) can this overflow?
int rd_tx_select_threshes[4][TX_MODES];
- int64_t rd_filter_diff[SWITCHABLE_FILTERS + 1];
- int64_t rd_filter_threshes[4][SWITCHABLE_FILTERS + 1];
- int64_t rd_filter_cache[SWITCHABLE_FILTERS + 1];
+ int64_t rd_filter_diff[SWITCHABLE_FILTER_CONTEXTS];
+ int64_t rd_filter_threshes[4][SWITCHABLE_FILTER_CONTEXTS];
+ int64_t rd_filter_cache[SWITCHABLE_FILTER_CONTEXTS];
int RDMULT;
int RDDIV;
@@ -641,7 +641,7 @@ typedef struct VP9_COMP {
int dummy_packing; /* flag to indicate if packing is dummy */
- unsigned int switchable_interp_count[SWITCHABLE_FILTERS + 1]
+ unsigned int switchable_interp_count[SWITCHABLE_FILTER_CONTEXTS]
[SWITCHABLE_FILTERS];
unsigned int tx_stepdown_count[TX_SIZES];