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

  /frameworks/av/media/libmedia/
JetPlayer.cpp 147 if (mAudioBuffer) {
148 delete mAudioBuffer;
149 mAudioBuffer = NULL;
167 mAudioBuffer =
203 EAS_PCM* p = mAudioBuffer;
232 if ((temp = mAudioTrack->write(mAudioBuffer, num_output)) < 0) {
251 delete [] mAudioBuffer;
252 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/include/media/
JetPlayer.h 91 EAS_PCM* mAudioBuffer;// EAS renders the MIDI data into this buffer,
  /frameworks/av/media/libstagefright/include/
MidiExtractor.h 80 EAS_PCM* mAudioBuffer;

Completed in 674 milliseconds