Searched refs:BitBufferRead (Results 1 – 3 of 3) sorted by relevance
/third_party/libsnd/src/ALAC/ |
D | alac_decoder.c | 197 unusedHeader = (uint16_t) BitBufferRead (bits, 12) ; in alac_decode() 201 headerByte = (uint8_t) BitBufferRead (bits, 4) ; in alac_decode() 217 numSamples = BitBufferRead (bits, 16) << 16 ; in alac_decode() 218 numSamples |= BitBufferRead (bits, 16) ; in alac_decode() 226 mixBits = (uint8_t) BitBufferRead (bits, 8) ; in alac_decode() 227 mixRes = (int8_t) BitBufferRead (bits, 8) ; in alac_decode() 230 headerByte = (uint8_t) BitBufferRead (bits, 8) ; in alac_decode() 234 headerByte = (uint8_t) BitBufferRead (bits, 8) ; in alac_decode() 239 coefsU [i] = (int16_t) BitBufferRead (bits, 16) ; in alac_decode() 274 val = (int32_t) BitBufferRead (bits, (uint8_t) chanBits) ; in alac_decode() [all …]
|
D | ALACBitUtilities.h | 76 uint32_t BitBufferRead (BitBuffer * bits, uint8_t numBits) ; // note: cannot read more than 16 bits…
|
D | ALACBitUtilities.c | 44 uint32_t BitBufferRead (BitBuffer * bits, uint8_t numBits) in BitBufferRead() function
|