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.c1835 if ((cpi->twopass.kf_group_bits > 0) && in define_gf_group()
1838 (int)((double)cpi->twopass.kf_group_bits * in define_gf_group()
1969 cpi->twopass.kf_group_bits = in define_gf_group()
1974 if ((cpi->twopass.kf_group_bits > 0) && in define_gf_group()
1977 (int64_t)(cpi->twopass.kf_group_bits * in define_gf_group()
1986 : (cpi->twopass.gf_group_bits > cpi->twopass.kf_group_bits) in define_gf_group()
1987 ? cpi->twopass.kf_group_bits in define_gf_group()
2068 (double)cpi->twopass.kf_group_bits * in define_gf_group()
2085 (int)((double)cpi->twopass.kf_group_bits * mod_frame_err / in define_gf_group()
2119 cpi->twopass.kf_group_bits -= cpi->twopass.gf_group_bits; in define_gf_group()
[all …]
Donyx_int.h589 int64_t kf_group_bits; member
Donyx_if.c4610 cpi->twopass.kf_group_bits += in encode_frame_to_data_rate()
4613 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.c2114 if ((twopass->kf_group_bits > 0) && (twopass->kf_group_error_left > 0.0)) { in calculate_total_gf_group_bits()
2115 total_group_bits = (int64_t)(twopass->kf_group_bits * in calculate_total_gf_group_bits()
2124 : (total_group_bits > twopass->kf_group_bits) in calculate_total_gf_group_bits()
2125 ? twopass->kf_group_bits in calculate_total_gf_group_bits()
2866 twopass->kf_group_bits = 0; // Total bits available to kf group in find_next_key_frame()
2982 twopass->kf_group_bits = (int64_t)( in find_next_key_frame()
2987 if (twopass->kf_group_bits > max_grp_bits) in find_next_key_frame()
2988 twopass->kf_group_bits = max_grp_bits; in find_next_key_frame()
2990 twopass->kf_group_bits = 0; in find_next_key_frame()
2992 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