HomeSort by relevance Sort by last modified time
    Searched refs:mAudioBuffer (Results 1 - 5 of 5) sorted by null

  /frameworks/av/media/libmedia/
JetPlayer.cpp 145 if (mAudioBuffer) {
146 delete mAudioBuffer;
147 mAudioBuffer = NULL;
165 mAudioBuffer =
201 EAS_PCM* p = mAudioBuffer;
230 if ((temp = mAudioTrack->write(mAudioBuffer, num_output)) < 0) {
249 delete [] mAudioBuffer;
250 mAudioBuffer = NULL;
  /development/samples/TtsEngine/src/com/example/android/ttsengine/
RobotSpeakTtsService.java 56 private final byte[] mAudioBuffer = new byte[SAMPLING_RATE_HZ * 2];
235 ByteBuffer buffer = ByteBuffer.wrap(mAudioBuffer).order(ByteOrder.LITTLE_ENDIAN);
274 for (int i = 0; i < mAudioBuffer.length / 2; ++i) {
282 while (offset < mAudioBuffer.length) {
283 int bytesToWrite = Math.min(maxBufferSize, mAudioBuffer.length - offset);
284 cb.audioAvailable(mAudioBuffer, offset, bytesToWrite);
  /frameworks/av/media/libmediaplayerservice/
MidiFile.cpp 56 mEasData(NULL), mEasHandle(NULL), mAudioBuffer(NULL),
369 if (mAudioBuffer) {
449 mAudioBuffer = new EAS_PCM[pLibConfig->mixBufferSize * pLibConfig->numChannels * NUM_BUFFERS];
450 if (!mAudioBuffer) {
451 ALOGE("mAudioBuffer allocate failed");
481 EAS_PCM* p = mAudioBuffer;
506 if ((temp = mAudioSink->write(mAudioBuffer, num_output)) < 0) {
549 if (mAudioBuffer) {
550 delete [] mAudioBuffer;
551 mAudioBuffer = NULL
    [all...]
MidiFile.h 77 EAS_PCM* mAudioBuffer;
  /frameworks/av/include/media/
JetPlayer.h 90 EAS_PCM* mAudioBuffer;// EAS renders the MIDI data into this buffer,

Completed in 188 milliseconds