Lines Matching defs:theConfig
65 ALACSpecificConfig theConfig ;
92 theConfig.frameLength = psf_get_be32 (theActualCookie, offsetof (ALACSpecificConfig, frameLength)) ;
94 if (theConfig.frameLength > ALAC_FRAME_LENGTH)
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)) ;
108 p->mConfig = theConfig ;
109 p->mNumChannels = theConfig.numChannels ;