summaryrefslogtreecommitdiff
path: root/vp8/encoder/onyx_if.c
diff options
context:
space:
mode:
authorJohann <johannkoenig@google.com>2014-11-04 16:29:19 -0800
committerGerrit Code Review <gerrit@gerrit.golo.chromium.org>2014-11-04 16:29:19 -0800
commitc4b36253934cdc626997d4769245c618a947a9ad (patch)
treee74d4b13f7e83eaa166f0cdb2f823898ff008628 /vp8/encoder/onyx_if.c
parent412eaaf090dd272c7b9a39f71ef2a8763317ff4d (diff)
parent2134eb2f054baaec9a796784aeeafb0b669ff601 (diff)
downloadlibvpx-c4b36253934cdc626997d4769245c618a947a9ad.tar
libvpx-c4b36253934cdc626997d4769245c618a947a9ad.tar.gz
libvpx-c4b36253934cdc626997d4769245c618a947a9ad.tar.bz2
libvpx-c4b36253934cdc626997d4769245c618a947a9ad.zip
Merge "Remove pair quantization"
Diffstat (limited to 'vp8/encoder/onyx_if.c')
-rw-r--r--vp8/encoder/onyx_if.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/vp8/encoder/onyx_if.c b/vp8/encoder/onyx_if.c
index 02b6425b9..3cceb5a80 100644
--- a/vp8/encoder/onyx_if.c
+++ b/vp8/encoder/onyx_if.c
@@ -1083,12 +1083,10 @@ void vp8_set_speed_features(VP8_COMP *cpi)
if (cpi->sf.improved_quant)
{
cpi->mb.quantize_b = vp8_regular_quantize_b;
- cpi->mb.quantize_b_pair = vp8_regular_quantize_b_pair;
}
else
{
cpi->mb.quantize_b = vp8_fast_quantize_b;
- cpi->mb.quantize_b_pair = vp8_fast_quantize_b_pair;
}
if (cpi->sf.improved_quant != last_improved_quant)
vp8cx_init_quantizer(cpi);