Home | History | Annotate | Download | only in audioflinger

Lines Matching full:channelcount

352             uint32_t channelCount = FCC_2; // stereo is default
354 channelCount = audio_channel_count_from_out_mask(channelMask);
355 if (channelCount < FCC_2 // mono is not supported at this time
356 || channelCount > AudioMixer::MAX_NUM_CHANNELS) {
360 // check that channelMask is the "canonical" one we expect for the channelCount.
361 return channelMask == audio_channel_out_mask_from_count(channelCount);
365 const uint32_t channelCount = audio_channel_count_from_out_mask(channelMask);
366 if (channelCount >= FCC_2 // mono is not supported at this time
367 && channelCount <= AudioMixer::MAX_NUM_CHANNELS) {