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

/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Dbitbuffer.c119 Word16 noBitsToWrite)
123 assert(noBitsToWrite <= (Word16)sizeof(Word32)*8);
125 if(noBitsToWrite == 0)
126 return noBitsToWrite;
128 hBitBuf->cntBits += noBitsToWrite;
131 wBitPos += noBitsToWrite;
132 writeValue &= ~(0xffffffff << noBitsToWrite); // Mask out everything except the lowest noBitsToWrite bits
149 return noBitsToWrite;
117 WriteBits(HANDLE_BIT_BUF hBitBuf, UWord32 writeValue, Word16 noBitsToWrite) argument

Completed in 5 milliseconds