Searched defs:maxChannels (Results 1 - 13 of 13) sorted by relevance

/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
146 public void fillBucketSettings(WifiNative.BucketSettings bucketSettings, int maxChannels) { argument
147 if (mAllChannels || mChannels.size() > maxChannels) {
H A DChannelHelper.java214 * Store the channels in this collection in the supplied BucketSettings. If maxChannels is
218 public abstract void fillBucketSettings(WifiNative.BucketSettings bucket, int maxChannels); argument
H A DKnownBandsChannelHelper.java241 public void fillBucketSettings(WifiNative.BucketSettings bucketSettings, int maxChannels) { argument
242 if ((mChannels.size() > maxChannels || mAllBands == mExactBands)
H A DBackgroundScanScheduler.java197 public WifiNative.BucketSettings createBucketSettings(int bucketId, int maxChannels) { argument
241 mChannelCollection.fillBucketSettings(bucketSettings, maxChannels);
342 public void setMaxChannelsPerBucket(int maxChannels) { argument
343 mMaxChannelsPerBucket = maxChannels;
/frameworks/av/services/audioflinger/
H A DAudioResampler.cpp268 const int maxChannels = quality < DYN_LOW_QUALITY ? 2 : 8; local
270 || inChannelCount > maxChannels) {
/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
/frameworks/base/media/jni/soundpool/
H A Dandroid_media_SoundPool.cpp173 jint maxChannels, jobject jaa)
195 SoundPool *ap = new SoundPool(maxChannels, paa);
172 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);
/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/include/media/
H A DMediaProfiles.h288 int minChannels, int maxChannels)
292 mMinChannels(minChannels), mMaxChannels(maxChannels) {}
285 AudioEncoderCap(audio_encoder codec, int minBitRate, int maxBitRate, int minSampleRate, int maxSampleRate, int minChannels, int maxChannels) argument
/frameworks/av/media/libmediaplayerservice/
H A DStagefrightRecorder.cpp1381 int maxChannels = local
1384 if (maxChannels != -1 && mAudioChannels > maxChannels) {
1386 " and will be set to (%d)", mAudioChannels, maxChannels);
1387 mAudioChannels = maxChannels;
/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/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_

Completed in 334 milliseconds