Searched defs:alt_kf_bits (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Dfirstpass.c3067 int alt_kf_bits; local
3156 alt_kf_bits = (int)((double)kf_boost *
3159 if (cpi->twopass.kf_bits > alt_kf_bits)
3161 cpi->twopass.kf_bits = alt_kf_bits;
3170 alt_kf_bits =
3175 if (alt_kf_bits > cpi->twopass.kf_bits)
3177 cpi->twopass.kf_bits = alt_kf_bits;
/external/libvpx/libvpx/vp8/encoder/
H A Dfirstpass.c3067 int alt_kf_bits; local
3156 alt_kf_bits = (int)((double)kf_boost *
3159 if (cpi->twopass.kf_bits > alt_kf_bits)
3161 cpi->twopass.kf_bits = alt_kf_bits;
3170 alt_kf_bits =
3175 if (alt_kf_bits > cpi->twopass.kf_bits)
3177 cpi->twopass.kf_bits = alt_kf_bits;
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_firstpass.c2157 const int alt_kf_bits = (int)((double)kf_boost * local
2160 if (twopass->kf_bits > alt_kf_bits)
2161 twopass->kf_bits = alt_kf_bits;
2166 const int alt_kf_bits = (int)((double)twopass->bits_left * (kf_mod_err / local
2169 if (alt_kf_bits > twopass->kf_bits)
2170 twopass->kf_bits = alt_kf_bits;

Completed in 131 milliseconds