Home
last modified time | relevance | path

Searched refs:maxChannels (Results 1 – 12 of 12) sorted by relevance

/frameworks/base/media/java/android/media/
DEncoderCapabilities.java91 int minChannels, int maxChannels) { in AudioEncoderCap() argument
98 mMaxChannels = maxChannels; in AudioEncoderCap()
DMediaCodecInfo.java872 int maxChannels = 0; in applyLevelLimits() local
881 maxChannels = 2; in applyLevelLimits()
885 maxChannels = 1; in applyLevelLimits()
889 maxChannels = 1; in applyLevelLimits()
898 maxChannels = 48; in applyLevelLimits()
902 maxChannels = 255; in applyLevelLimits()
906 maxChannels = 255; in applyLevelLimits()
910 maxChannels = 8; in applyLevelLimits()
914 maxChannels = 255; in applyLevelLimits()
923 maxChannels = 1; in applyLevelLimits()
[all …]
/frameworks/base/media/jni/
Dandroid_media_MediaProfiles.cpp144 int maxChannels = sProfiles->getAudioEncoderParamByName("enc.aud.ch.max", encoder); in android_media_MediaProfiles_native_get_audio_encoder_cap() local
149 (minChannels == -1 || maxChannels == -1)) { in android_media_MediaProfiles_native_get_audio_encoder_cap()
162 minChannels, maxChannels); in android_media_MediaProfiles_native_get_audio_encoder_cap()
/frameworks/av/include/media/
DMediaProfiles.h288 int minChannels, int maxChannels) in AudioEncoderCap()
292 mMinChannels(minChannels), mMaxChannels(maxChannels) {} in AudioEncoderCap()
/frameworks/base/media/jni/soundpool/
DSoundPool.cpp47 SoundPool::SoundPool(int maxChannels, const audio_attributes_t* pAttributes) in SoundPool() argument
50 maxChannels, pAttributes->usage, pAttributes->flags, pAttributes->tags); in SoundPool()
53 mMaxChannels = maxChannels; in SoundPool()
60 ALOGW_IF(maxChannels != mMaxChannels, "App requested %d channels", maxChannels); in SoundPool()
Dandroid_media_SoundPool.cpp173 jint maxChannels, jobject jaa) in android_media_SoundPool_native_setup() argument
195 SoundPool *ap = new SoundPool(maxChannels, paa); in android_media_SoundPool_native_setup()
DSoundPool.h164 SoundPool(int maxChannels, const audio_attributes_t* pAttributes);
/frameworks/av/services/audioflinger/
DAudioResampler.cpp267 const int maxChannels = quality < DYN_LOW_QUALITY ? 2 : 8; in AudioResampler() local
269 || inChannelCount > maxChannels) { in AudioResampler()
/frameworks/av/media/libmediaplayerservice/
DStagefrightRecorder.cpp1386 int maxChannels = in clipNumberOfAudioChannels() local
1389 if (maxChannels != -1 && mAudioChannels > maxChannels) { in clipNumberOfAudioChannels()
1391 " and will be set to (%d)", mAudioChannels, maxChannels); in clipNumberOfAudioChannels()
1392 mAudioChannels = maxChannels; in clipNumberOfAudioChannels()
/frameworks/wilhelm/include/SLES/
DOpenSLES.h491 SLint16 maxChannels; member
506 SLint16 maxChannels; member
2279 SLuint32 maxChannels; member
/frameworks/wilhelm/include/OMXAL/
DOpenMAXAL.h1861 XAint16 maxChannels; member
1875 XAint16 maxChannels; member
2717 XAuint32 maxChannels; member
/frameworks/base/services/core/java/com/android/server/audio/
DAudioService.java4955 int maxChannels = 0; in configureHdmiPlugIntent() local
4958 if (channelCount > maxChannels) { in configureHdmiPlugIntent()
4959 maxChannels = channelCount; in configureHdmiPlugIntent()
4962 intent.putExtra(AudioManager.EXTRA_MAX_CHANNEL_COUNT, maxChannels); in configureHdmiPlugIntent()