Searched defs:eos (Results 1 - 23 of 23) 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.java93 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();
H A DCea708CaptionRenderer.java102 public void onData(byte[] data, boolean eos, long runID) { argument
/frameworks/av/media/libstagefright/rtsp/
H A DARTPSession.cpp141 int32_t eos; local
142 if (msg->findInt32("eos", &eos) && eos) {
H A DMyHandler.h109 kWhatEOS = 'eos!',
1029 int32_t eos; local
1030 if (msg->findInt32("eos", &eos)) {
/frameworks/av/media/libstagefright/codecs/on2/dec/
H A DSoftVPX.cpp112 bool SoftVPX::outputBuffers(bool flushDecoder, bool display, bool eos, bool *portWillReset) { argument
182 if (!eos) {
291 true /* flushDecoder */, false /* display */, false /* eos */, &portWillReset)) {
303 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 */);
216 drainAllOutputBuffers(false /* eos */);
281 void SoftAVC::drainAllOutputBuffers(bool eos) { argument
288 mHandle, &decodedPicture, eos /* flush */)) {
300 if (!eos) {
/frameworks/wilhelm/tests/mimeUri/
H A DslesTestGetPositionUri.cpp39 bool eos = false; variable
60 eos = true;
293 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.cpp417 bool eos; local
418 CacheStatus_t status = getCacheRemaining(&eos);
420 if (eos || status == kStatusHigh
448 bool eos; local
455 && (getCacheRemaining(&eos) == kStatusLow)
456 && !eos) {
671 CacheStatus_t AudioSfDecoder::getCacheRemaining(bool *eos) { argument
679 *eos = (finalStatus != OK);
684 //SL_LOGV("AudioSfDecoder::getCacheRemaining: approx %.2f secs remaining (eos=%d)",
685 // 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.cpp104 bool eos = false; variable
404 eos = true;
778 while (!eos) {
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDecoder.cpp575 bool eos = flags & MediaCodec::BUFFER_FLAG_EOS; local
582 if (eos) {
585 buffer->meta()->setInt32("eos", true);
586 reply->setInt32("eos", true);
607 if (eos && !isDiscontinuityPending()) {
858 int32_t eos, csd; local
860 if (buffer->meta()->findInt32("eos", &eos) && eos) {
905 int32_t eos; local
[all...]
H A DNuPlayerRenderer.cpp849 int32_t eos; local
852 || (entry->mNotifyConsumed->findInt32("eos", &eos) && eos != 0)) {
891 // If we have pending EOS (or "eos" marker for discontinuities), we need
/frameworks/av/media/libstagefright/
H A DMediaCodecSource.cpp223 msg->setInt32("eos", 1);
761 int32_t eos = 0; local
762 if (msg->findInt32("eos", &eos) && eos) {
H A DACodec.cpp5667 bool eos = false; local
5680 eos = true;
5687 if (buffer != NULL && buffer->meta()->findInt32("eos", &tmp) && tmp) {
5688 eos = true;
5706 if (eos) {
5719 if (buffer->size() == 0 && !eos) {
5742 if (eos) {
5850 if (!eos && err == OK) {
/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.cpp96 bool eos() const;
288 bool BlockIterator::eos() const { function in class:android::BlockIterator
370 } while (!eos() && block()->GetTrackNumber() != mTrackNum);
392 } while (!eos() && block()->GetTrackNumber() != mTrackNum);
486 if (eos()) break;
502 CHECK(!eos());
599 if (mBlockIter.eos()) {
1035 if (iter.eos()) {
1332 while (!iter.eos() && j < 20) {
/frameworks/native/libs/binder/
H A DParcel.cpp1831 const char* eos = reinterpret_cast<const char*>(memchr(str, 0, avail)); local
1832 if (eos) {
1833 const size_t len = eos - str;

Completed in 1514 milliseconds