ref: be9af16e164c80d2417e4035265468295bfda00f
parent: df91ab7b0dd6878c088131f27cc279446208b852
author: Yaowu Xu <yaowu@google.com>
date: Thu Jan 19 11:56:46 EST 2012
reverted an accidental code deleting commit cf561bad accidentally deleted a line of code that sets the base_qindex for each frame, which leads to every frame is encoded at Q of 0. Change-Id: Ib5f8022e856bf3b3bd0d4147405e46241e3dcf2d
--- a/vp8/encoder/quantize.c
+++ b/vp8/encoder/quantize.c
@@ -1272,6 +1272,8 @@
{
VP8_COMMON *cm = &cpi->common;
+ cm->base_qindex = Q;
+
// if any of the delta_q values are changing update flag will
// have to be set.
cm->y1dc_delta_q = 0;
--
⑨