Home
last modified time | relevance | path

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

/external/libvpx/libvpx/vp8/encoder/
Dratectrl.c1030 double rate_correction_factor; in vp8_update_rate_correction_factors() local
1039 rate_correction_factor = cpi->key_frame_rate_correction_factor; in vp8_update_rate_correction_factors()
1044 rate_correction_factor = cpi->gf_rate_correction_factor; in vp8_update_rate_correction_factors()
1046 rate_correction_factor = cpi->rate_correction_factor; in vp8_update_rate_correction_factors()
1055 (int)(((.5 + rate_correction_factor * in vp8_update_rate_correction_factors()
1095 rate_correction_factor = in vp8_update_rate_correction_factors()
1096 ((rate_correction_factor * correction_factor) / 100); in vp8_update_rate_correction_factors()
1099 if (rate_correction_factor > MAX_BPB_FACTOR) { in vp8_update_rate_correction_factors()
1100 rate_correction_factor = MAX_BPB_FACTOR; in vp8_update_rate_correction_factors()
1106 rate_correction_factor = in vp8_update_rate_correction_factors()
[all …]
Donyx_int.h241 double rate_correction_factor; member
346 double rate_correction_factor; member
Donyx_if.c211 lc->rate_correction_factor = cpi->rate_correction_factor; in save_layer_context()
248 cpi->rate_correction_factor = lc->rate_correction_factor; in restore_layer_context()
319 lc->rate_correction_factor = 1.0; in init_temporal_layer_context()
1943 cpi->rate_correction_factor = 1.0; in vp8_create_compressor()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_ratectrl.c722 double rate_correction_factor = get_rate_correction_factor(cpi); in vp9_rc_update_rate_correction_factors() local
740 vp9_cyclic_refresh_estimate_bits_at_q(cpi, rate_correction_factor); in vp9_rc_update_rate_correction_factors()
745 rate_correction_factor, cm->bit_depth); in vp9_rc_update_rate_correction_factors()
783 rate_correction_factor = (rate_correction_factor * correction_factor) / 100; in vp9_rc_update_rate_correction_factors()
785 if (rate_correction_factor > MAX_BPB_FACTOR) in vp9_rc_update_rate_correction_factors()
786 rate_correction_factor = MAX_BPB_FACTOR; in vp9_rc_update_rate_correction_factors()
791 rate_correction_factor = (rate_correction_factor * correction_factor) / 100; in vp9_rc_update_rate_correction_factors()
794 if (rate_correction_factor < MIN_BPB_FACTOR) in vp9_rc_update_rate_correction_factors()
795 rate_correction_factor = MIN_BPB_FACTOR; in vp9_rc_update_rate_correction_factors()
798 set_rate_correction_factor(cpi, rate_correction_factor); in vp9_rc_update_rate_correction_factors()
[all …]
/external/libaom/libaom/av1/encoder/
Dratectrl.c418 double rate_correction_factor = in av1_rc_update_rate_correction_factors() local
436 av1_cyclic_refresh_estimate_bits_at_q(cpi, rate_correction_factor); in av1_rc_update_rate_correction_factors()
440 rate_correction_factor, cm->seq_params.bit_depth); in av1_rc_update_rate_correction_factors()
470 rate_correction_factor = (rate_correction_factor * correction_factor) / 100; in av1_rc_update_rate_correction_factors()
472 if (rate_correction_factor > MAX_BPB_FACTOR) in av1_rc_update_rate_correction_factors()
473 rate_correction_factor = MAX_BPB_FACTOR; in av1_rc_update_rate_correction_factors()
478 rate_correction_factor = (rate_correction_factor * correction_factor) / 100; in av1_rc_update_rate_correction_factors()
481 if (rate_correction_factor < MIN_BPB_FACTOR) in av1_rc_update_rate_correction_factors()
482 rate_correction_factor = MIN_BPB_FACTOR; in av1_rc_update_rate_correction_factors()
485 set_rate_correction_factor(cpi, rate_correction_factor, width, height); in av1_rc_update_rate_correction_factors()