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

/frameworks/av/media/libmedia/
H A DAudioRecord.cpp19 #define LOG_TAG "AudioRecord"
25 #include <media/AudioRecord.h>
36 status_t AudioRecord::getMinFrameCount(
68 AudioRecord::AudioRecord() function in class:android::AudioRecord
74 AudioRecord::AudioRecord( function in class:android::AudioRecord
97 AudioRecord::~AudioRecord()
106 mAudioRecordThread->requestExit(); // see comment in AudioRecord
[all...]
/frameworks/av/include/media/
H A DAudioRecord.h34 class AudioRecord : public RefBase class in namespace:android
38 /* Events used by AudioRecord callback function (callback_t).
39 * Keep in sync with frameworks/base/media/java/android/media/AudioRecord.java NATIVE_EVENT_*.
87 * event: type of event notified (see enum AudioRecord::event_type).
90 * - EVENT_MORE_DATA: pointer to AudioRecord::Buffer struct. The callback must not read
102 * an AudioRecord object.
116 /* How data is transferred from AudioRecord
125 /* Constructs an uninitialized AudioRecord. No connection with
128 AudioRecord();
130 /* Creates an AudioRecord objec
[all...]
/frameworks/base/media/java/android/media/
H A DAudioRecord.java33 * The AudioRecord class manages the audio resources for Java applications
35 * achieved by "pulling" (reading) the data from the AudioRecord object. The
36 * application is responsible for polling the AudioRecord object in time using one of
39 * on the audio data storage format that is the most convenient for the user of AudioRecord.
40 * <p>Upon creation, an AudioRecord object initializes its associated audio buffer that it will
42 * determines how long an AudioRecord can record before "over-running" data that has not
46 public class AudioRecord class
52 * indicates AudioRecord state is not successfully initialized.
56 * indicates AudioRecord state is ready to be used
61 * indicates AudioRecord recordin
223 public AudioRecord(int audioSource, int sampleRateInHz, int channelConfig, int audioFormat, method in class:AudioRecord
260 public AudioRecord(AudioAttributes attributes, AudioFormat format, int bufferSizeInBytes, method in class:AudioRecord
[all...]

Completed in 218 milliseconds