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

/frameworks/av/media/libmedia/
H A DAudioTrack.cpp20 #define LOG_TAG "AudioTrack"
32 #include <media/AudioTrack.h>
52 status_t AudioTrack::getMinFrameCount(
94 AudioTrack::AudioTrack() function in class:android::AudioTrack
102 AudioTrack::AudioTrack( function in class:android::AudioTrack
124 AudioTrack::AudioTrack( function in class:android::AudioTrack
145 AudioTrack function in class:android::AudioTrack
[all...]
/frameworks/av/include/media/
H A DAudioTrack.h42 class AudioTrack : virtual public RefBase class in namespace:android
51 /* Events used by AudioTrack callback function (audio_track_cblk_t).
95 * event: type of event notified (see enum AudioTrack::event_type).
98 * - EVENT_MORE_DATA: pointer to AudioTrack::Buffer struct. The callback must not write
111 * an AudioTrack object.
121 /* Constructs an uninitialized AudioTrack. No connection with
124 AudioTrack();
140 * latency of the track. The actual size selected by the AudioTrack could be
154 AudioTrack( audio_stream_type_t streamType,
166 explicit AudioTrack( in
[all...]
/frameworks/base/media/java/android/media/videoeditor/
H A DAudioTrack.java31 public class AudioTrack { class
74 private AudioTrack() throws IOException { method in class:AudioTrack
90 public AudioTrack(VideoEditor editor, String audioTrackId, String filename) throws IOException { method in class:AudioTrack
123 AudioTrack(VideoEditor editor, String audioTrackId, String filename, method in class:AudioTrack
645 if (!(object instanceof AudioTrack)) {
648 return mUniqueId.equals(((AudioTrack)object).mUniqueId);
/frameworks/base/media/java/android/media/
H A DAudioTrack.java31 * The AudioTrack class manages and plays a single audio resource for Java applications.
33 * achieved by "pushing" the data to the AudioTrack object using one of the
36 * <p>An AudioTrack instance can operate under two modes: static or streaming.<br>
37 * In Streaming mode, the application writes a continuous stream of data to the AudioTrack, using
54 * <p>Upon creation, an AudioTrack object initializes its associated audio buffer.
55 * The size of this buffer, specified during the construction, determines how long an AudioTrack
57 * For an AudioTrack using the static mode, this size is the maximum size of the sound that can
62 public class AudioTrack class
72 /** indicates AudioTrack state is stopped */
74 /** indicates AudioTrack stat
264 public AudioTrack(int streamType, int sampleRateInHz, int channelConfig, int audioFormat, method in class:AudioTrack
305 public AudioTrack(int streamType, int sampleRateInHz, int channelConfig, int audioFormat, method in class:AudioTrack
[all...]

Completed in 3548 milliseconds