Commit 10ae99c6 authored by Paul Wilkins's avatar Paul Wilkins Committed by Code Review
Browse files

Merge "Adjust to avoid long line"

Showing with 7 additions and 3 deletions
...@@ -1869,12 +1869,16 @@ void vp8_second_pass(VP8_COMP *cpi) ...@@ -1869,12 +1869,16 @@ void vp8_second_pass(VP8_COMP *cpi)
} }
} }
// Keep a globally available copy of this frames iiratio and the next. // Keep a globally available copy of this and the next frame's iiratio.
cpi->this_iiratio = this_frame_intra_error / DOUBLE_DIVIDE_CHECK(this_frame_coded_error); cpi->this_iiratio = this_frame_intra_error /
DOUBLE_DIVIDE_CHECK(this_frame_coded_error);
{ {
FIRSTPASS_STATS next_frame; FIRSTPASS_STATS next_frame;
if ( lookup_next_frame_stats(cpi, &next_frame) != EOF ) if ( lookup_next_frame_stats(cpi, &next_frame) != EOF )
cpi->next_iiratio = next_frame.intra_error / DOUBLE_DIVIDE_CHECK(next_frame.coded_error); {
cpi->next_iiratio = next_frame.intra_error /
DOUBLE_DIVIDE_CHECK(next_frame.coded_error);
}
} }
// Set nominal per second bandwidth for this frame // Set nominal per second bandwidth for this frame
......
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