• Home
  • Raw
  • Download

Lines Matching refs:BitBufferRead

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()
285 val = (int32_t) BitBufferRead (bits, 16) ; in alac_decode()
287 p->mMixBufferU [i] = val | BitBufferRead (bits, (uint8_t) extraBits) ; in alac_decode()
303 p->mShiftBuffer [i] = (uint16_t) BitBufferRead (&shiftBits, (uint8_t) shift) ; in alac_decode()
350 unusedHeader = (uint16_t) BitBufferRead (bits, 12) ; in alac_decode()
354 headerByte = (uint8_t) BitBufferRead (bits, 4) ; in alac_decode()
370 numSamples = BitBufferRead (bits, 16) << 16 ; in alac_decode()
371 numSamples |= BitBufferRead (bits, 16) ; in alac_decode()
379 mixBits = (uint8_t) BitBufferRead (bits, 8) ; in alac_decode()
380 mixRes = (int8_t) BitBufferRead (bits, 8) ; in alac_decode()
382 headerByte = (uint8_t) BitBufferRead (bits, 8) ; in alac_decode()
386 headerByte = (uint8_t) BitBufferRead (bits, 8) ; in alac_decode()
390 coefsU [i] = (int16_t) BitBufferRead (bits, 16) ; in alac_decode()
392 headerByte = (uint8_t) BitBufferRead (bits, 8) ; in alac_decode()
396 headerByte = (uint8_t) BitBufferRead (bits, 8) ; in alac_decode()
400 coefsV [i] = (int16_t) BitBufferRead (bits, 16) ; in alac_decode()
452 val = (int32_t) BitBufferRead (bits, (uint8_t) chanBits) ; in alac_decode()
456 val = (int32_t) BitBufferRead (bits, (uint8_t) chanBits) ; in alac_decode()
467 val = (int32_t) BitBufferRead (bits, 16) ; in alac_decode()
469 p->mMixBufferU [i] = val | BitBufferRead (bits, (uint8_t) extraBits) ; in alac_decode()
471 val = (int32_t) BitBufferRead (bits, 16) ; in alac_decode()
473 p->mMixBufferV [i] = val | BitBufferRead (bits, (uint8_t) extraBits) ; in alac_decode()
491 p->mShiftBuffer [i + 0] = (uint16_t) BitBufferRead (&shiftBits, (uint8_t) shift) ; in alac_decode()
492 p->mShiftBuffer [i + 1] = (uint16_t) BitBufferRead (&shiftBits, (uint8_t) shift) ; in alac_decode()