From: Jingning Han Date: Mon, 18 Jul 2016 17:14:13 +0000 (-0700) Subject: Align the quantizers for inter/inter modes in the first pass coding X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2ad40b89b337060da90c836c6a1a2af7f6f1b6a3;p=libvpx 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 --- 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) {