Home
last modified time | relevance | path

Searched refs:rate_correction_factor (Results 1 – 4 of 4) sorted by relevance

/external/libvpx/libvpx/vp8/encoder/
Dratectrl.c1113 double rate_correction_factor; in vp8_update_rate_correction_factors() local
1123 rate_correction_factor = cpi->key_frame_rate_correction_factor; in vp8_update_rate_correction_factors()
1130 rate_correction_factor = cpi->gf_rate_correction_factor; in vp8_update_rate_correction_factors()
1132 rate_correction_factor = cpi->rate_correction_factor; in vp8_update_rate_correction_factors()
1139 …projected_size_based_on_q = (int)(((.5 + rate_correction_factor * vp8_bits_per_mb[cpi->common.fram… in vp8_update_rate_correction_factors()
1185 rate_correction_factor = ((rate_correction_factor * correction_factor) / 100); in vp8_update_rate_correction_factors()
1188 if (rate_correction_factor > MAX_BPB_FACTOR) in vp8_update_rate_correction_factors()
1189 rate_correction_factor = MAX_BPB_FACTOR; in vp8_update_rate_correction_factors()
1195 rate_correction_factor = ((rate_correction_factor * correction_factor) / 100); in vp8_update_rate_correction_factors()
1198 if (rate_correction_factor < MIN_BPB_FACTOR) in vp8_update_rate_correction_factors()
[all …]
Donyx_int.h265 double rate_correction_factor; member
370 double rate_correction_factor; member
Donyx_if.c226 lc->rate_correction_factor = cpi->rate_correction_factor; in save_layer_context()
264 cpi->rate_correction_factor = lc->rate_correction_factor; in restore_layer_context()
338 lc->rate_correction_factor = 1.0; in init_temporal_layer_context()
2020 cpi->rate_correction_factor = 1.0; in vp8_create_compressor()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_ratectrl.c457 double rate_correction_factor = get_rate_correction_factor(cpi); in vp9_rc_update_rate_correction_factors() local
474 vp9_cyclic_refresh_estimate_bits_at_q(cpi, rate_correction_factor); in vp9_rc_update_rate_correction_factors()
479 rate_correction_factor, in vp9_rc_update_rate_correction_factors()
506 rate_correction_factor = (rate_correction_factor * correction_factor) / 100; in vp9_rc_update_rate_correction_factors()
508 if (rate_correction_factor > MAX_BPB_FACTOR) in vp9_rc_update_rate_correction_factors()
509 rate_correction_factor = MAX_BPB_FACTOR; in vp9_rc_update_rate_correction_factors()
514 rate_correction_factor = (rate_correction_factor * correction_factor) / 100; in vp9_rc_update_rate_correction_factors()
517 if (rate_correction_factor < MIN_BPB_FACTOR) in vp9_rc_update_rate_correction_factors()
518 rate_correction_factor = MIN_BPB_FACTOR; in vp9_rc_update_rate_correction_factors()
521 set_rate_correction_factor(cpi, rate_correction_factor); in vp9_rc_update_rate_correction_factors()
[all …]