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

1 2 3 4 5

  /external/bluetooth/bluedroid/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/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioNodeInput.cpp 156 unsigned maxChannels = 1; // one channel is the minimum allowed
162 maxChannels = max(maxChannels, output->numberOfChannels());
166 maxChannels = min(maxChannels, static_cast<unsigned>(node()->channelCount()));
168 return maxChannels;
  /external/chromium_org/third_party/webrtc/voice_engine/test/auto_test/
voe_stress_test.cc 228 // Set up, start with maxChannels/2 channels
229 const int maxChannels = 100;
230 VALIDATE_STRESS(maxChannels < 1); // Should always have at least one channel
231 bool* channelState = new bool[maxChannels];
232 memset(channelState, 0, maxChannels * sizeof(bool));
235 for (i = 0; i < (maxChannels / 2); ++i) {
253 if (noOfActiveChannels < maxChannels) {
264 // Delete random channel that's created [0, maxChannels - 1]
269 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 622 int maxChannels = 0;
631 maxChannels = 2;
635 maxChannels = 1;
639 maxChannels = 1;
648 maxChannels = 48;
652 maxChannels = 255;
656 maxChannels = 255;
660 maxChannels = 8;
664 maxChannels = 255;
673 maxChannels = 1
    [all...]
  /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 740 int chMapPos = 0, maxChannels = 0;
747 maxChannels = 3;
759 maxChannels = 2;
764 maxChannels = 1;
774 if (chIdx == maxChannels) {
    [all...]
  /external/bluetooth/bluedroid/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...]
aacenc.cpp 366 hAacEnc->maxChannels = nChannels;
531 hAacEnc->maxChannels,
    [all...]
  /frameworks/base/media/jni/
android_media_MediaProfiles.cpp 142 int maxChannels = sProfiles->getAudioEncoderParamByName("enc.aud.ch.max", encoder);
147 (minChannels == -1 || maxChannels == -1)) {
160 minChannels, maxChannels);
  /external/aac/libAACenc/include/
aacenc_lib.h     [all...]
  /frameworks/av/include/media/
MediaProfiles.h 332 int minChannels, int maxChannels)
336 mMinChannels(minChannels), mMaxChannels(maxChannels) {}
SoundPool.h 170 SoundPool(int maxChannels, const audio_attributes_t* pAttributes);
  /frameworks/base/media/jni/soundpool/
android_media_SoundPool_SoundPoolImpl.cpp 187 jint maxChannels, jobject jaa)
209 SoundPool *ap = new SoundPool(maxChannels, paa);
  /frameworks/av/media/libmedia/
SoundPool.cpp 43 SoundPool::SoundPool(int maxChannels, const audio_attributes_t* pAttributes)
45 ALOGV("SoundPool constructor: maxChannels=%d, attr.usage=%d, attr.flags=0x%x, attr.tags=%s",
46 maxChannels, pAttributes->usage, pAttributes->flags, pAttributes->tags);
49 mMaxChannels = maxChannels;
56 ALOGW_IF(maxChannels != mMaxChannels, "App requested %d channels", maxChannels);
  /frameworks/av/media/libmediaplayerservice/
StagefrightRecorder.cpp     [all...]
  /frameworks/av/services/audioflinger/
AudioResampler.cpp 270 const int maxChannels = quality < DYN_LOW_QUALITY ? 2 : 8;
272 || inChannelCount > maxChannels) {
  /development/ndk/platforms/android-14/include/OMXAL/
OpenMAXAL.h     [all...]

Completed in 271 milliseconds

1 2 3 4 5