Searched refs:maxChannels (Results 1 - 18 of 18) sorted by relevance

/frameworks/base/media/java/android/media/
H A DEncoderCapabilities.java91 int minChannels, int maxChannels) {
98 mMaxChannels = maxChannels;
88 AudioEncoderCap(int codec, int minBitRate, int maxBitRate, int minSampleRate, int maxSampleRate, int minChannels, int maxChannels) argument
H A DMediaCodecInfo.java1070 int maxChannels = MAX_INPUT_CHANNEL_COUNT;
1079 maxChannels = 2;
1083 maxChannels = 1;
1087 maxChannels = 1;
1096 maxChannels = 48;
1100 maxChannels = 255;
1104 maxChannels = 255;
1108 maxChannels = AudioTrack.CHANNEL_COUNT_MAX;
1112 maxChannels = 255;
1121 maxChannels
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/scanner/
H A DNoBandChannelHelper.java69 * order to do this if any band is added or the maxChannels is exceeded then all channels will
151 public void fillBucketSettings(WifiNative.BucketSettings bucketSettings, int maxChannels) { argument
152 if (mAllChannels || mChannels.size() > maxChannels) {
H A DKnownBandsChannelHelper.java247 public void fillBucketSettings(WifiNative.BucketSettings bucketSettings, int maxChannels) { argument
248 if ((mChannels.size() > maxChannels || mAllBands == mExactBands)
H A DBackgroundScanScheduler.java196 public WifiNative.BucketSettings createBucketSettings(int bucketId, int maxChannels) { argument
240 mChannelCollection.fillBucketSettings(bucketSettings, maxChannels);
341 public void setMaxChannelsPerBucket(int maxChannels) { argument
342 mMaxChannelsPerBucket = maxChannels;
H A DChannelHelper.java218 * Store the channels in this collection in the supplied BucketSettings. If maxChannels is
222 public abstract void fillBucketSettings(WifiNative.BucketSettings bucket, int maxChannels); argument
/frameworks/base/media/jni/
H A Dandroid_media_MediaProfiles.cpp144 int maxChannels = sProfiles->getAudioEncoderParamByName("enc.aud.ch.max", encoder); local
149 (minChannels == -1 || maxChannels == -1)) {
162 minChannels, maxChannels);
/frameworks/av/media/libaaudio/src/utility/
H A DAAudioUtilities.cpp314 const int32_t maxChannels = 256; // ridiculously large local
315 const int32_t maxBytesPerFrame = maxChannels * sizeof(float);
/frameworks/av/include/media/
H A DMediaProfiles.h313 int minChannels, int maxChannels)
317 mMinChannels(minChannels), mMaxChannels(maxChannels) {}
310 AudioEncoderCap(audio_encoder codec, int minBitRate, int maxBitRate, int minSampleRate, int maxSampleRate, int minChannels, int maxChannels) argument
/frameworks/av/media/libmedia/include/media/
H A DMediaProfiles.h313 int minChannels, int maxChannels)
317 mMinChannels(minChannels), mMaxChannels(maxChannels) {}
310 AudioEncoderCap(audio_encoder codec, int minBitRate, int maxBitRate, int minSampleRate, int maxSampleRate, int minChannels, int maxChannels) argument
/frameworks/base/media/jni/soundpool/
H A Dandroid_media_SoundPool.cpp182 jint maxChannels, jobject jaa)
204 SoundPool *ap = new SoundPool(maxChannels, paa);
181 android_media_SoundPool_native_setup(JNIEnv *env, jobject thiz, jobject weakRef, jint maxChannels, jobject jaa) argument
H A DSoundPool.cpp47 SoundPool::SoundPool(int maxChannels, const audio_attributes_t* pAttributes) argument
49 ALOGV("SoundPool constructor: maxChannels=%d, attr.usage=%d, attr.flags=0x%x, attr.tags=%s",
50 maxChannels, pAttributes->usage, pAttributes->flags, pAttributes->tags);
53 mMaxChannels = maxChannels;
60 ALOGW_IF(maxChannels != mMaxChannels, "App requested %d channels", maxChannels);
H A DSoundPool.h166 SoundPool(int maxChannels, const audio_attributes_t* pAttributes);
/frameworks/av/media/libaudioprocessing/
H A DAudioResampler.cpp271 const int maxChannels = quality < DYN_LOW_QUALITY ? 2 : 8; local
273 || inChannelCount > maxChannels) {
/frameworks/av/media/libmediaplayerservice/
H A DStagefrightRecorder.cpp1514 int maxChannels = local
1517 if (maxChannels != -1 && mAudioChannels > maxChannels) {
1519 " and will be set to (%d)", mAudioChannels, maxChannels);
1520 mAudioChannels = maxChannels;
/frameworks/wilhelm/include/OMXAL/
H A DOpenMAXAL.h1861 XAint16 maxChannels; member in struct:XAAudioInputDescriptor_
1875 XAint16 maxChannels; member in struct:XAAudioOutputDescriptor_
2717 XAuint32 maxChannels; member in struct:XAAudioCodecDescriptor_
/frameworks/wilhelm/include/SLES/
H A DOpenSLES.h491 SLint16 maxChannels; member in struct:SLAudioInputDescriptor_
506 SLint16 maxChannels; member in struct:SLAudioOutputDescriptor_
2279 SLuint32 maxChannels; member in struct:SLAudioCodecDescriptor_
/frameworks/base/services/core/java/com/android/server/audio/
H A DAudioService.java5461 int maxChannels = 0;
5464 if (channelCount > maxChannels) {
5465 maxChannels = channelCount;
5468 intent.putExtra(AudioManager.EXTRA_MAX_CHANNEL_COUNT, maxChannels);

Completed in 2185 milliseconds