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

1 2

  /frameworks/base/core/java/android/bluetooth/
BluetoothAudioConfig.java 35 public BluetoothAudioConfig(int sampleRate, int channelConfig, int audioFormat) {
37 mChannelConfig = channelConfig;
71 int channelConfig = in.readInt();
73 return new BluetoothAudioConfig(sampleRate, channelConfig, audioFormat);
  /cts/tests/tests/media/src/android/media/cts/
NonBlockingAudioTrack.java 52 int channelConfig;
55 channelConfig = AudioFormat.CHANNEL_OUT_MONO;
58 channelConfig = AudioFormat.CHANNEL_OUT_STEREO;
61 channelConfig = AudioFormat.CHANNEL_OUT_5POINT1;
70 channelConfig,
79 channelConfig,
91 .setChannelMask(channelConfig)
AudioTrackTest.java 100 + ", channelConfig="
    [all...]
  /frameworks/base/media/java/android/media/
AudioTrack.java 293 * @param channelConfig describes the configuration of the audio channels.
313 public AudioTrack(int streamType, int sampleRateInHz, int channelConfig, int audioFormat,
316 this(streamType, sampleRateInHz, channelConfig, audioFormat,
337 * @param channelConfig describes the configuration of the audio channels.
355 public AudioTrack(int streamType, int sampleRateInHz, int channelConfig, int audioFormat,
363 .setChannelMask(channelConfig)
484 int channelConfig, int audioFormat, int mode) {
495 mChannelConfiguration = channelConfig;
497 switch (channelConfig) {
510 if (!isMultichannelConfigSupported(channelConfig)) {
    [all...]
AudioRecord.java 209 * @param channelConfig describes the configuration of the audio channels.
223 public AudioRecord(int audioSource, int sampleRateInHz, int channelConfig, int audioFormat,
230 .setChannelMask(getChannelMaskFromLegacyConfig(channelConfig,
541 * @param channelConfig describes the configuration of the audio channels.
553 static public int getMinBufferSize(int sampleRateInHz, int channelConfig, int audioFormat) {
555 switch (channelConfig) {
    [all...]
  /external/aac/libMpegTPDec/include/
tp_data.h 328 static inline int getNumberOfTotalChannels(int channelConfig)
330 switch (channelConfig) {
333 return channelConfig;
344 int getNumberOfEffectiveChannels(const int channelConfig)
347 return n[channelConfig];
tpdec_lib.h 206 \param channelConfig MPEG-4 channel configuration.
210 const UINT channelConfig );
231 UINT channelConfig,
  /external/aac/libMpegTPEnc/include/
tp_data.h 328 static inline int getNumberOfTotalChannels(int channelConfig)
330 switch (channelConfig) {
333 return channelConfig;
344 int getNumberOfEffectiveChannels(const int channelConfig)
347 return n[channelConfig];
  /external/chromium_org/media/base/android/java/src/org/chromium/media/
AudioRecordInput.java 135 int channelConfig;
137 channelConfig = AudioFormat.CHANNEL_IN_MONO;
139 channelConfig = AudioFormat.CHANNEL_IN_STEREO;
158 int minBufferSize = AudioRecord.getMinBufferSize(mSampleRate, channelConfig, audioFormat);
171 channelConfig,
AudioManagerAndroid.java 475 int channelConfig;
477 channelConfig = AudioFormat.CHANNEL_IN_MONO;
479 channelConfig = AudioFormat.CHANNEL_IN_STEREO;
484 sampleRate, channelConfig, AudioFormat.ENCODING_PCM_16BIT) / 2 / channels;
495 int channelConfig;
497 channelConfig = AudioFormat.CHANNEL_OUT_MONO;
499 channelConfig = AudioFormat.CHANNEL_OUT_STEREO;
504 sampleRate, channelConfig, AudioFormat.ENCODING_PCM_16BIT) / 2 / channels;
    [all...]
MediaCodecBridge.java 592 int channelConfig = getAudioFormat(channelCount);
595 int minBufferSize = AudioTrack.getMinBufferSize(sampleRate, channelConfig,
597 mAudioTrack = new AudioTrack(AudioManager.STREAM_MUSIC, sampleRate, channelConfig,
  /frameworks/av/media/libstagefright/rtsp/
ARTPAssembler.h 52 unsigned channelConfig,
ARTPAssembler.cpp 75 unsigned channelConfig,
104 | (channelConfig >> 2);
106 dst[3] = ((channelConfig & 3) << 6) | (frameLength >> 11);
  /frameworks/base/core/java/android/speech/tts/
PlaybackSynthesisCallback.java 126 int channelConfig = BlockingAudioTrack.getChannelConfig(channelCount);
129 if (channelConfig == 0) {
BlockingAudioTrack.java 212 final int channelConfig = getChannelConfig(mChannelCount);
215 = AudioTrack.getMinBufferSize(mSampleRateInHz, channelConfig, mAudioFormat);
219 .setChannelMask(channelConfig)
  /external/aac/libMpegTPDec/src/
tpdec_asc.cpp 364 const UINT channelConfig )
372 switch (channelConfig) {
418 pPce->BackElementIsCpe[0] = (channelConfig>4) ? 1 : 0;
419 pPce->NumChannels += (channelConfig>4) ? 2 : 1;
420 pPce->NumEffectiveChannels += (channelConfig>4) ? 2 : 1;
469 * \brief get implicit audio channel type for given channelConfig and MPEG ordered channel index
470 * \param channelConfig MPEG channelConfiguration from 1 upto 14
478 UINT channelConfig,
486 switch (channelConfig) {
565 UINT channelConfig,
    [all...]
  /external/aac/libAACdec/src/
aacdecoder.cpp 415 \channelConfig Current channel configuration
424 const UINT channelConfig,
445 if ( !pce->isValid && (channelConfig > 0) ) {
447 CProgramConfig_GetDefault( pce, channelConfig );
459 if (channelConfig == 0) {
706 pStreamInfo->channelConfig = -1;
941 self->streamInfo.channelConfig = asc->m_channelConfiguration;
    [all...]
  /external/aac/libAACdec/include/
aacdecoder_lib.h     [all...]
  /frameworks/base/media/java/android/media/projection/
MediaProjection.java 147 int sampleRateInHz, int channelConfig,
  /external/aac/libMpegTPEnc/src/
tpenc_lib.cpp 177 * \param channelConfig Channel Configuration derived from Channel Mode
185 const int channelConfig,
194 switch ( channelConfig ) {
  /packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/
A2dpSinkStateMachine.java 736 int channelConfig = (channelCount == 1 ? AudioFormat.CHANNEL_IN_MON
    [all...]
  /external/chromium_org/third_party/android_platform/webview/
frameworks.jar 
  /external/robolectric/lib/main/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 

Completed in 645 milliseconds

1 2