Change only affects 1 pass cbr, with error_resilient off.
Change-Id: Ibf254d8772fa2a8f188c9932d37b2f42362d8003
// If gf_cbr_boost_pct is small (below threshold) set the flag
// gf_noboost_onepass_cbr = 1, which forces the gf to use the same
// rate correction factor as last.
- cpi->gf_noboost_onepass_cbr = (cpi->oxcf.gf_cbr_boost_pct <= 50);
+ cpi->gf_noboost_onepass_cbr = (cpi->oxcf.gf_cbr_boost_pct <= 100);
cpi->this_frame_target =
(cpi->this_frame_target * (100 + cpi->oxcf.gf_cbr_boost_pct)) / 100;
cpi->baseline_gf_interval = cpi->gf_interval_onepass_cbr;