Searched defs:noBitsToWrite (Results 1 - 1 of 1) sorted by relevance

/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Dbitbuffer.c142 Word16 noBitsToWrite)
146 assert(noBitsToWrite <= (Word16)sizeof(Word32)*8);
148 if(noBitsToWrite == 0)
149 return noBitsToWrite;
151 hBitBuf->cntBits += noBitsToWrite;
154 wBitPos += noBitsToWrite;
155 writeValue &= ~(0xffffffff << noBitsToWrite); // Mask out everything except the lowest noBitsToWrite bits
172 return noBitsToWrite;
140 WriteBits(HANDLE_BIT_BUF hBitBuf, UWord32 writeValue, Word16 noBitsToWrite) argument

Completed in 17 milliseconds