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

/external/libvpx/libvpx/vp8/encoder/
H A Dratectrl.c1113 double rate_correction_factor; local
1123 rate_correction_factor = cpi->key_frame_rate_correction_factor;
1130 rate_correction_factor = cpi->gf_rate_correction_factor;
1132 rate_correction_factor = cpi->rate_correction_factor;
1139 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));
1185 rate_correction_factor = ((rate_correction_factor * correction_factor) / 100);
1187 /* Keep rate_correction_factor within limits */
1188 if (rate_correction_factor > MAX_BPB_FACTO
[all...]
H A Donyx_int.h265 double rate_correction_factor; member in struct:__anon11049
370 double rate_correction_factor; member in struct:VP8_COMP
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_ratectrl.c457 double rate_correction_factor = get_rate_correction_factor(cpi); local
474 vp9_cyclic_refresh_estimate_bits_at_q(cpi, rate_correction_factor);
479 rate_correction_factor,
506 rate_correction_factor = (rate_correction_factor * correction_factor) / 100;
507 // Keep rate_correction_factor within limits
508 if (rate_correction_factor > MAX_BPB_FACTOR)
509 rate_correction_factor = MAX_BPB_FACTOR;
514 rate_correction_factor = (rate_correction_factor * correction_facto
2015 double rate_correction_factor = local
[all...]

Completed in 99 milliseconds