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

/frameworks/av/media/libmedia/
H A DAudioRecord.cpp19 #define LOG_TAG "AudioRecord"
23 #include <media/AudioRecord.h>
34 status_t AudioRecord::getMinFrameCount(
73 AudioRecord::AudioRecord() function in class:android::AudioRecord
79 AudioRecord::AudioRecord( function in class:android::AudioRecord
100 AudioRecord::~AudioRecord()
109 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_*.
82 * event: type of event notified (see enum AudioRecord::event_type).
85 * - EVENT_MORE_DATA: pointer to AudioRecord::Buffer struct. The callback must not read
97 * an AudioRecord object.
109 /* How data is transferred from AudioRecord
118 /* Constructs an uninitialized AudioRecord. No connection with
121 AudioRecord();
123 /* Creates an AudioRecord objec
[all...]
/frameworks/base/media/java/android/media/
H A DAudioRecord.java28 * The AudioRecord class manages the audio resources for Java applications
30 * achieved by "pulling" (reading) the data from the AudioRecord object. The
31 * application is responsible for polling the AudioRecord object in time using one of
34 * on the audio data storage format that is the most convenient for the user of AudioRecord.
35 * <p>Upon creation, an AudioRecord object initializes its associated audio buffer that it will
37 * determines how long an AudioRecord can record before "over-running" data that has not
41 public class AudioRecord class
47 * indicates AudioRecord state is not successfully initialized.
51 * indicates AudioRecord state is ready to be used
56 * indicates AudioRecord recordin
208 public AudioRecord(int audioSource, int sampleRateInHz, int channelConfig, int audioFormat, method in class:AudioRecord
[all...]

Completed in 107 milliseconds