From: Paul Wilkins Date: Wed, 9 Jun 2010 14:03:48 +0000 (+0100) Subject: Adjust to avoid long line X-Git-Tag: 1.0_branch~1039^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a04ed23ff56f536c3da206563f64dea19e5a7e82;p=profile%2Fivi%2Flibvpx.git Adjust to avoid long line --- diff --git a/vp8/encoder/firstpass.c b/vp8/encoder/firstpass.c index 26f09d5..f0ddbf2 100644 --- a/vp8/encoder/firstpass.c +++ b/vp8/encoder/firstpass.c @@ -1869,12 +1869,16 @@ void vp8_second_pass(VP8_COMP *cpi) } } - // Keep a globally available copy of this frames iiratio and the next. - cpi->this_iiratio = this_frame_intra_error / DOUBLE_DIVIDE_CHECK(this_frame_coded_error); + // 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); { FIRSTPASS_STATS next_frame; 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