HomeSort by relevance Sort by last modified time
    Searched refs:channelConfig (Results 1 - 22 of 22) sorted by null

  /frameworks/base/media/java/android/media/
AudioTrack.java 248 * @param channelConfig describes the configuration of the audio channels.
264 public AudioTrack(int streamType, int sampleRateInHz, int channelConfig, int audioFormat,
267 this(streamType, sampleRateInHz, channelConfig, audioFormat,
288 * @param channelConfig describes the configuration of the audio channels.
305 public AudioTrack(int streamType, int sampleRateInHz, int channelConfig, int audioFormat,
315 audioParamCheck(streamType, sampleRateInHz, channelConfig, audioFormat, mode);
363 int channelConfig, int audioFormat, int mode) {
389 mChannelConfiguration = channelConfig;
391 switch (channelConfig) {
404 if (!isMultichannelConfigSupported(channelConfig)) {
    [all...]
AudioRecord.java 203 * @param channelConfig describes the configuration of the audio channels.
217 public AudioRecord(int audioSource, int sampleRateInHz, int channelConfig, int audioFormat,
228 audioParamCheck(audioSource, sampleRateInHz, channelConfig, audioFormat);
260 int channelConfig, int audioFormat) {
282 mChannelConfiguration = channelConfig;
284 switch (channelConfig) {
447 * @param channelConfig describes the configuration of the audio channels.
460 static public int getMinBufferSize(int sampleRateInHz, int channelConfig, int audioFormat) {
462 switch(channelConfig) {
  /external/aac/libMpegTPDec/include/
tp_data.h 325 static inline int getNumberOfTotalChannels(int channelConfig)
327 if (channelConfig > 0 && channelConfig < 8)
328 return (channelConfig == 7)?8:channelConfig;
334 int getNumberOfEffectiveChannels(const int channelConfig)
337 return n[channelConfig];
tpdec_lib.h 209 const UINT channelConfig,
  /external/aac/libMpegTPEnc/include/
tp_data.h 325 static inline int getNumberOfTotalChannels(int channelConfig)
327 if (channelConfig > 0 && channelConfig < 8)
328 return (channelConfig == 7)?8:channelConfig;
334 int getNumberOfEffectiveChannels(const int channelConfig)
337 return n[channelConfig];
  /frameworks/av/media/libstagefright/rtsp/
ARTPAssembler.h 52 unsigned channelConfig,
ARTPAssembler.cpp 81 unsigned channelConfig,
110 | (channelConfig >> 2);
112 dst[3] = ((channelConfig & 3) << 6) | (frameLength >> 11);
  /frameworks/base/core/java/android/speech/tts/
PlaybackSynthesisCallback.java 143 int channelConfig = BlockingAudioTrack.getChannelConfig(channelCount);
144 if (channelConfig == 0) {
BlockingAudioTrack.java 193 final int channelConfig = getChannelConfig(mChannelCount);
196 = AudioTrack.getMinBufferSize(mSampleRateInHz, channelConfig, mAudioFormat);
199 AudioTrack audioTrack = new AudioTrack(mStreamType, mSampleRateInHz, channelConfig,
  /external/aac/libAACdec/src/
aacdecoder.cpp 405 UINT channelConfig,
424 && ( (channelConfig == 6 && (tmpPce->NumChannels == 6))
425 || (channelConfig == 5 && (tmpPce->NumChannels == 5))
426 || (channelConfig == 0 && (tmpPce->NumChannels == pce->NumChannels)) )
668 pStreamInfo->channelConfig = -1;
869 self->streamInfo.channelConfig = asc->m_channelConfiguration;
    [all...]
  /external/aac/libMpegTPDec/src/
tpdec_asc.cpp 211 * \brief get implicit audio channel type for given channelConfig and MPEG ordered channel index
212 * \param channelConfig MPEG channelConfiguration from 1 upto 7
219 UINT channelConfig,
227 switch (channelConfig) {
270 const UINT channelConfig,
281 if (channelConfig > 0)
295 getImplicitAudioChannelTypeAndIndex(&chType[channelIdx], &chIndex[channelIdx], channelConfig, channelIdx);
  /external/aac/libAACdec/include/
aacdecoder_lib.h 502 INT channelConfig; /*!< Channel configuration (0: PCE defined, 1: mono, 2: stereo, ... */
    [all...]
  /external/aac/libMpegTPEnc/src/
tpenc_lib.cpp 171 * \param channelConfig Channel Configuration derived from Channel Mode
179 const int channelConfig,
188 switch ( channelConfig ) {
  /cts/tests/tests/media/src/android/media/cts/
AudioTrackTest.java 90 + ", channelConfig="
    [all...]
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/4/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 
  /prebuilts/sdk/8/
android.jar 
  /prebuilts/sdk/12/
android.jar 

Completed in 325 milliseconds