Searched refs:mMaxChannels (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/media/java/android/media/
H A DEncoderCapabilities.java84 public final int mMinChannels, mMaxChannels; // min and max number of channels field in class:EncoderCapabilities.AudioEncoderCap
99 mMaxChannels = maxChannels;
/frameworks/av/media/libmedia/
H A DSoundPool.cpp48 mMaxChannels = maxChannels;
49 if (mMaxChannels < 1) {
50 mMaxChannels = 1;
52 else if (mMaxChannels > 32) {
53 mMaxChannels = 32;
55 ALOGW_IF(maxChannels != mMaxChannels, "App requested %d channels", maxChannels);
68 mChannelPool = new SoundChannel[mMaxChannels];
69 for (int i = 0; i < mMaxChannels; ++i) {
188 for (int i = 0; i < mMaxChannels; ++i) {
198 for (int i = 0; i < mMaxChannels;
[all...]
H A DMediaProfiles.cpp123 ALOGV("number of channels: min = %d and max = %d", cap.mMinChannels, cap.mMaxChannels);
1058 if (!strcmp("enc.aud.ch.max", name)) return mAudioEncoders[index]->mMaxChannels;
/frameworks/av/include/media/
H A DMediaProfiles.h325 mMinChannels(minChannels), mMaxChannels(maxChannels) {}
332 int mMinChannels, mMaxChannels; member in struct:android::MediaProfiles::AudioEncoderCap
H A DSoundPool.h222 int mMaxChannels; member in class:android::SoundPool
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediarecorder/
H A DMediaRecorderTest.java118 int audioChannels = highQuality? audioCap.mMaxChannels: audioCap.mMinChannels ;

Completed in 135 milliseconds