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

/frameworks/base/media/java/android/media/
H A DEncoderCapabilities.java83 public final int mMinChannels, mMaxChannels; // min and max number of channels field in class:EncoderCapabilities.AudioEncoderCap
98 mMaxChannels = maxChannels;
/frameworks/av/media/libmedia/
H A DSoundPool.cpp49 mMaxChannels = maxChannels;
50 if (mMaxChannels < 1) {
51 mMaxChannels = 1;
53 else if (mMaxChannels > 32) {
54 mMaxChannels = 32;
56 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.cpp138 ALOGV("number of channels: min = %d and max = %d", cap.mMinChannels, cap.mMaxChannels);
1081 if (!strcmp("enc.aud.ch.max", name)) return mAudioEncoders[index]->mMaxChannels;
/frameworks/av/include/media/
H A DMediaProfiles.h336 mMinChannels(minChannels), mMaxChannels(maxChannels) {}
343 int mMinChannels, mMaxChannels; member in struct:android::MediaProfiles::AudioEncoderCap
H A DSoundPool.h226 int mMaxChannels; member in class:android::SoundPool
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediarecorder/
H A DMediaRecorderTest.java303 int audioChannels = highQuality? audioCap.mMaxChannels: audioCap.mMinChannels ;

Completed in 573 milliseconds