Home
last modified time | relevance | path

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

/external/libvpx/libvpx/vp8/encoder/
Dfirstpass.c1834 if ((cpi->twopass.kf_group_bits > 0) && in define_gf_group()
1837 (int)((double)cpi->twopass.kf_group_bits * in define_gf_group()
1968 cpi->twopass.kf_group_bits = in define_gf_group()
1973 if ((cpi->twopass.kf_group_bits > 0) && in define_gf_group()
1976 (int64_t)(cpi->twopass.kf_group_bits * in define_gf_group()
1985 : (cpi->twopass.gf_group_bits > cpi->twopass.kf_group_bits) in define_gf_group()
1986 ? cpi->twopass.kf_group_bits in define_gf_group()
2067 (double)cpi->twopass.kf_group_bits * in define_gf_group()
2084 (int)((double)cpi->twopass.kf_group_bits * mod_frame_err / in define_gf_group()
2118 cpi->twopass.kf_group_bits -= cpi->twopass.gf_group_bits; in define_gf_group()
[all …]
Donyx_int.h584 int64_t kf_group_bits; member
Donyx_if.c4597 cpi->twopass.kf_group_bits += in encode_frame_to_data_rate()
4600 if (cpi->twopass.kf_group_bits < 0) cpi->twopass.kf_group_bits = 0; in encode_frame_to_data_rate()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_firstpass.c2081 if ((twopass->kf_group_bits > 0) && (twopass->kf_group_error_left > 0.0)) { in calculate_total_gf_group_bits()
2082 total_group_bits = (int64_t)(twopass->kf_group_bits * in calculate_total_gf_group_bits()
2091 : (total_group_bits > twopass->kf_group_bits) in calculate_total_gf_group_bits()
2092 ? twopass->kf_group_bits in calculate_total_gf_group_bits()
2793 twopass->kf_group_bits = 0; // Total bits available to kf group in find_next_key_frame()
2906 twopass->kf_group_bits = (int64_t)( in find_next_key_frame()
2911 if (twopass->kf_group_bits > max_grp_bits) in find_next_key_frame()
2912 twopass->kf_group_bits = max_grp_bits; in find_next_key_frame()
2914 twopass->kf_group_bits = 0; in find_next_key_frame()
2916 twopass->kf_group_bits = VPXMAX(0, twopass->kf_group_bits); in find_next_key_frame()
[all …]
Dvp9_firstpass.h158 int64_t kf_group_bits; member