Searched defs:eos (Results 1 - 22 of 22) sorted by relevance

/frameworks/base/media/java/android/media/
H A DSRTRenderer.java110 public void onData(byte[] data, boolean eos, long runID) { argument
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 DTtmlRenderer.java554 public void onData(byte[] data, boolean eos, long runID) { argument
568 if (eos) {
H A DClosedCaptionRenderer.java92 public 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/rtsp/
H A DARTPSession.cpp141 int32_t eos; local
142 if (msg->findInt32("eos", &eos) && eos) {
H A DMyHandler.h105 kWhatEOS = 'eos!',
1020 int32_t eos; local
1021 if (msg->findInt32("eos", &eos)) {
/frameworks/av/media/libstagefright/codecs/on2/dec/
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.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/tests/mimeUri/
H A DslesTestGetPositionUri.cpp39 bool eos = false; variable
60 eos = true;
296 while (!eos) {
/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/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...]
/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/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/base/media/jni/
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/wilhelm/tests/sandbox/
H A Dxaplay.c168 static const XAAndroidBufferItem eos = {XA_ANDROID_ITEMKEY_EOS, 0}; local
184 items = &eos;
185 itemSize = sizeof(eos);
/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/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 DACodec.cpp4841 bool eos = false; local
4854 eos = true;
4861 if (buffer != NULL && buffer->meta()->findInt32("eos", &tmp) && tmp) {
4862 eos = true;
4880 if (eos) {
4893 if (buffer->size() == 0 && !eos) {
4908 if (eos) {
4979 if (!eos && err == OK) {
/frameworks/native/libs/binder/
H A DParcel.cpp1288 const char* eos = reinterpret_cast<const char*>(memchr(str, 0, avail)); local
1289 if (eos) {
1290 const size_t len = eos - str;

Completed in 335 milliseconds