Searched refs:ALACSpecificConfig (Results 1 – 7 of 7) sorted by relevance
/third_party/libsnd/src/ALAC/ |
D | alac_decoder.c | 65 ALACSpecificConfig theConfig ; in alac_decoder_init() 90 if (theCookieBytesRemaining >= sizeof (ALACSpecificConfig)) in alac_decoder_init() 92 …theConfig.frameLength = psf_get_be32 (theActualCookie, offsetof (ALACSpecificConfig, frameLength))… 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 | ALACAudioTypes.h | 171 typedef struct ALACSpecificConfig struct 185 } ALACSpecificConfig ; argument
|
D | alac_encoder.c | 53 static void GetConfig (ALAC_ENCODER *p, ALACSpecificConfig * config) ; 1110 GetConfig (ALAC_ENCODER *p, ALACSpecificConfig * config) in GetConfig() 1130 return sizeof (ALACSpecificConfig) + kChannelAtomSize + sizeof (ALACAudioChannelLayout) ; in alac_get_magic_cookie_size() 1134 return sizeof (ALACSpecificConfig) ; in alac_get_magic_cookie_size() 1141 ALACSpecificConfig theConfig = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } ; in alac_get_magic_cookie() 1144 uint32_t theCookieSize = sizeof (ALACSpecificConfig) ; in alac_get_magic_cookie() 1155 memcpy (theCookiePointer, &theConfig, sizeof (ALACSpecificConfig)) ; in alac_get_magic_cookie() 1159 theCookiePointer += sizeof (ALACSpecificConfig) ; in alac_get_magic_cookie()
|
D | alac_decoder.h | 43 ALACSpecificConfig mConfig ;
|
D | ALACDecoder.h | 45 ALACSpecificConfig mConfig ;
|
D | ALACEncoder.h | 49 void GetConfig (ALACSpecificConfig & config) ;
|
D | alac_codec.h | 40 ALACSpecificConfig mConfig ;
|