HomeSort by relevance Sort by last modified time
    Searched refs:channelConfig (Results 1 - 25 of 45) 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 50 int channelConfig;
53 channelConfig = AudioFormat.CHANNEL_OUT_MONO;
56 channelConfig = AudioFormat.CHANNEL_OUT_STEREO;
59 channelConfig = AudioFormat.CHANNEL_OUT_5POINT1;
68 channelConfig,
77 channelConfig,
89 .setChannelMask(channelConfig)
AudioTrackSurroundTest.java 196 private static AudioTrack createAudioTrack(int sampleRate, int encoding, int channelConfig) {
199 sampleRate, channelConfig,
204 sampleRate, channelConfig,
326 SamplePlayerBase(int sampleRate, int encoding, int channelConfig) {
329 mChannelConfig = channelConfig;
455 SamplePlayerShorts(int sampleRate, int encoding, int channelConfig) {
456 super(sampleRate, encoding, channelConfig);
466 SamplePlayerShorts(int sampleRate, int encoding, int channelConfig, @RawRes int resourceId)
468 super(sampleRate, encoding, channelConfig);
495 SamplePlayerBytes(int sampleRate, int encoding, int channelConfig) {
    [all...]
MediaSyncTest.java 705 int channelConfig = (mediaFormat.getInteger(MediaFormat.KEY_CHANNEL_COUNT) == 1 ?
710 channelConfig,
713 final int frameSizeInBytes = Integer.bitCount(channelConfig)
721 channelConfig,
AudioRecordTest.java     [all...]
AudioTrackTest.java 110 + ", channelConfig="
    [all...]
  /external/webrtc/webrtc/modules/audio_device/android/java/src/org/webrtc/voiceengine/
WebRtcAudioManager.java 245 final int channelConfig;
247 channelConfig = AudioFormat.CHANNEL_OUT_MONO;
249 channelConfig = AudioFormat.CHANNEL_OUT_STEREO;
254 sampleRateInHz, channelConfig, AudioFormat.ENCODING_PCM_16BIT) /
  /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);
  /external/aac/libMpegTPDec/include/
tp_data.h 436 static inline int getNumberOfTotalChannels(int channelConfig) {
437 switch (channelConfig) {
444 return channelConfig;
460 channelConfig) { /* index: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 */
462 return n[channelConfig];
tpdec_lib.h 218 Element structure. \param channelConfig MPEG-4 channel configuration. \return
221 void CProgramConfig_GetDefault(CProgramConfig *pPce, const UINT channelConfig);
  /external/aac/libMpegTPEnc/include/
tp_data.h 436 static inline int getNumberOfTotalChannels(int channelConfig) {
437 switch (channelConfig) {
444 return channelConfig;
460 channelConfig) { /* index: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 */
462 return n[channelConfig];
  /frameworks/base/media/java/android/media/
AudioTrack.java 424 * @param channelConfig describes the configuration of the audio channels.
454 public AudioTrack(int streamType, int sampleRateInHz, int channelConfig, int audioFormat,
457 this(streamType, sampleRateInHz, channelConfig, audioFormat,
480 * @param channelConfig describes the configuration of the audio channels.
512 public AudioTrack(int streamType, int sampleRateInHz, int channelConfig, int audioFormat,
520 .setChannelMask(channelConfig)
    [all...]
AudioRecord.java 267 * @param channelConfig describes the configuration of the audio channels.
281 public AudioRecord(int audioSource, int sampleRateInHz, int channelConfig, int audioFormat,
288 .setChannelMask(getChannelMaskFromLegacyConfig(channelConfig,
    [all...]
  /frameworks/base/core/java/android/speech/tts/
BlockingAudioTrack.java 211 final int channelConfig = getChannelConfig(mChannelCount);
214 = AudioTrack.getMinBufferSize(mSampleRateInHz, channelConfig, mAudioFormat);
218 .setChannelMask(channelConfig)
PlaybackSynthesisCallback.java 137 int channelConfig = BlockingAudioTrack.getChannelConfig(channelCount);
140 if (channelConfig == 0) {
  /external/aac/libAACdec/include/
aacdecoder_lib.h     [all...]
  /frameworks/base/media/java/android/media/projection/
MediaProjection.java 147 int sampleRateInHz, int channelConfig,
  /external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
RecorderRunnable.java 88 RecorderRunnable(PipeShort latencyPipe, int samplingRate, int channelConfig, int audioFormat,
95 mChannelConfig = channelConfig;
  /external/aac/libAACdec/src/
aacdecoder.cpp 502 \channelConfig Current channel configuration
511 const UINT channelConfig,
528 if (!CProgramConfig_IsValid(pce) && (channelConfig > 0)) {
530 CProgramConfig_GetDefault(pce, channelConfig);
542 if (channelConfig == 0) {
    [all...]
  /external/aac/libMpegTPDec/src/
tpdec_asc.cpp 442 void CProgramConfig_GetDefault(CProgramConfig *pPce, const UINT channelConfig) {
450 switch (channelConfig) {
496 pPce->BackElementIsCpe[0] = (channelConfig > 4) ? 1 : 0;
497 pPce->NumChannels += (channelConfig > 4) ? 2 : 1;
498 pPce->NumEffectiveChannels += (channelConfig > 4) ? 2 : 1;
549 * \brief get implicit audio channel type for given channelConfig and MPEG
551 * \param channelConfig MPEG channelConfiguration from 1 upto 14
557 UINT channelConfig,
563 switch (channelConfig) {
640 int CProgramConfig_LookupElement(CProgramConfig *pPce, UINT channelConfig,
    [all...]
  /frameworks/base/tests/SoundTriggerTestApp/src/com/android/test/soundtrigger/
SoundTriggerTestService.java 580 int channelConfig = AudioFormat.CHANNEL_OUT_MONO;
582 channelConfig = AudioFormat.CHANNEL_OUT_STEREO;
589 format.getSampleRate(), channelConfig, format.getEncoding(),
  /packages/apps/Bluetooth/src/com/android/bluetooth/a2dpsink/
A2dpSinkStateMachine.java     [all...]
  /developers/build/prebuilts/androidtv/sample-inputs/app/libs/
exoplayer_dev-hls_20150123.jar 
  /external/robolectric/v1/lib/main/
android.jar 

Completed in 1730 milliseconds

1 2