Home | History | Annotate | Download | only in libmedia

Lines Matching refs:mAudioTrack

49         mAudioTrack(NULL),
98 mAudioTrack = new AudioTrack();
99 mAudioTrack->set(AudioSystem::MUSIC, //TODO parametrize this
149 if (mAudioTrack) {
150 mAudioTrack->stop();
151 mAudioTrack->flush();
152 delete mAudioTrack;
153 mAudioTrack = NULL;
211 mAudioTrack->pause();
243 if (mAudioTrack == NULL) {
250 if ((temp = mAudioTrack->write(mAudioBuffer, num_output)) < 0) {
258 mAudioTrack->start();
265 if (mAudioTrack) {
266 mAudioTrack->stop();
267 mAudioTrack->flush();