ref: 80e5550723c60111ed77b00cf9b387846392cdef
parent: 2ba201fcdb93656867d084d06d6522c820263a5e
parent: d67b608c5dd69ff8edf3c7068c59a2521898bcdf
author: Jingning Han <[email protected]>
date: Thu Aug 14 14:50:16 EDT 2014
Merge "Remove redundant vp9_init_plane_quantizers call"
--- a/vp9/encoder/vp9_encodeframe.c
+++ b/vp9/encoder/vp9_encodeframe.c
@@ -539,10 +539,9 @@
}
// Else for cyclic refresh mode update the segment map, set the segment id
// and then update the quantizer.
- else if (cpi->oxcf.aq_mode == CYCLIC_REFRESH_AQ) {
+ if (cpi->oxcf.aq_mode == CYCLIC_REFRESH_AQ) {
vp9_cyclic_refresh_update_segment(cpi, &xd->mi[0]->mbmi,
mi_row, mi_col, bsize, 1);
- vp9_init_plane_quantizers(cpi, x);
}
}