HomeSort by relevance Sort by last modified time
    Searched refs:maxChannels (Results 1 - 25 of 119) sorted by null

1 2 3 4 5

  /system/bt/embdrv/sbc/decoder/srce/
alloc.c 30 OI_UINT8 maxChannels,
38 if (maxChannels < 1 || maxChannels > 2) {
42 if (pcmStride < 1 || pcmStride > maxChannels) {
46 common->maxChannels = maxChannels;
51 subdataSize = maxChannels * sizeof(common->subdata[0]) * SBC_MAX_BANDS * SBC_MAX_BLOCKS;
56 filterBufferCount = (codecDataBytes - subdataSize) / (sizeof(common->filterBuffer[0][0]) * SBC_MAX_BANDS * maxChannels);
69 for (i = 0; i < maxChannels; ++i) {
decoder-sbc.c 226 OI_UINT8 maxChannels,
230 return internal_DecoderReset(context, decoderData, decoderDataBytes, maxChannels, pcmStride, enhanced);
270 if (context->common.frameInfo.nrof_channels > context->common.maxChannels) {
decoder-private.c 45 OI_BYTE maxChannels,
65 status = OI_CODEC_SBC_Alloc(&context->common, decoderData, decoderDataBytes, maxChannels, pcmStride);
  /external/webrtc/webrtc/voice_engine/test/auto_test/
voe_stress_test.cc 227 // Set up, start with maxChannels/2 channels
228 const int maxChannels = 100;
229 VALIDATE_STRESS(maxChannels < 1); // Should always have at least one channel
230 bool* channelState = new bool[maxChannels];
231 memset(channelState, 0, maxChannels * sizeof(bool));
234 for (i = 0; i < (maxChannels / 2); ++i) {
252 if (noOfActiveChannels < maxChannels) {
263 // Delete random channel that's created [0, maxChannels - 1]
268 maxChannels);
  /external/aac/libPCMutils/include/
limiter.h 127 * maxChannels: maximum and initial number of channels *
134 unsigned int maxChannels,
191 * nChannels: number of channels ( <= maxChannels specified on create) *
  /external/aac/libSBRenc/src/
sbr.h 159 INT maxChannels;
  /frameworks/base/media/java/android/media/
EncoderCapabilities.java 91 int minChannels, int maxChannels) {
98 mMaxChannels = maxChannels;
MediaCodecInfo.java     [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/scanner/
NoBandChannelHelper.java 69 * 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) {
152 if (mAllChannels || mChannels.size() > maxChannels) {
KnownBandsChannelHelper.java 247 public void fillBucketSettings(WifiNative.BucketSettings bucketSettings, int maxChannels) {
248 if ((mChannels.size() > maxChannels || mAllBands == mExactBands)
BackgroundScanScheduler.java 197 public WifiNative.BucketSettings createBucketSettings(int bucketId, int maxChannels) {
241 mChannelCollection.fillBucketSettings(bucketSettings, maxChannels);
342 public void setMaxChannelsPerBucket(int maxChannels) {
343 mMaxChannelsPerBucket = maxChannels;
    [all...]
ChannelHelper.java 218 * Store the channels in this collection in the supplied BucketSettings. If maxChannels is
222 public abstract void fillBucketSettings(WifiNative.BucketSettings bucket, int maxChannels);
  /external/aac/libPCMutils/src/
limiter.cpp 99 unsigned int channels, maxChannels;
118 unsigned int maxChannels,
137 limiter->delayBuf = (FIXP_DBL*)FDKcalloc(attack * maxChannels, sizeof(FIXP_DBL));
162 limiter->channels = maxChannels;
163 limiter->maxChannels = maxChannels;
397 if (nChannels > limiter->maxChannels) return TDLIMIT_INVALID_PARAMETER;
pcmutils_lib.cpp 745 int chMapPos = 0, maxChannels = 0;
752 maxChannels = 3;
764 maxChannels = 2;
769 maxChannels = 1;
779 if (chIdx == maxChannels) {
    [all...]
  /system/bt/embdrv/sbc/decoder/include/
oi_codec_sbc.h 172 OI_UINT8 maxChannels;
236 OI_UINT8 maxChannels,
oi_codec_sbc_private.h 171 OI_BYTE maxChannels,
222 OI_UINT8 maxChannels,
  /external/aac/libAACenc/src/
aacEnc_ram.h 148 INT maxChannels; /* used while allocation */
aacenc_lib.cpp     [all...]
  /frameworks/base/media/jni/
android_media_MediaProfiles.cpp 144 int maxChannels = sProfiles->getAudioEncoderParamByName("enc.aud.ch.max", encoder);
149 (minChannels == -1 || maxChannels == -1)) {
162 minChannels, maxChannels);
  /external/aac/libAACenc/include/
aacenc_lib.h     [all...]
  /frameworks/av/include/media/
MediaProfiles.h 288 int minChannels, int maxChannels)
292 mMinChannels(minChannels), mMaxChannels(maxChannels) {}
  /frameworks/base/media/jni/soundpool/
android_media_SoundPool.cpp 173 jint maxChannels, jobject jaa)
195 SoundPool *ap = new SoundPool(maxChannels, paa);
SoundPool.cpp 47 SoundPool::SoundPool(int maxChannels, const audio_attributes_t* pAttributes)
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);
    [all...]
SoundPool.h 164 SoundPool(int maxChannels, const audio_attributes_t* pAttributes);
  /frameworks/av/services/audioflinger/
AudioResampler.cpp 268 const int maxChannels = quality < DYN_LOW_QUALITY ? 2 : 8;
270 || inChannelCount > maxChannels) {

Completed in 852 milliseconds

1 2 3 4 5