Lines Matching refs:profile
49 static void fillProfile(AudioProfile* profile, const std::vector<int32_t>& channelLayouts, in fillProfile() argument
52 profile->channelMasks.push_back( in fillProfile()
55 profile->sampleRates.insert(profile->sampleRates.end(), sampleRates.begin(), sampleRates.end()); in fillProfile()
60 AudioProfile profile; in createProfile() local
61 profile.format.type = AudioFormatType::PCM; in createProfile()
62 profile.format.pcm = pcmType; in createProfile()
63 fillProfile(&profile, channelLayouts, sampleRates); in createProfile()
64 return profile; in createProfile()
70 AudioProfile profile; in createProfile() local
71 profile.format.encoding = encodingType; in createProfile()
72 fillProfile(&profile, channelLayouts, sampleRates); in createProfile()
73 return profile; in createProfile()