Home
last modified time | relevance | path

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

/frameworks/base/media/jni/soundpool/
DSoundPool.cpp50 mMaxChannels = maxChannels; in SoundPool()
51 if (mMaxChannels < 1) { in SoundPool()
52 mMaxChannels = 1; in SoundPool()
54 else if (mMaxChannels > 32) { in SoundPool()
55 mMaxChannels = 32; in SoundPool()
57 ALOGW_IF(maxChannels != mMaxChannels, "App requested %d channels", maxChannels); in SoundPool()
70 mChannelPool = new SoundChannel[mMaxChannels]; in SoundPool()
71 for (int i = 0; i < mMaxChannels; ++i) { in SoundPool()
201 for (int i = 0; i < mMaxChannels; ++i) { in findChannel()
211 for (int i = 0; i < mMaxChannels; ++i) { in findNextChannel()
[all …]
DSoundPool.h224 int mMaxChannels; variable
/frameworks/base/media/java/android/media/
DEncoderCapabilities.java93 public final int mMinChannels, mMaxChannels; // min and max number of channels field in EncoderCapabilities.AudioEncoderCap
108 mMaxChannels = maxChannels; in AudioEncoderCap()
/frameworks/av/media/libmedia/include/media/
DMediaProfiles.h329 mMinChannels(minChannels), mMaxChannels(maxChannels) {} in AudioEncoderCap()
336 int mMinChannels, mMaxChannels; member
/frameworks/av/include/media/
DMediaProfiles.h329 mMinChannels(minChannels), mMaxChannels(maxChannels) {} in AudioEncoderCap()
336 int mMinChannels, mMaxChannels; member
/frameworks/av/media/libmedia/
DMediaProfiles.cpp155 ALOGV("number of channels: min = %d and max = %d", cap.mMinChannels, cap.mMaxChannels); in logAudioEncoderCap()
988 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()