Searched defs:BPER_MB_NORMBITS (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_ratectrl.h25 #define BPER_MB_NORMBITS 9 macro
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_ratectrl.h26 #define BPER_MB_NORMBITS 9 macro
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Dratectrl.c45 #define BPER_MB_NORMBITS 9 macro
335 return (Bpm >> BPER_MB_NORMBITS) * MBs;
337 return (Bpm * MBs) >> BPER_MB_NORMBITS;
1131 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));
1258 if (target_bits_per_frame >= (INT_MAX >> BPER_MB_NORMBITS))
1260 target_bits_per_mb = (target_bits_per_frame / cpi->common.MBs) << BPER_MB_NORMBITS;
1262 target_bits_per_mb = (target_bits_per_frame << BPER_MB_NORMBITS) / cpi->common.MBs;
/external/libvpx/libvpx/vp8/encoder/
H A Dratectrl.c45 #define BPER_MB_NORMBITS 9 macro
335 return (Bpm >> BPER_MB_NORMBITS) * MBs;
337 return (Bpm * MBs) >> BPER_MB_NORMBITS;
1131 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));
1258 if (target_bits_per_frame >= (INT_MAX >> BPER_MB_NORMBITS))
1260 target_bits_per_mb = (target_bits_per_frame / cpi->common.MBs) << BPER_MB_NORMBITS;
1262 target_bits_per_mb = (target_bits_per_frame << BPER_MB_NORMBITS) / cpi->common.MBs;

Completed in 424 milliseconds