Home
last modified time | relevance | path

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

/frameworks/av/media/libmedia/
DSoundPool.cpp49 mMaxChannels = maxChannels; in SoundPool()
50 if (mMaxChannels < 1) { in SoundPool()
51 mMaxChannels = 1; in SoundPool()
53 else if (mMaxChannels > 32) { in SoundPool()
54 mMaxChannels = 32; in SoundPool()
56 ALOGW_IF(maxChannels != mMaxChannels, "App requested %d channels", maxChannels); in SoundPool()
68 mChannelPool = new SoundChannel[mMaxChannels]; in SoundPool()
69 for (int i = 0; i < mMaxChannels; ++i) { in SoundPool()
188 for (int i = 0; i < mMaxChannels; ++i) { in findChannel()
198 for (int i = 0; i < mMaxChannels; ++i) { in findNextChannel()
[all …]
DMediaProfiles.cpp138 ALOGV("number of channels: min = %d and max = %d", cap.mMinChannels, cap.mMaxChannels); in logAudioEncoderCap()
1081 if (!strcmp("enc.aud.ch.max", name)) return mAudioEncoders[index]->mMaxChannels; in getAudioEncoderParamByName()
/frameworks/base/media/java/android/media/
DEncoderCapabilities.java83 public final int mMinChannels, mMaxChannels; // min and max number of channels field in EncoderCapabilities.AudioEncoderCap
98 mMaxChannels = maxChannels; in AudioEncoderCap()
/frameworks/av/include/media/
DMediaProfiles.h336 mMinChannels(minChannels), mMaxChannels(maxChannels) {} in AudioEncoderCap()
343 int mMinChannels, mMaxChannels; member
DSoundPool.h226 int mMaxChannels; variable
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediarecorder/
DMediaRecorderTest.java303 int audioChannels = highQuality? audioCap.mMaxChannels: audioCap.mMinChannels ; in recordVideoWithPara()