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

  /external/libvpx/libvpx/vp9/encoder/
vp9_ratectrl.h 26 #define BPER_MB_NORMBITS 9
vp9_ratectrl.c 109 return ((uint64_t)bpm * mbs) >> BPER_MB_NORMBITS;
371 ((uint64_t)target_bits_per_frame << BPER_MB_NORMBITS) / cm->MBs;
    [all...]
vp9_firstpass.c     [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_ratectrl.h 25 #define BPER_MB_NORMBITS 9
vp9_ratectrl.c 190 return ((uint64_t)bpm * mbs) >> BPER_MB_NORMBITS;
467 ((uint64_t)target_bits_per_frame << BPER_MB_NORMBITS) / cm->MBs;
    [all...]
vp9_firstpass.c     [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
ratectrl.c 45 #define BPER_MB_NORMBITS 9
335 return (Bpm >> BPER_MB_NORMBITS) * MBs;
337 return (Bpm * MBs) >> BPER_MB_NORMBITS;
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
ratectrl.c 45 #define BPER_MB_NORMBITS 9
335 return (Bpm >> BPER_MB_NORMBITS) * MBs;
337 return (Bpm * MBs) >> BPER_MB_NORMBITS;
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
ratectrl.c 45 #define BPER_MB_NORMBITS 9
335 return (Bpm >> BPER_MB_NORMBITS) * MBs;
337 return (Bpm * MBs) >> BPER_MB_NORMBITS;
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_ratectrl.c 39 #define BPER_MB_NORMBITS 9
161 return (mbs > (1 << 11)) ? (bpm >> BPER_MB_NORMBITS) * mbs
162 : (bpm * mbs) >> BPER_MB_NORMBITS;
374 if (target_bits_per_frame >= (INT_MAX >> BPER_MB_NORMBITS))
376 target_bits_per_mb = (target_bits_per_frame / cm->MBs) << BPER_MB_NORMBITS;
378 target_bits_per_mb = (target_bits_per_frame << BPER_MB_NORMBITS) / cm->MBs;
    [all...]

Completed in 2771 milliseconds