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.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.h73 void drainAllOutputBuffers(bool eos);
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/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...]
H A Dandroid_AudioSfDecoder.h133 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;
293 while (!eos) {
/frameworks/av/include/media/stagefright/
H A DNuMediaExtractor.h82 bool getCachedDuration(int64_t *durationUs, bool *eos) const;
/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/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.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/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/libstagefright/
H A DNuMediaExtractor.cpp628 int64_t *durationUs, bool *eos) const {
638 *eos = (finalStatus != OK);
650 *eos = (finalStatus != OK);
H A DMediaCodecSource.cpp223 msg->setInt32("eos", 1);
761 int32_t eos = 0; local
762 if (msg->findInt32("eos", &eos) && eos) {
/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/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/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
H A DExifInterface.java965 ExifOutputStream eos = new ExifOutputStream(outStream, this);
966 eos.setExifData(mData);
967 return eos;

Completed in 2550 milliseconds

12