OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mAudioBuffer
(Results
1 - 6
of
6
) sorted by null
/frameworks/base/media/libmedia/
JetPlayer.cpp
155
if (
mAudioBuffer
) {
156
delete
mAudioBuffer
;
157
mAudioBuffer
= NULL;
181
mAudioBuffer
=
183
if (!
mAudioBuffer
) {
184
LOGE("JetPlayer::render():
mAudioBuffer
allocate failed");
221
EAS_PCM* p =
mAudioBuffer
;
250
if ((temp = mAudioTrack->write(
mAudioBuffer
, num_output)) < 0) {
269
if (
mAudioBuffer
) {
270
delete []
mAudioBuffer
;
[
all
...]
/frameworks/base/media/libmediaplayerservice/
VorbisPlayer.cpp
57
mAudioBuffer
(NULL), mPlayTime(-1), mDuration(-1), mState(STATE_ERROR),
410
mAudioBuffer
= new char[AUDIOBUFFER_SIZE];
411
if (!
mAudioBuffer
) {
412
LOGE("
mAudioBuffer
allocate failed\n");
449
numread = ov_read(&mVorbisFile,
mAudioBuffer
, AUDIOBUFFER_SIZE, ¤t_section);
456
numread = ov_read(&mVorbisFile,
mAudioBuffer
, AUDIOBUFFER_SIZE, ¤t_section);
480
numread = ov_read(&mVorbisFile,
mAudioBuffer
, AUDIOBUFFER_SIZE, ¤t_section);
501
if ((temp = mAudioSink->write(
mAudioBuffer
, numread)) < 0) {
517
if (
mAudioBuffer
) {
518
delete []
mAudioBuffer
;
[
all
...]
MidiFile.cpp
59
mEasData(NULL), mEasHandle(NULL),
mAudioBuffer
(NULL),
364
if (
mAudioBuffer
) {
447
mAudioBuffer
= new EAS_PCM[pLibConfig->mixBufferSize * pLibConfig->numChannels * NUM_BUFFERS];
448
if (!
mAudioBuffer
) {
449
LOGE("
mAudioBuffer
allocate failed");
479
EAS_PCM* p =
mAudioBuffer
;
504
if ((temp = mAudioSink->write(
mAudioBuffer
, num_output)) < 0) {
547
if (
mAudioBuffer
) {
548
delete []
mAudioBuffer
;
549
mAudioBuffer
= NULL
[
all
...]
MidiFile.h
67
EAS_PCM*
mAudioBuffer
;
VorbisPlayer.h
79
char*
mAudioBuffer
;
/frameworks/base/include/media/
JetPlayer.h
92
EAS_PCM*
mAudioBuffer
;// EAS renders the MIDI data into this buffer,
Completed in 538 milliseconds