Searched refs:eos (Results 1 - 25 of 31) sorted by relevance

12

/frameworks/av/media/libstagefright/codecs/on2/dec/
H A DSoftVPX.h68 bool outputBuffers(bool flushDecoder, bool display, bool eos, bool *portWillReset);
H A DSoftVPX.cpp104 bool SoftVPX::outputBuffers(bool flushDecoder, bool display, bool eos, bool *portWillReset) { argument
170 if (!eos) {
260 true /* flushDecoder */, false /* display */, false /* eos */, &portWillReset)) {
272 true /* flushDecoder */, false /* display */, false /* eos */, &portWillReset)) {
/frameworks/av/media/libstagefright/codecs/on2/h264dec/
H A DSoftAVC.h73 void drainAllOutputBuffers(bool eos);
H A DSoftAVC.cpp118 drainAllOutputBuffers(false /* eos */);
127 drainAllOutputBuffers(true /* eos */);
211 drainAllOutputBuffers(false /* eos */);
270 void SoftAVC::drainAllOutputBuffers(bool eos) { argument
277 mHandle, &decodedPicture, eos /* flush */)) {
284 if (!eos) {
/frameworks/wilhelm/src/android/
H A Dandroid_AudioSfDecoder.cpp421 bool eos; local
422 CacheStatus_t status = getCacheRemaining(&eos);
424 if (eos || status == kStatusHigh
452 bool eos; local
459 && (getCacheRemaining(&eos) == kStatusLow)
460 && !eos) {
675 CacheStatus_t AudioSfDecoder::getCacheRemaining(bool *eos) { argument
683 *eos = (finalStatus != OK);
688 //SL_LOGV("AudioSfDecoder::getCacheRemaining: approx %.2f secs remaining (eos=%d)",
689 // dataRemainingUs / 1E6, *eos);
[all...]
H A Dandroid_AudioSfDecoder.h135 CacheStatus_t getCacheRemaining(bool *eos);
/frameworks/base/media/jni/
H A Dandroid_media_MediaExtractor.h64 bool getCachedDuration(int64_t *durationUs, bool *eos) const;
H A Dandroid_media_MediaExtractor.cpp247 bool JMediaExtractor::getCachedDuration(int64_t *durationUs, bool *eos) const {
248 return mImpl->getCachedDuration(durationUs, eos);
741 bool eos; local
742 if (!extractor->getCachedDuration(&cachedDurationUs, &eos)) {
759 bool eos; local
760 if (!extractor->getCachedDuration(&cachedDurationUs, &eos)) {
764 return eos ? JNI_TRUE : JNI_FALSE;
/frameworks/av/media/libstagefright/rtsp/
H A DARTPSession.cpp141 int32_t eos; local
142 if (msg->findInt32("eos", &eos) && eos) {
/frameworks/wilhelm/tests/mimeUri/
H A DslesTestGetPositionUri.cpp39 bool eos = false; variable
60 eos = true;
296 while (!eos) {
/frameworks/av/include/media/stagefright/
H A DNuMediaExtractor.h76 bool getCachedDuration(int64_t *durationUs, bool *eos) const;
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDecoder.cpp573 bool eos = flags & MediaCodec::BUFFER_FLAG_EOS; local
580 if (eos) {
583 buffer->meta()->setInt32("eos", true);
584 reply->setInt32("eos", true);
605 if (eos && !isDiscontinuityPending()) {
856 int32_t eos, csd; local
858 if (buffer->meta()->findInt32("eos", &eos) && eos) {
899 int32_t eos; local
[all...]
H A DNuPlayerRenderer.cpp792 int32_t eos; local
795 || (entry->mNotifyConsumed->findInt32("eos", &eos) && eos != 0)) {
834 // If we have pending EOS (or "eos" marker for discontinuities), we need
/frameworks/av/media/libstagefright/filters/
H A DMediaFilter.cpp419 int32_t eos = 0; local
420 if (inputInfo->mData->meta()->findInt32("eos", &eos) && eos != 0) {
423 outputInfo->mData->meta()->setInt32("eos", eos);
602 bool eos = false; local
615 eos = true;
631 if (buffer != NULL && buffer->meta()->findInt32("eos", &tmp) && tmp) {
632 eos
[all...]
/frameworks/av/media/libstagefright/matroska/
H A DMatroskaExtractor.cpp93 bool eos() const;
275 bool BlockIterator::eos() const { function in class:android::BlockIterator
357 } while (!eos() && block()->GetTrackNumber() != mTrackNum);
379 } while (!eos() && block()->GetTrackNumber() != mTrackNum);
473 if (eos()) break;
489 CHECK(!eos());
517 if (mBlockIter.eos()) {
1065 while (!iter.eos() && j < 20) {
/frameworks/wilhelm/tests/examples/
H A DslesTestDecodeToBuffQueue.cpp83 bool eos = false; variable
121 eos = true;
511 while (!eos) {
H A DslesTestDecodeAac.cpp106 bool eos = false; variable
406 eos = true;
780 while (!eos) {
/frameworks/av/media/libstagefright/
H A DAwesomePlayer.cpp672 bool AwesomePlayer::getCachedDuration_l(int64_t *durationUs, bool *eos) { argument
679 *eos = (finalStatus != OK);
684 *eos = (finalStatus != OK);
729 bool eos = (finalStatus != OK); local
731 if (eos) {
753 if ((mFlags & PLAYING) && !eos
762 } else if (eos || cachedDataRemaining > kHighWaterMarkBytes) {
782 bool eos = (finalStatus != OK); local
784 if (eos) {
803 bool eos; local
1060 bool eos; local
[all...]
H A DNuMediaExtractor.cpp555 int64_t *durationUs, bool *eos) const {
565 *eos = (finalStatus != OK);
577 *eos = (finalStatus != OK);
/frameworks/base/media/java/android/media/
H A DSRTRenderer.java110 public void onData(byte[] data, boolean eos, long runID) { argument
H A DTtmlRenderer.java554 public void onData(byte[] data, boolean eos, long runID) { argument
568 if (eos) {
H A DSubtitleTrack.java81 onData(data.getData(), true /* eos */, runID);
91 * contents of a run are submitted in sequential order, with eos
96 * @param eos true if this is the last section of the run.
105 public abstract void onData(byte[] data, boolean eos, long runID); argument
H A DWebVttRenderer.java666 public void eos() { method in class:WebVttParser
1006 public void onData(byte[] data, boolean eos, long runID) { argument
1019 if (eos) {
1021 mParser.eos();
/frameworks/av/media/libstagefright/include/
H A DAwesomePlayer.h297 bool getCachedDuration_l(int64_t *durationUs, bool *eos);
/frameworks/wilhelm/tests/sandbox/
H A Dxaplay.c168 static const XAAndroidBufferItem eos = {XA_ANDROID_ITEMKEY_EOS, 0}; local
184 items = &eos;
185 itemSize = sizeof(eos);

Completed in 514 milliseconds

12