OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:BPER_MB_NORMBITS
(Results
1 - 4
of
4
) sorted by null
/external/libvpx/libvpx/vp8/encoder/
ratectrl.c
46
#define
BPER_MB_NORMBITS
9
336
return (Bpm >>
BPER_MB_NORMBITS
) * MBs;
338
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
...]
/external/libvpx/libvpx/vp9/encoder/
vp9_ratectrl.h
25
#define
BPER_MB_NORMBITS
9
/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 77 milliseconds