Searched refs:flush (Results 1 - 25 of 141) sorted by path

123456

/frameworks/av/include/media/
H A DAudioTrack.h181 * The write() and flush() methods are not supported in this case.
267 void flush();
530 bool mFlushed; // FIXME will be made obsolete by making flush() synchronous
H A DIAudioTrack.h48 * will continue to be processed, unless/until flush() is called.
55 virtual void flush() = 0;
64 * will continue to be processed, unless/until flush() is called.
H A DMediaPlayerInterface.h107 virtual void flush() = 0;
/frameworks/av/include/media/stagefright/
H A DMediaCodec.h69 status_t flush();
/frameworks/av/libvideoeditor/lvpp/
H A DVideoEditorAudioPlayer.cpp197 mAudioSink->flush();
199 mAudioTrack->flush();
H A DVideoEditorPlayer.cpp510 void VideoEditorPlayer::VeAudioOutput::flush() { function in class:android::VideoEditorPlayer::VeAudioOutput
512 ALOGV("flush");
513 if (mTrack) mTrack->flush();
H A DVideoEditorPlayer.h60 virtual void flush();
/frameworks/av/media/libmedia/
H A DAudioTrack.cpp448 // Force flush if a shared buffer is used otherwise audioflinger
469 void AudioTrack::flush() function in class:android::AudioTrack
478 ALOGV("flush");
487 mAudioTrack->flush();
1571 // It is possible that we receive a flush()
1573 // stepServer() is called After the flush() has reset u & s and
H A DIAudioTrack.cpp84 virtual void flush() function in class:android::BpAudioTrack
192 flush();
H A DJetPlayer.cpp145 mAudioTrack->flush();
251 mAudioTrack->flush();
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp1482 // if we're not going to reuse the track, unblock and flush it
1487 mRecycledTrack->flush();
1571 void MediaPlayerService::AudioOutput::flush() function in class:android::MediaPlayerService::AudioOutput
1573 ALOGV("flush");
1574 if (mTrack) mTrack->flush();
H A DMediaPlayerService.h102 virtual void flush();
203 virtual void flush() {} function in class:android::MediaPlayerService::AudioCache
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayer.cpp354 ALOGV("decoder %s flush completed", audio ? "audio" : "video");
521 ALOGV("renderer %s flush completed.", audio ? "audio" : "video");
855 // We're currently attempting to flush the decoder, in order
858 // we initiated the flush) to be stuck in the renderer's queue.
919 mRenderer->flush(audio);
H A DNuPlayerRenderer.cpp78 void NuPlayer::Renderer::flush(bool audio) { function in class:android::NuPlayer::Renderer
H A DNuPlayerRenderer.h38 void flush(bool audio);
/frameworks/av/media/libstagefright/
H A DAudioPlayer.cpp583 mAudioSink->flush();
585 mAudioTrack->flush();
H A DMediaCodec.cpp323 status_t MediaCodec::flush() { function in class:android::MediaCodec
H A DTimedEventQueue.cpp65 void TimedEventQueue::stop(bool flush) { argument
70 if (flush) {
/frameworks/av/media/libstagefright/include/
H A DTimedEventQueue.h66 // Stop executing the event loop, if flush is false, any pending
69 void stop(bool flush = false);
/frameworks/av/media/libstagefright/mpeg2ts/
H A DATSParser.cpp138 status_t flush();
540 status_t err = flush();
820 status_t ATSParser::Stream::flush() { function in class:android::ATSParser::Stream
H A DESQueue.cpp542 bool flush = false; local
552 flush = true;
561 flush = true;
564 if (flush) {
/frameworks/av/media/libstagefright/wifi-display/source/
H A DPlaybackSession.h122 const void *data, size_t size, bool timeDiscontinuity, bool flush);
H A DSender.cpp562 lastTSPacket /* flush */);
596 const void *data, size_t size, bool timeDiscontinuity, bool flush) {
604 if (flush || mTSQueue->size() == mTSQueue->capacity()) {
605 // flush
595 appendTSData( const void *data, size_t size, bool timeDiscontinuity, bool flush) argument
H A DSender.h146 const void *data, size_t size, bool timeDiscontinuity, bool flush);
/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp2602 // we're about to wait, flush the binder command buffer
2972 // or stopped which can occur when flush() is called while active
3027 case TrackBase::FLUSHED: // flush() while active
4024 // flush remaining overflow buffers in output tracks
4627 // If the track is not active (PAUSED and buffers full), flush buffers
4677 void AudioFlinger::PlaybackThread::Track::flush() function in class:android::AudioFlinger::PlaybackThread::Track
4679 ALOGV("flush(%d)", mName);
4687 // No point remaining in PAUSED state after a flush => go to
4703 // Do not reset twice to avoid discarding data written just after a flush and before
5821 void AudioFlinger::TrackHandle::flush() { function in class:android::AudioFlinger::TrackHandle
[all...]

Completed in 150 milliseconds

123456