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.c1105 double rate_correction_factor; in vp8_update_rate_correction_factors() local
1115 rate_correction_factor = cpi->key_frame_rate_correction_factor; in vp8_update_rate_correction_factors()
1122 rate_correction_factor = cpi->gf_rate_correction_factor; in vp8_update_rate_correction_factors()
1124 rate_correction_factor = cpi->rate_correction_factor; in vp8_update_rate_correction_factors()
1131 …projected_size_based_on_q = (int)(((.5 + rate_correction_factor * vp8_bits_per_mb[cpi->common.fram… in vp8_update_rate_correction_factors()
1177 rate_correction_factor = ((rate_correction_factor * correction_factor) / 100); in vp8_update_rate_correction_factors()
1180 if (rate_correction_factor > MAX_BPB_FACTOR) in vp8_update_rate_correction_factors()
1181 rate_correction_factor = MAX_BPB_FACTOR; in vp8_update_rate_correction_factors()
1187 rate_correction_factor = ((rate_correction_factor * correction_factor) / 100); in vp8_update_rate_correction_factors()
1190 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.c242 lc->rate_correction_factor = cpi->rate_correction_factor; in save_layer_context()
280 cpi->rate_correction_factor = lc->rate_correction_factor; in restore_layer_context()
354 lc->rate_correction_factor = 1.0; in init_temporal_layer_context()
1993 cpi->rate_correction_factor = 1.0; in vp8_create_compressor()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_ratectrl.c316 double rate_correction_factor = get_rate_correction_factor(cpi); in vp9_rc_update_rate_correction_factors() local
333 rate_correction_factor); in vp9_rc_update_rate_correction_factors()
358 rate_correction_factor = (rate_correction_factor * correction_factor) / 100; in vp9_rc_update_rate_correction_factors()
361 if (rate_correction_factor > MAX_BPB_FACTOR) in vp9_rc_update_rate_correction_factors()
362 rate_correction_factor = MAX_BPB_FACTOR; in vp9_rc_update_rate_correction_factors()
367 rate_correction_factor = (rate_correction_factor * correction_factor) / 100; in vp9_rc_update_rate_correction_factors()
370 if (rate_correction_factor < MIN_BPB_FACTOR) in vp9_rc_update_rate_correction_factors()
371 rate_correction_factor = MIN_BPB_FACTOR; in vp9_rc_update_rate_correction_factors()
374 set_rate_correction_factor(cpi, rate_correction_factor); in vp9_rc_update_rate_correction_factors()