Searched refs:audio (Results 51 - 75 of 113) sorted by relevance

12345

/frameworks/av/media/libstagefright/codecs/flac/enc/
H A DSoftFlacEncoder.cpp119 def.format.audio.cMIMEType = const_cast<char *>("audio/raw");
120 def.format.audio.pNativeRender = NULL;
121 def.format.audio.bFlagErrorConcealment = OMX_FALSE;
122 def.format.audio.eEncoding = OMX_AUDIO_CodingPCM;
138 def.format.audio.cMIMEType = const_cast<char *>(MEDIA_MIMETYPE_AUDIO_FLAC);
139 def.format.audio.pNativeRender = NULL;
140 def.format.audio.bFlagErrorConcealment = OMX_FALSE;
141 def.format.audio.eEncoding = OMX_AUDIO_CodingFLAC;
/frameworks/av/media/libstagefright/codecs/vorbis/dec/
H A DSoftVorbis.cpp91 def.format.audio.cMIMEType =
94 def.format.audio.pNativeRender = NULL;
95 def.format.audio.bFlagErrorConcealment = OMX_FALSE;
96 def.format.audio.eEncoding = OMX_AUDIO_CodingAAC;
111 def.format.audio.cMIMEType = const_cast<char *>("audio/raw");
112 def.format.audio.pNativeRender = NULL;
113 def.format.audio.bFlagErrorConcealment = OMX_FALSE;
114 def.format.audio.eEncoding = OMX_AUDIO_CodingPCM;
/frameworks/base/voip/jni/rtp/
H A DAndroid.mk54 $(call include-path-for, audio-effects)
/frameworks/wilhelm/src/android/
H A DOutputMix_to_android.cpp21 #include <system/audio.h>
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DRTSPSource.cpp99 sp<MetaData> NuPlayer::RTSPSource::getFormatMeta(bool audio) { argument
100 sp<AnotherPacketSource> source = getSource(audio);
121 ALOGV("audio track doesn't have enough data yet. (%.2f secs buffered)",
139 bool audio, sp<ABuffer> *accessUnit) {
148 sp<AnotherPacketSource> source = getSource(audio);
162 sp<AnotherPacketSource> NuPlayer::RTSPSource::getSource(bool audio) { argument
165 audio ? ATSParser::AUDIO : ATSParser::VIDEO);
170 return audio ? mAudioTrack : mVideoTrack;
301 sp<AnotherPacketSource> source = getSource(false /* audio */);
306 source = getSource(true /* audio */);
138 dequeueAccessUnit( bool audio, sp<ABuffer> *accessUnit) argument
[all...]
/frameworks/av/include/media/
H A DIMediaPlayerService.h26 #include <system/audio.h>
67 // codecs and audio devices usage tracking for the battery app
69 // tracking audio codec
78 // start to play an audio on an audio device
80 // stop/pause the audio playback
82 // audio is rounted to speaker
84 // audio is rounted to devices other than speaker
H A DMediaRecorderBase.h23 #include <system/audio.h>
H A DIMediaPlayer.h24 #include <system/audio.h>
H A DAudioRecord.h24 #include <system/audio.h>
97 * - NO_INIT: audio server or audio hardware not initialized
113 * Unspecified values are set to the audio hardware's current
118 * inputSource: Select the audio input to record to (e.g. AUDIO_SOURCE_DEFAULT).
155 * - NO_INIT: audio server or audio hardware not initialized
179 * and audio hardware driver.
261 /* returns a handle on the audio input used by this AudioRecord.
267 * handle on audio hardwar
[all...]
H A DAudioSystem.h24 #include <system/audio.h>
53 // mute/unmute audio outputs
67 // set audio mode in audio hardware
76 // set/get audio hardware parameters. The function accepts a list of parameters
96 // returns the number of frames per audio HAL write buffer. Corresponds to
101 // returns the audio output stream latency in ms. Corresponds to
120 // return the number of audio frames written by AudioFlinger to audio HAL and
121 // audio ds
[all...]
H A DIAudioFlinger.h30 #include <system/audio.h>
55 /* create an audio track and registers it with AudioFlinger.
84 /* query the audio hardware state. This state never changes,
97 /* set/get the audio hardware state. This will probably be used by
117 // set audio mode
128 // register a current process for audio output change notifications
131 // retrieve the audio recording buffer size
/frameworks/av/include/media/stagefright/
H A DAudioSource.h27 #include <system/audio.h>
/frameworks/av/media/libstagefright/include/
H A DFragmentedMP4Parser.h49 sp<AMessage> getFormat(bool audio, bool synchronous = false);
50 status_t dequeueAccessUnit(bool audio, sp<ABuffer> *accessUnit, bool synchronous = false);
51 status_t seekTo(bool audio, int64_t timeUs);
/frameworks/av/media/libstagefright/
H A DFragmentedMP4Extractor.cpp52 FragmentedMPEG4Source(bool audio,
104 bool hasVideo = mParser->getFormat(false /* audio */, true /* synchronous */) != NULL;
105 bool hasAudio = mParser->getFormat(true /* audio */, true /* synchronous */) != NULL;
113 mFileMetaData->setCString(kKeyMIMEType, "audio/mp4");
115 ALOGE("no audio and no video, no idea what file type this is");
117 // tracks are numbered such that video track is first, audio track is second
189 bool audio,
196 mIsAudioTrack(audio),
188 FragmentedMPEG4Source( bool audio, const sp<MetaData> &format, const sp<FragmentedMP4Parser> &parser, const sp<FragmentedMP4Extractor> &extractor) argument
/frameworks/av/cmds/stagefright/
H A Daudioloop.cpp14 #include <system/audio.h>
/frameworks/av/media/libeffects/downmix/
H A DEffectDownmix.h22 #include <system/audio.h>
/frameworks/wilhelm/src/itf/
H A DIAndroidEffect.cpp21 #include <system/audio.h>
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
H A DVideoEditorHelper.java294 AudioTrack audio = null;
296 audio = new AudioTrack(videoEditor, audioTrackId, filename);
298 audioTrackId, audio);
306 return audio;
/frameworks/base/core/java/android/speech/srec/
H A DRecognizer.java55 * // create and start audio input
56 * InputStream audio = new MicrophoneInputStream(11025, 11025*5);
87 * // put more audio in the Recognizer
88 * recognizer.putAudio(audio);
100 * // stop the audio device
101 * audio.close();
159 * A separate config file is needed for each audio sample rate.
265 * Process some audio and return the current status.
288 * Put audio samples into the <code>Recognizer</code>.
289 * @param buf holds the audio sample
304 putAudio(InputStream audio) argument
[all...]
/frameworks/av/media/libmedia/
H A DAudioParameter.cpp22 #include <hardware/audio.h>
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/
H A DMediaAudioManagerTest.java17 package com.android.mediaframeworktest.functional.audio;
148 // the audio focus request is async, so wait a bit to verify it had the expected effect
168 //Test case 1: test audio focus listener loses audio focus:
179 //Test case 2: test audio focus listener loses audio focus:
191 //Test case 3: test audio focus listener loses audio focus:
203 //Test case 4: test audio focus registering and use over 3000 iterations
213 assertTrue("audio focu
[all...]
H A DMediaBassBoostTest.java17 package com.android.mediaframeworktest.functional.audio;
H A DMediaVirtualizerTest.java17 package com.android.mediaframeworktest.functional.audio;
/frameworks/av/media/libmediaplayerservice/
H A DMediaRecorderClient.cpp35 #include <system/audio.h>
H A DStagefrightRecorder.h25 #include <system/audio.h>

Completed in 183 milliseconds

12345