Home
last modified time | relevance | path

Searched refs:vbr_bits_off_target_fast (Results 1 – 7 of 7) sorted by relevance

/external/libaom/libaom/av1/encoder/
Dratectrl.h109 int64_t vbr_bits_off_target_fast; member
Dpass2_strategy.c1687 cpi->rc.vbr_bits_off_target_fast = 0; in av1_init_second_pass()
1767 rc->vbr_bits_off_target_fast += in av1_twopass_postencode_update()
1769 rc->vbr_bits_off_target_fast = in av1_twopass_postencode_update()
1770 AOMMIN(rc->vbr_bits_off_target_fast, (4 * rc->avg_frame_bandwidth)); in av1_twopass_postencode_update()
1775 (int)(rc->vbr_bits_off_target_fast * 8 / rc->avg_frame_bandwidth); in av1_twopass_postencode_update()
1779 } else if (rc->vbr_bits_off_target_fast) { in av1_twopass_postencode_update()
Dratectrl.c1858 rc->vbr_bits_off_target_fast) { in vbr_rate_correction()
1861 fast_extra_bits = (int)AOMMIN(rc->vbr_bits_off_target_fast, one_frame_bits); in vbr_rate_correction()
1864 AOMMAX(one_frame_bits / 8, rc->vbr_bits_off_target_fast / 8)); in vbr_rate_correction()
1866 rc->vbr_bits_off_target_fast -= fast_extra_bits; in vbr_rate_correction()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_ratectrl.h131 int64_t vbr_bits_off_target_fast; member
Dvp9_firstpass.c1722 rc->vbr_bits_off_target_fast = 0; in vp9_init_second_pass()
3349 rc->vbr_bits_off_target_fast += in vp9_twopass_postencode_update()
3351 rc->vbr_bits_off_target_fast = in vp9_twopass_postencode_update()
3352 VPXMIN(rc->vbr_bits_off_target_fast, (4 * rc->avg_frame_bandwidth)); in vp9_twopass_postencode_update()
3357 (int)(rc->vbr_bits_off_target_fast * 8 / rc->avg_frame_bandwidth); in vp9_twopass_postencode_update()
3361 } else if (rc->vbr_bits_off_target_fast) { in vp9_twopass_postencode_update()
Dvp9_ratectrl.c2467 rc->vbr_bits_off_target_fast) { in vbr_rate_correction()
2470 fast_extra_bits = (int)VPXMIN(rc->vbr_bits_off_target_fast, one_frame_bits); in vbr_rate_correction()
2473 VPXMAX(one_frame_bits / 8, rc->vbr_bits_off_target_fast / 8)); in vbr_rate_correction()
2475 rc->vbr_bits_off_target_fast -= fast_extra_bits; in vbr_rate_correction()
Dvp9_encoder.c3382 cpi->rc.vbr_bits_off_target_fast,