Searched defs:AudioTrack (Results 1 - 3 of 3) sorted by relevance

/frameworks/av/media/libmedia/
H A DAudioTrack.cpp19 #define LOG_TAG "AudioTrack"
27 #include <media/AudioTrack.h>
55 status_t AudioTrack::getMinFrameCount(
104 ALOGE("AudioTrack::getMinFrameCount failed for streamType %d, sampleRate %d",
115 AudioTrack::AudioTrack() function in class:android::AudioTrack
128 AudioTrack::AudioTrack( function in class:android::AudioTrack
156 AudioTrack::AudioTrack( function in class:android::AudioTrack
[all...]
/frameworks/av/include/media/
H A DAudioTrack.h36 class AudioTrack : public RefBase class in namespace:android
40 /* Events used by AudioTrack callback function (callback_t).
41 * Keep in sync with frameworks/base/media/java/android/media/AudioTrack.java NATIVE_EVENT_*.
56 // Not currently used by android.media.AudioTrack.
98 * event: type of event notified (see enum AudioTrack::event_type).
101 * - EVENT_MORE_DATA: pointer to AudioTrack::Buffer struct. The callback must not write
117 * an AudioTrack object.
130 /* How data is transferred to AudioTrack
140 /* Constructs an uninitialized AudioTrack. No connection with
143 AudioTrack();
[all...]
/frameworks/base/media/java/android/media/
H A DAudioTrack.java44 * The AudioTrack class manages and plays a single audio resource for Java applications.
46 * achieved by "pushing" the data to the AudioTrack object using one of the
50 * <p>An AudioTrack instance can operate under two modes: static or streaming.<br>
51 * In Streaming mode, the application writes a continuous stream of data to the AudioTrack, using
68 * <p>Upon creation, an AudioTrack object initializes its associated audio buffer.
69 * The size of this buffer, specified during the construction, determines how long an AudioTrack
71 * For an AudioTrack using the static mode, this size is the maximum size of the sound that can
76 * AudioTrack is not final and thus permits subclasses, but such use is not recommended.
78 public class AudioTrack class
97 /** Maximum value for AudioTrack channe
313 public AudioTrack(int streamType, int sampleRateInHz, int channelConfig, int audioFormat, method in class:AudioTrack
355 public AudioTrack(int streamType, int sampleRateInHz, int channelConfig, int audioFormat, method in class:AudioTrack
391 public AudioTrack(AudioAttributes attributes, AudioFormat format, int bufferSizeInBytes, method in class:AudioTrack
[all...]

Completed in 224 milliseconds