• Home
  • Raw
  • Download

Lines Matching refs:BitBuffer

55 static int32_t	EncodeStereo (ALAC_ENCODER *p, struct BitBuffer * bitstream, const int32_t * input, …
56 static int32_t EncodeStereoFast (ALAC_ENCODER *p, struct BitBuffer * bitstream, const int32_t * inp…
57 static int32_t EncodeStereoEscape (ALAC_ENCODER *p, struct BitBuffer * bitstream, const int32_t * i…
58 static int32_t EncodeMono (ALAC_ENCODER *p, struct BitBuffer * bitstream, const int32_t * input, ui…
78 static void AddFiller (BitBuffer * bits, int32_t numBytes) ;
222 EncodeStereo (ALAC_ENCODER *p, struct BitBuffer * bitstream, const int32_t * inputBuffer, uint32_t … in EncodeStereo()
224 BitBuffer workBits ; in EncodeStereo()
225BitBuffer startBits = *bitstream ; // squirrel away copy of current state in case we need to go… in EncodeStereo()
504 EncodeStereoFast (ALAC_ENCODER *p, struct BitBuffer * bitstream, const int32_t * inputBuffer, uint3… in EncodeStereoFast()
506BitBuffer startBits = *bitstream ; // squirrel away current bit position in case we decide to u… in EncodeStereoFast()
686 EncodeStereoEscape (ALAC_ENCODER *p, struct BitBuffer * bitstream, const int32_t * inputBuffer, uin… in EncodeStereoEscape()
743 EncodeMono (ALAC_ENCODER *p, struct BitBuffer * bitstream, const int32_t * inputBuffer, uint32_t st… in EncodeMono()
745BitBuffer startBits = *bitstream ; // squirrel away copy of current state in case we need to go… in EncodeMono()
832 BitBuffer workBits ; in EncodeMono()
965 BitBuffer bitstream ; in alac_encode()
1268 static void AddFiller (BitBuffer * bits, int32_t numBytes) in AddFiller()