Commit 18072d29 authored by Paul Wilkins's avatar Paul Wilkins Committed by Gerrit Code Review
Browse files

Merge "Fix rate control bug."

parents 0d8e4f91 658daf36
No related merge requests found
Showing with 4 additions and 0 deletions
...@@ -308,6 +308,10 @@ void vp9_rc_update_rate_correction_factors(VP9_COMP *cpi, int damp_var) { ...@@ -308,6 +308,10 @@ void vp9_rc_update_rate_correction_factors(VP9_COMP *cpi, int damp_var) {
int projected_size_based_on_q = 0; int projected_size_based_on_q = 0;
// Do not update the rate factors for arf overlay frames.
if (cpi->rc.is_src_frame_alt_ref)
return;
// Clear down mmx registers to allow floating point in what follows // Clear down mmx registers to allow floating point in what follows
vp9_clear_system_state(); vp9_clear_system_state();
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment