Home
last modified time | relevance | path

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

/frameworks/base/media/jni/soundpool/
DSoundPool.cpp53 mMaxChannels = maxChannels; in SoundPool()
54 if (mMaxChannels < 1) { in SoundPool()
55 mMaxChannels = 1; in SoundPool()
57 else if (mMaxChannels > 32) { in SoundPool()
58 mMaxChannels = 32; in SoundPool()
60 ALOGW_IF(maxChannels != mMaxChannels, "App requested %d channels", maxChannels); in SoundPool()
73 mChannelPool = new SoundChannel[mMaxChannels]; in SoundPool()
74 for (int i = 0; i < mMaxChannels; ++i) { in SoundPool()
204 for (int i = 0; i < mMaxChannels; ++i) { in findChannel()
214 for (int i = 0; i < mMaxChannels; ++i) { in findNextChannel()
[all …]
DSoundPool.h222 int mMaxChannels; variable
/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/media/libmedia/include/media/
DMediaProfiles.h317 mMinChannels(minChannels), mMaxChannels(maxChannels) {} in AudioEncoderCap()
324 int mMinChannels, mMaxChannels; member
/frameworks/av/include/media/
DMediaProfiles.h317 mMinChannels(minChannels), mMaxChannels(maxChannels) {} in AudioEncoderCap()
324 int mMinChannels, mMaxChannels; member
/frameworks/av/media/libmedia/
DMediaProfiles.cpp141 ALOGV("number of channels: min = %d and max = %d", cap.mMinChannels, cap.mMaxChannels); in logAudioEncoderCap()
974 if (!strcmp("enc.aud.ch.max", name)) return mAudioEncoders[index]->mMaxChannels; in getAudioEncoderParamByName()
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediarecorder/
DMediaRecorderTest.java318 int audioChannels = highQuality? audioCap.mMaxChannels: audioCap.mMinChannels ; in recordVideoWithPara()