Lines Matching refs:mBitDepth
246 RequireAction ((p->mBitDepth == 16) || (p->mBitDepth == 20) || (p->mBitDepth == 24) || (p->mBitDepth == 32), return kALAC_ParamError ;) ;
259 if (p->mBitDepth == 32)
261 else if (p->mBitDepth >= 24)
266 chanBits = p->mBitDepth - (bytesShifted * 8) + 1 ;
287 switch (p->mBitDepth)
334 switch (p->mBitDepth)
397 escapeBits = (numSamples * p->mBitDepth * 2) + ((partialFrame == true) ? 32 : 0) + (2 * 8) ; /* 2 common header bytes */
525 RequireAction ((p->mBitDepth == 16) || (p->mBitDepth == 20) || (p->mBitDepth == 24) || (p->mBitDepth == 32), return kALAC_ParamError ;) ;
538 if (p->mBitDepth == 32)
540 else if (p->mBitDepth >= 24)
545 chanBits = p->mBitDepth - (bytesShifted * 8) + 1 ;
560 switch (p->mBitDepth)
644 escapeBits = (numSamples * p->mBitDepth * 2) + ((partialFrame == true) ? 32 : 0) + (2 * 8) ; /* 2 common header bytes */
673 DebugMsg ("escape!: %u vs %u\n", minBits, (numSamples * p->mBitDepth * 2)) ;
701 switch (p->mBitDepth)
766 RequireAction ((p->mBitDepth == 16) || (p->mBitDepth == 20) || (p->mBitDepth == 24) || (p->mBitDepth == 32), return kALAC_ParamError ;) ;
773 if (p->mBitDepth == 32)
775 else if (p->mBitDepth >= 24)
782 chanBits = p->mBitDepth - (bytesShifted * 8) ;
788 switch (p->mBitDepth)
862 escapeBits = (numSamples * p->mBitDepth) + ((partialFrame == true) ? 32 : 0) + (2 * 8) ; /* 2 common header bytes */
919 switch (p->mBitDepth)
944 DebugMsg ("escape!: %u vs %u\n", minBits, (numSamples * p->mBitDepth)) ;
970 RequireAction ((p->mBitDepth == 16) || (p->mBitDepth == 20) || (p->mBitDepth == 24) || (p->mBitDepth == 32), return kALAC_ParamError ;) ;
1114 config->bitDepth = (uint8_t) p->mBitDepth ;
1188 p->mBitDepth = 16 ;
1191 p->mBitDepth = 20 ;
1194 p->mBitDepth = 24 ;
1197 p->mBitDepth = 32 ;
1241 p->mBitDepth = 16 ;
1243 p->mBitDepth = 20 ;
1245 p->mBitDepth = 24 ;
1247 p->mBitDepth = 32 ;
1252 MakeUncompressedAudioFormat (mNumChannels, (float) mOutputSampleRate, mBitDepth, kAudioFormatFlagsNativeIntegerPacked, output) ;