Merge "Fix resetting of cyclic refresh on dynamic resize change."
This commit is contained in:
commit
cff15f9d3c
@ -571,6 +571,10 @@ void vp9_cyclic_refresh_setup(VP9_COMP *const cpi) {
|
||||
cr->qindex_delta[2] = qindex_delta;
|
||||
vp9_set_segdata(seg, CR_SEGMENT_ID_BOOST2, SEG_LVL_ALT_Q, qindex_delta);
|
||||
|
||||
// Reset if resoluton change has occurred.
|
||||
if (cpi->resize_pending != 0)
|
||||
vp9_cyclic_refresh_reset_resize(cpi);
|
||||
|
||||
// Update the segmentation and refresh map.
|
||||
cyclic_refresh_update_map(cpi);
|
||||
}
|
||||
|
@ -1905,9 +1905,6 @@ int vp9_resize_one_pass_cbr(VP9_COMP *cpi) {
|
||||
rc->buffer_level = rc->optimal_buffer_level;
|
||||
rc->bits_off_target = rc->optimal_buffer_level;
|
||||
rc->this_frame_target = calc_pframe_target_size_one_pass_cbr(cpi);
|
||||
// Reset cyclic refresh parameters.
|
||||
if (cpi->oxcf.aq_mode == CYCLIC_REFRESH_AQ && cm->seg.enabled)
|
||||
vp9_cyclic_refresh_reset_resize(cpi);
|
||||
// Get the projected qindex, based on the scaled target frame size (scaled
|
||||
// so target_bits_per_mb in vp9_rc_regulate_q will be correct target).
|
||||
target_bits_per_frame = (resize_action >= 0) ?
|
||||
|
Loading…
x
Reference in New Issue
Block a user