Searched refs:kf_bits (Results 1 - 7 of 7) sorted by relevance

/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_firstpass.h61 int kf_bits; member in struct:twopass_rc
H A Dvp9_firstpass.c2145 twopass->kf_bits = (int)((double)kf_boost *
2160 if (twopass->kf_bits > alt_kf_bits)
2161 twopass->kf_bits = alt_kf_bits;
2169 if (alt_kf_bits > twopass->kf_bits)
2170 twopass->kf_bits = alt_kf_bits;
2172 twopass->kf_group_bits -= twopass->kf_bits;
2174 vp9_rc_set_frame_target(cpi, twopass->kf_bits);
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Dfirstpass.c3135 cpi->twopass.kf_bits = (int)((double)kf_boost * ((double)cpi->twopass.kf_group_bits / (double)allocation_chunks));
3140 if (cpi->twopass.kf_bits > (int)((3 * cpi->buffer_level) >> 2))
3141 cpi->twopass.kf_bits = (int)((3 * cpi->buffer_level) >> 2);
3159 if (cpi->twopass.kf_bits > alt_kf_bits)
3161 cpi->twopass.kf_bits = alt_kf_bits;
3175 if (alt_kf_bits > cpi->twopass.kf_bits)
3177 cpi->twopass.kf_bits = alt_kf_bits;
3181 cpi->twopass.kf_group_bits -= cpi->twopass.kf_bits;
3183 cpi->twopass.kf_bits += cpi->min_frame_bandwidth;
3186 cpi->per_frame_bandwidth = cpi->twopass.kf_bits;
[all...]
H A Donyx_int.h590 int kf_bits; member in struct:VP8_COMP::twopass_rc
/external/libvpx/libvpx/vp8/encoder/
H A Dfirstpass.c3135 cpi->twopass.kf_bits = (int)((double)kf_boost * ((double)cpi->twopass.kf_group_bits / (double)allocation_chunks));
3140 if (cpi->twopass.kf_bits > (int)((3 * cpi->buffer_level) >> 2))
3141 cpi->twopass.kf_bits = (int)((3 * cpi->buffer_level) >> 2);
3159 if (cpi->twopass.kf_bits > alt_kf_bits)
3161 cpi->twopass.kf_bits = alt_kf_bits;
3175 if (alt_kf_bits > cpi->twopass.kf_bits)
3177 cpi->twopass.kf_bits = alt_kf_bits;
3181 cpi->twopass.kf_group_bits -= cpi->twopass.kf_bits;
3183 cpi->twopass.kf_bits += cpi->min_frame_bandwidth;
3186 cpi->per_frame_bandwidth = cpi->twopass.kf_bits;
[all...]
H A Donyx_int.h591 int kf_bits; member in struct:VP8_COMP::twopass_rc
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_firstpass.c1879 int kf_bits = 0; local
2085 kf_bits = calculate_boost_bits((rc->frames_to_key - 1),
2088 twopass->kf_group_bits -= kf_bits;
2091 gf_group->bit_allocation[0] = kf_bits;

Completed in 325 milliseconds