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

/external/libvpx/vp8/encoder/
H A Dratectrl.c46 #define BPER_MB_NORMBITS 9 macro
577 return (Bpm >> BPER_MB_NORMBITS) * MBs;
579 return (Bpm * MBs) >> BPER_MB_NORMBITS;
650 cpi->this_frame_target = (((bits_per_mb_at_this_q * cpi->common.MBs) >> BPER_MB_NORMBITS) * Boost) / 100;
1200 //projected_size_based_on_q = ((int)(.5 + rate_correction_factor * vp8_bits_per_mb[cpi->common.frame_type][Q]) * cpi->common.MBs) >> BPER_MB_NORMBITS;
1201 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));
1286 return (Bpm >> BPER_MB_NORMBITS) * cpi->common.MBs;
1288 return (Bpm * cpi->common.MBs) >> BPER_MB_NORMBITS;
1338 if (target_bits_per_frame >= (INT_MAX >> BPER_MB_NORMBITS))
1339 target_bits_per_mb = (target_bits_per_frame / cpi->common.MBs) << BPER_MB_NORMBITS; // Cas
[all...]

Completed in 39 milliseconds