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

/external/libvpx/libvpx/vp8/encoder/
H A Dratectrl.c333 static int estimate_bits_at_q(int frame_kind, int Q, int MBs, argument
339 * chosen such that the maximum product of Bpm and MBs fits 31 bits. The
342 if (MBs > (1 << 11))
343 return (Bpm >> BPER_MB_NORMBITS) * MBs;
345 return (Bpm * MBs) >> BPER_MB_NORMBITS;
362 target = estimate_bits_at_q(INTRA_FRAME, Q, cpi->common.MBs,
1086 (estimate_bits_at_q(1, Q, cpi->common.MBs, 1.0)
1139 projected_size_based_on_q = (int)(((.5 + rate_correction_factor * vp8_bits_per_mb[cpi->common.frame_type][Q]) * cpi->common.MBs) / (1 << BPER_MB_NORMBITS));
1269 target_bits_per_mb = (target_bits_per_frame / cpi->common.MBs) << BPER_MB_NORMBITS;
1271 target_bits_per_mb = (target_bits_per_frame << BPER_MB_NORMBITS) / cpi->common.MBs;
[all...]
/external/libvpx/libvpx/vp8/common/
H A Donyxc_int.h98 int MBs; member in struct:VP8Common
/external/libvpx/libvpx/vp9/common/
H A Dvp9_onyxc_int.h143 // MBs, mb_rows/cols is in 16-pixel units; mi_rows/cols is in
145 int MBs; member in struct:VP9Common

Completed in 661 milliseconds