Lines Matching refs:ALACSpecificConfig
65 ALACSpecificConfig theConfig ;
71 // the ALACSpecificConfig. This would consist of format ('frma') and 'alac' atoms which precede the
72 // ALACSpecificConfig.
89 // read the ALACSpecificConfig
90 if (theCookieBytesRemaining >= sizeof (ALACSpecificConfig))
92 theConfig.frameLength = psf_get_be32 (theActualCookie, offsetof (ALACSpecificConfig, frameLength)) ;
97 theConfig.compatibleVersion = theActualCookie [offsetof (ALACSpecificConfig, compatibleVersion)] ;
98 theConfig.bitDepth = theActualCookie [offsetof (ALACSpecificConfig, bitDepth)] ;
99 theConfig.pb = theActualCookie [offsetof (ALACSpecificConfig, pb)] ;
100 theConfig.mb = theActualCookie [offsetof (ALACSpecificConfig, mb)] ;
101 theConfig.kb = theActualCookie [offsetof (ALACSpecificConfig, kb)] ;
102 theConfig.numChannels = theActualCookie [offsetof (ALACSpecificConfig, numChannels)] ;
103 theConfig.maxRun = psf_get_be16 (theActualCookie, offsetof (ALACSpecificConfig, maxRun)) ;
104 theConfig.maxFrameBytes = psf_get_be32 (theActualCookie, offsetof (ALACSpecificConfig, maxFrameBytes)) ;
105 theConfig.avgBitRate = psf_get_be32 (theActualCookie, offsetof (ALACSpecificConfig, avgBitRate)) ;
106 theConfig.sampleRate = psf_get_be32 (theActualCookie, offsetof (ALACSpecificConfig, sampleRate)) ;
122 // theActualCookie += sizeof (ALACSpecificConfig) ;