From 2ad40b89b337060da90c836c6a1a2af7f6f1b6a3 Mon Sep 17 00:00:00 2001 From: Jingning Han Date: Mon, 18 Jul 2016 10:14:13 -0700 Subject: [PATCH] Align the quantizers for inter/inter modes in the first pass coding Use regular extended zero bin quantizer for both inter and intra modes in the first pass. This doesn't affect lowres and midres significantly, but would bring back 0.9% coding gains for hdres. Change-Id: Ifa5977fa7b141fc5be595c0f3a4fc81a93f6606f --- vp10/encoder/encodemb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vp10/encoder/encodemb.c b/vp10/encoder/encodemb.c index 34428a7ef..aceb10f1b 100644 --- a/vp10/encoder/encodemb.c +++ b/vp10/encoder/encodemb.c @@ -1111,7 +1111,7 @@ static void encode_block_pass1(int plane, int block, int blk_row, int blk_col, tx_size, ctx); #else vp10_xform_quant(x, plane, block, blk_row, blk_col, plane_bsize, - tx_size, VP10_XFORM_QUANT_FP); + tx_size, VP10_XFORM_QUANT_B); #endif // CONFIG_NEW_QUANT if (p->eobs[block] > 0) { -- 2.50.1