HomeSort by relevance Sort by last modified time
    Searched refs:BPER_MB_NORMBITS (Results 1 - 2 of 2) sorted by null

  /external/libvpx/libvpx/vp9/encoder/
vp9_ratectrl.c 33 #define BPER_MB_NORMBITS 9
143 return (mbs > (1 << 11)) ? (bpm >> BPER_MB_NORMBITS) * mbs
144 : (bpm * mbs) >> BPER_MB_NORMBITS;
342 if (target_bits_per_frame >= (INT_MAX >> BPER_MB_NORMBITS))
345 << BPER_MB_NORMBITS; // Case where we would overflow int
348 (target_bits_per_frame << BPER_MB_NORMBITS) / cpi->common.MBs;
  /external/libvpx/libvpx/vp8/encoder/
ratectrl.c 45 #define BPER_MB_NORMBITS 9
343 return (Bpm >> BPER_MB_NORMBITS) * MBs;
345 return (Bpm * MBs) >> BPER_MB_NORMBITS;
    [all...]

Completed in 156 milliseconds