HomeSort by relevance Sort by last modified time
    Searched refs:cntBits (Results 1 - 4 of 4) 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)
  /frameworks/av/media/libstagefright/codecs/aacenc/src/
bitbuffer.c 68 hBitBuf->cntBits = 0;
106 hBitBuf->cntBits = 0;
131 return hBitBuf->cntBits;
151 hBitBuf->cntBits += noBitsToWrite;
bitenc.c 677 WriteBits(hBitStream,0, (8 - (hBitStream->cntBits & 7)) & 7);
  /external/aac/libMpegTPDec/src/
tpdec_latm.cpp 160 UINT cntBits;
165 cntBits = FDKgetValidBits(bs);
167 if ((INT)cntBits < MIN_LATM_HEADERLENGTH) {
185 if (cntBits < cmpBufferFullness)

Completed in 3543 milliseconds