Searched defs:rate_correction_factor (Results 1 - 3 of 3) sorted by relevance

/external/libvpx/libvpx/vp8/encoder/
H A Dratectrl.c1111 double rate_correction_factor; local
1121 rate_correction_factor = cpi->key_frame_rate_correction_factor;
1128 rate_correction_factor = cpi->gf_rate_correction_factor;
1130 rate_correction_factor = cpi->rate_correction_factor;
1137 projected_size_based_on_q = (int)(((.5 + rate_correction_factor * vp8_bits_per_mb[cpi->common.frame_type][Q]) * cpi->common.MBs) / (1 << BPER_MB_NORMBITS));
1183 rate_correction_factor = ((rate_correction_factor * correction_factor) / 100);
1185 /* Keep rate_correction_factor within limits */
1186 if (rate_correction_factor > MAX_BPB_FACTO
[all...]
H A Donyx_int.h265 double rate_correction_factor; member in struct:__anon9513
370 double rate_correction_factor; member in struct:VP8_COMP
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_ratectrl.c448 double rate_correction_factor = get_rate_correction_factor(cpi); local
465 vp9_cyclic_refresh_estimate_bits_at_q(cpi, rate_correction_factor);
470 rate_correction_factor,
497 rate_correction_factor = (rate_correction_factor * correction_factor) / 100;
498 // Keep rate_correction_factor within limits
499 if (rate_correction_factor > MAX_BPB_FACTOR)
500 rate_correction_factor = MAX_BPB_FACTOR;
505 rate_correction_factor = (rate_correction_factor * correction_facto
[all...]

Completed in 74 milliseconds