Searched refs:numChannels (Results 1 - 24 of 24) sorted by relevance

/external/aac/libSYS/include/
H A Dwav_file.h126 USHORT numChannels; member in struct:WAV_HEADER
180 * \param numChannels Desired number of audio channels of the resulting WAV file.
185 INT WAV_OutputOpen(HANDLE_WAV *pWav, const char *outputFilename, INT sampleRate, INT numChannels, INT bitsPerSample);
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/
H A DFlatManifestWriterImpl.java454 int numChannels = 0;
458 numChannels += 1;
463 numChannels += 2;
469 numChannels += 2;
476 numChannels += 1;
481 numChannels += 1;
486 numChannels += 2;
492 numChannels += 2;
498 numChannels += 1;
503 numChannels
[all...]
/external/srec/audio/AudioIn/UNIX/src/
H A Daudioinwrapper.cpp61 static int numChannels = 1; variable
71 numChannels = channel_count;
102 (numChannels > 1) ? AUDIO_CHANNEL_IN_STEREO : AUDIO_CHANNEL_IN_MONO,
/external/aac/libAACdec/src/
H A Daacdec_drc.h144 int numChannels );
H A Daacdecoder_lib.cpp797 self->streamInfo.numChannels = self->aacChannels;
833 &self->streamInfo.numChannels,
875 &self->streamInfo.numChannels,
H A Daacdecoder.cpp679 pStreamInfo->numChannels = 0;
1576 self->streamInfo.numChannels = aacChannels;
/external/aac/libSBRenc/include/
H A Dsbr_encoder.h136 UCHAR numChannels; /*!< */ member in struct:__anon227
280 * \param numChannels the amount of audio channels
285 UINT sbrEncoder_LimitBitRate(UINT bitRate, UINT numChannels, UINT coreSampleRate, AUDIO_OBJECT_TYPE aot);
295 * \param numChannels Input: Encoder input channels. output: core encoder channels.
309 INT *numChannels,
/external/aac/libSBRenc/src/
H A Dsbr_encoder.cpp169 UINT numChannels,/*! the number of channels for the core coder */
189 if ( numChannels == sbrTuningTable [i].numChannels
358 UINT numChannels, /*! the core coder number of channels */
373 config->codecSettings.nChannels = numChannels;
391 bitRate *= numChannels;
393 if (numChannels==1) {
400 idx = getSbrTuningTableIndex(bitRate,numChannels,fsCore, core, NULL);
429 if (numChannels == 1) {
1686 UINT sbrEncoder_LimitBitRate(UINT bitRate, UINT numChannels, UIN argument
168 getSbrTuningTableIndex(UINT bitrate, UINT numChannels, UINT sampleRate, AUDIO_OBJECT_TYPE core, UINT *pBitRateClosest ) argument
356 FDKsbrEnc_AdjustSbrSettings(const sbrConfigurationPtr config, UINT bitRate, UINT numChannels, UINT fsCore, UINT transFac, UINT standardBitrate, UINT vbrMode, UINT useSpeechConfig, UINT lcsMode, UINT bParametricStereo, AUDIO_OBJECT_TYPE core) argument
1713 sbrEncoder_Init( HANDLE_SBR_ENCODER hSbrEncoder, SBR_ELEMENT_INFO elInfo[(6)], int noElements, INT_PCM *inputBuffer, INT *coreBandwidth, INT *inputBufferOffset, INT *numChannels, INT *sampleRate, INT *frameLength, AUDIO_OBJECT_TYPE *aot, int *delay, int transformFactor, ULONG statesInitFlag ) argument
[all...]
/external/aac/libSBRdec/include/
H A Dsbrdecoder.h298 * \param numChannels Pointer to a buffer holding the number of channels in time data buffer.
309 int *numChannels,
/external/sonivox/arm-fm-22k/host_src/
H A Deas_main.c123 wFile = WaveFileCreate(outputFile, pLibConfig->numChannels, pLibConfig->sampleRate, sizeof(EAS_PCM) * 8);
136 for (i = 0, p = buffer; i < NUM_BUFFERS; i++, p+= pLibConfig->mixBufferSize * pLibConfig->numChannels)
280 bufferSize = pLibConfig->mixBufferSize * pLibConfig->numChannels * (EAS_I32)sizeof(EAS_PCM) * NUM_BUFFERS;
438 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_INFO, "\tNumber of channels: %d\n", pLibConfig->numChannels); */ }
H A Deas.h54 EAS_I32 numChannels; member in struct:__anon12741
/external/sonivox/arm-hybrid-22k/host_src/
H A Deas_main.c123 wFile = WaveFileCreate(outputFile, pLibConfig->numChannels, pLibConfig->sampleRate, sizeof(EAS_PCM) * 8);
136 for (i = 0, p = buffer; i < NUM_BUFFERS; i++, p+= pLibConfig->mixBufferSize * pLibConfig->numChannels)
280 bufferSize = pLibConfig->mixBufferSize * pLibConfig->numChannels * (EAS_I32)sizeof(EAS_PCM) * NUM_BUFFERS;
438 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_INFO, "\tNumber of channels: %d\n", pLibConfig->numChannels); */ }
H A Deas.h54 EAS_I32 numChannels; member in struct:__anon12791
/external/sonivox/arm-wt-22k/host_src/
H A Deas_main.c126 wFile = WaveFileCreate(outputFile, pLibConfig->numChannels, pLibConfig->sampleRate, sizeof(EAS_PCM) * 8);
139 for (i = 0, p = buffer; i < NUM_BUFFERS; i++, p+= pLibConfig->mixBufferSize * pLibConfig->numChannels)
283 bufferSize = pLibConfig->mixBufferSize * pLibConfig->numChannels * (EAS_I32)sizeof(EAS_PCM) * NUM_BUFFERS;
441 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_INFO, "\tNumber of channels: %d\n", pLibConfig->numChannels); */ }
H A Deas.h54 EAS_I32 numChannels; member in struct:__anon12842
/external/aac/libSYS/src/
H A Dwav_file.cpp162 FDKfread_EL(&(wav->header.numChannels), 2, 1, wav->fp);
380 * \param numChannels desired number of audio channels of the resulting WAV file
386 INT WAV_OutputOpen(HANDLE_WAV *pWav, const char *outputFilename, INT sampleRate, INT numChannels, INT bitsPerSample) argument
413 wav->header.numChannels = LittleEndian16((SHORT)numChannels);
414 wav->header.blockAlign = LittleEndian16((SHORT)(numChannels * (bitsPerSample >> 3)));
/external/aac/libAACdec/include/
H A Daacdecoder_lib.h221 While the members sampleRate, frameSize and numChannels might be quite self explaining,
225 CStreamInfo::numChannels cells. Each cell of pChannelType indicates the channel type, described in
259 CStreamInfo::numChannels = 2
281 CStreamInfo::numChannels = 6
321 CStreamInfo::numChannels = 3
494 INT numChannels; /*!< The number of output audio channels in the decoded and interleaved PCM audio signal. */ member in struct:__anon3
/external/aac/libPCMutils/src/
H A Dpcmutils_lib.cpp272 const INT numChannels, /* in */
293 for (ch = 0; ch < numChannels; ch += 1) {
406 int grpIdx, ch = 0, numChannels = 0; local
427 numChannels += numChInGrp[grpIdx];
431 pChannelMap = channelMapping[numChannels-1];
271 getChannelMode( const INT numChannels, const AUDIO_CHANNEL_TYPE channelType[], const UCHAR channelIndices[], UCHAR offsetTable[PCM_DMX_MAX_CHANNELS] ) argument
/external/sonivox/jet_tools/JetCreator/
H A Deas.py540 ('numChannels', c_long),
601 AudioBufferType = c_ubyte * (2 * self.config.mixBufferSize * self.config.numChannels)
611 eas_logger.debug("libVersion=%08x, maxVoices=%d, numChannels=%d, sampleRate = %d, mixBufferSize=%d" %
612 (self.config.libVersion, self.config.maxVoices, self.config.numChannels, self.config.sampleRate, self.config.mixBufferSize))
724 stream.setparams((self.config.numChannels, 2, self.config.sampleRate, 0, 'NONE', None))
904 AudioBufferType = c_ubyte * (2 * buf_size * self.config.numChannels)
/external/aac/libSBRdec/src/
H A Dsbrdecoder.cpp1370 int *numChannels,
1381 int numCoreChannels = *numChannels;
1462 /* Update numChannels and samplerate */
1463 *numChannels = numSbrChannels;
1368 sbrDecoder_Apply( HANDLE_SBRDECODER self, INT_PCM *timeData, int *numChannels, int *sampleRate, const UCHAR channelMapping[(6)], const int interleaved, const int coreDecodedOk, UCHAR *psDecoded ) argument
/external/qemu/distrib/sdl-1.2.15/src/audio/macrom/
H A DSDL_romaudio.c243 header.numChannels = spec->channels;
/external/quake/quake/src/WinQuake/
H A Dsnd_android.cpp157 pcm.numChannels = 2;
/external/webkit/Source/WebCore/platform/graphics/
H A DGraphicsContext3D.cpp1373 int numChannels = (sourceDataFormat == SourceFormatRGBA32F ? 4 : 2); local
1374 memcpy(destinationData, sourceData, width * height * numChannels * sizeof(float));
/external/sonivox/arm-wt-22k/jetcreator_lib_src/darwin-x86/
H A DEASLib.c553 pBuf->uOutBufferLength /= pConfig->numChannels;

Completed in 904 milliseconds