Adjust q range

Skip Q values between the q.0 mode and a real q of
2.0 as these are not valuable from an RD perspective.

Change-Id: I110c4858c57f97315953f4d88a2596d4764360df
This commit is contained in:
Paul Wilkins
2013-04-04 17:40:39 +01:00
committed by Gerrit Code Review
parent 67266cb213
commit 9afb6700c2
3 changed files with 17 additions and 7 deletions

View File

@@ -263,10 +263,6 @@ void vp9_set_quantizer(struct VP9_COMP *cpi, int Q) {
cm->base_qindex = Q;
// Set lossless mode
if (cm->base_qindex <= 4)
cm->base_qindex = 0;
// if any of the delta_q values are changing update flag will
// have to be set.
cm->y_dc_delta_q = 0;