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

/frameworks/base/include/media/
H A DAudioTrack.h42 class AudioTrack class in namespace:android
51 /* Events used by AudioTrack callback function (audio_track_cblk_t).
90 * event: type of event notified (see enum AudioTrack::event_type).
93 * - EVENT_MORE_DATA: pointer to AudioTrack::Buffer struct. The callback must not write
106 * an AudioTrack object.
116 /* Constructs an uninitialized AudioTrack. No connection with
119 AudioTrack();
144 AudioTrack( int streamType,
156 * The PCM data to be rendered by AudioTrack is passed in a shared memory buffer
158 * PCM data must be present into memory before the AudioTrack i
[all...]
/frameworks/base/media/libmedia/
H A DAudioTrack.cpp1 /* //device/extlibs/pv/android/AudioTrack.cpp
20 #define LOG_TAG "AudioTrack"
32 #include <media/AudioTrack.h>
47 status_t AudioTrack::getMinFrameCount(
76 AudioTrack::AudioTrack() function in class:android::AudioTrack
81 AudioTrack::AudioTrack( function in class:android::AudioTrack
99 AudioTrack::AudioTrack( function in class:android::AudioTrack
[all...]
/frameworks/base/media/libstagefright/matroska/
H A Dmkvparser.hpp267 class AudioTrack : public Track class in namespace:mkvparser
269 AudioTrack(const AudioTrack&);
270 AudioTrack& operator=(const AudioTrack&);
273 AudioTrack(Segment*, const Info&);
/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
48 * that need to be played with the smallest latency possible. AudioTrack instances in static mode
53 * <p>Upon creation, an AudioTrack object initializes its associated audio buffer.
54 * The size of this buffer, specified during the construction, determines how long an AudioTrack
56 * For an AudioTrack using the static mode, this size is the maximum size of the sound that can
61 public class AudioTrack class
71 /** indicates AudioTrack stat
262 public AudioTrack(int streamType, int sampleRateInHz, int channelConfig, int audioFormat, method in class:AudioTrack
302 public AudioTrack(int streamType, int sampleRateInHz, int channelConfig, int audioFormat, method in class:AudioTrack
[all...]

Completed in 3689 milliseconds