Searched refs:theConfig (Results 1 – 2 of 2) sorted by relevance
/third_party/libsnd/src/ALAC/ |
D | alac_decoder.c | 65 ALACSpecificConfig theConfig ; in alac_decoder_init() local 92 …theConfig.frameLength = psf_get_be32 (theActualCookie, offsetof (ALACSpecificConfig, frameLength))… in alac_decoder_init() 94 if (theConfig.frameLength > ALAC_FRAME_LENGTH) in alac_decoder_init() 97 theConfig.compatibleVersion = theActualCookie [offsetof (ALACSpecificConfig, compatibleVersion)] ; in alac_decoder_init() 98 theConfig.bitDepth = theActualCookie [offsetof (ALACSpecificConfig, bitDepth)] ; in alac_decoder_init() 99 theConfig.pb = theActualCookie [offsetof (ALACSpecificConfig, pb)] ; in alac_decoder_init() 100 theConfig.mb = theActualCookie [offsetof (ALACSpecificConfig, mb)] ; in alac_decoder_init() 101 theConfig.kb = theActualCookie [offsetof (ALACSpecificConfig, kb)] ; in alac_decoder_init() 102 theConfig.numChannels = theActualCookie [offsetof (ALACSpecificConfig, numChannels)] ; in alac_decoder_init() 103 theConfig.maxRun = psf_get_be16 (theActualCookie, offsetof (ALACSpecificConfig, maxRun)) ; in alac_decoder_init() [all …]
|
D | alac_encoder.c | 1141 ALACSpecificConfig theConfig = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } ; in alac_get_magic_cookie() local 1147 GetConfig (p, &theConfig) ; in alac_get_magic_cookie() 1148 if (theConfig.numChannels > 2) in alac_get_magic_cookie() 1150 …theChannelLayout.mChannelLayoutTag = Swap32NtoB (ALACChannelLayoutTags [theConfig.numChannels - 1]… in alac_get_magic_cookie() 1155 memcpy (theCookiePointer, &theConfig, sizeof (ALACSpecificConfig)) ; in alac_get_magic_cookie() 1157 if (theConfig.numChannels > 2) in alac_get_magic_cookie()
|