Home
last modified time | relevance | path

Searched refs:ALACSpecificConfig (Results 1 – 7 of 7) sorted by relevance

/third_party/libsnd/src/ALAC/
Dalac_decoder.c65 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 …]
DALACAudioTypes.h171 typedef struct ALACSpecificConfig struct
185 } ALACSpecificConfig ; argument
Dalac_encoder.c53 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()
Dalac_decoder.h43 ALACSpecificConfig mConfig ;
DALACDecoder.h45 ALACSpecificConfig mConfig ;
DALACEncoder.h49 void GetConfig (ALACSpecificConfig & config) ;
Dalac_codec.h40 ALACSpecificConfig mConfig ;