OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:cntBits
(Results
1 - 2
of
2
) sorted by null
/frameworks/av/media/libstagefright/codecs/aacenc/inc/
bitbuffer.h
43
The element
cntBits
contains the currently available bits in the bit buffer. It will be incremented when
56
Word16
cntBits
; /*!< number of available bits in the bitstream buffer
57
write bits to bitstream buffer => increment
cntBits
58
read bits from bitstream buffer => decrement
cntBits
*/
86
#define GetNrBitsAvailable(hBitBuf) ( (hBitBuf)->
cntBits
)
87
#define GetNrBitsRead(hBitBuf) ((hBitBuf)->size-(hBitBuf)->
cntBits
)
/external/aac/libMpegTPDec/src/
tpdec_latm.cpp
167
UINT
cntBits
;
172
cntBits
= FDKgetValidBits(bs);
174
if ((INT)
cntBits
< MIN_LATM_HEADERLENGTH) {
192
if (
cntBits
< cmpBufferFullness)
Completed in 217 milliseconds