summaryrefslogtreecommitdiff
path: root/vp10/encoder/rd.c
diff options
context:
space:
mode:
authorDebargha Mukherjee <debargha@google.com>2016-01-08 12:01:51 -0800
committerDebargha Mukherjee <debargha@google.com>2016-01-08 13:48:24 -0800
commita0900fd0db5408da029fd3c71ec1f9d49ff98b3f (patch)
tree19fbb9294425bdccbec50c4de8195571906b41bd /vp10/encoder/rd.c
parent004b546ae1317b8ebef4bbc0f20f4ea4990bd3c1 (diff)
downloadlibvpx-a0900fd0db5408da029fd3c71ec1f9d49ff98b3f.tar
libvpx-a0900fd0db5408da029fd3c71ec1f9d49ff98b3f.tar.gz
libvpx-a0900fd0db5408da029fd3c71ec1f9d49ff98b3f.tar.bz2
libvpx-a0900fd0db5408da029fd3c71ec1f9d49ff98b3f.zip
Remove experimental flag for ext_tx
Also includes a bug fix. Change-Id: Ia49ed00f8ffd1531c10bcf89b1f497310ee7cb82
Diffstat (limited to 'vp10/encoder/rd.c')
-rw-r--r--vp10/encoder/rd.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/vp10/encoder/rd.c b/vp10/encoder/rd.c
index e24b89501..f4fdb2417 100644
--- a/vp10/encoder/rd.c
+++ b/vp10/encoder/rd.c
@@ -84,7 +84,6 @@ static void fill_mode_costs(VP10_COMP *cpi) {
vp10_cost_tokens(cpi->switchable_interp_costs[i],
fc->switchable_interp_prob[i], vp10_switchable_interp_tree);
-#if CONFIG_EXT_TX
for (i = TX_4X4; i < EXT_TX_SIZES; ++i) {
for (j = 0; j < TX_TYPES; ++j)
vp10_cost_tokens(cpi->intra_tx_type_costs[i][j],
@@ -96,7 +95,6 @@ static void fill_mode_costs(VP10_COMP *cpi) {
fc->inter_ext_tx_prob[i],
vp10_ext_tx_tree);
}
-#endif // CONFIG_EXT_TX
}
static void fill_token_costs(vp10_coeff_cost *c,