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

12

/frameworks/av/media/libstagefright/codecs/on2/h264dec/
H A DSoftAVC.h73 void drainAllOutputBuffers(bool eos);
H A DSoftAVC.cpp116 drainAllOutputBuffers(false /* eos */);
125 drainAllOutputBuffers(true /* eos */);
209 drainAllOutputBuffers(false /* eos */);
268 void SoftAVC::drainAllOutputBuffers(bool eos) { argument
275 mHandle, &decodedPicture, eos /* flush */)) {
282 if (!eos) {
/frameworks/wilhelm/src/android/
H A Dandroid_AudioSfDecoder.cpp420 bool eos; local
421 CacheStatus_t status = getCacheRemaining(&eos);
423 if (eos || status == kStatusHigh
451 bool eos; local
458 && (getCacheRemaining(&eos) == kStatusLow)
459 && !eos) {
674 CacheStatus_t AudioSfDecoder::getCacheRemaining(bool *eos) { argument
682 *eos = (finalStatus != OK);
687 //SL_LOGV("AudioSfDecoder::getCacheRemaining: approx %.2f secs remaining (eos=%d)",
688 // 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.cpp314 bool JMediaExtractor::getCachedDuration(int64_t *durationUs, bool *eos) const {
315 return mImpl->getCachedDuration(durationUs, eos);
802 bool eos; local
803 if (!extractor->getCachedDuration(&cachedDurationUs, &eos)) {
820 bool eos; local
821 if (!extractor->getCachedDuration(&cachedDurationUs, &eos)) {
825 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) {
H A DMyHandler.h104 kWhatEOS = 'eos!',
1013 int32_t eos; local
1014 if (msg->findInt32("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/libstagefright/matroska/
H A DMatroskaExtractor.cpp92 bool eos() const;
274 bool BlockIterator::eos() const { function in class:android::BlockIterator
356 } while (!eos() && block()->GetTrackNumber() != mTrackNum);
378 } while (!eos() && block()->GetTrackNumber() != mTrackNum);
471 if (eos()) break;
487 CHECK(!eos());
526 if (mBlockIter.eos()) {
1051 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
405 eos = true;
779 while (!eos) {
/frameworks/av/media/libstagefright/
H A DAwesomePlayer.cpp670 bool AwesomePlayer::getCachedDuration_l(int64_t *durationUs, bool *eos) { argument
677 *eos = (finalStatus != OK);
682 *eos = (finalStatus != OK);
727 bool eos = (finalStatus != OK); local
729 if (eos) {
751 if ((mFlags & PLAYING) && !eos
760 } else if (eos || cachedDataRemaining > kHighWaterMarkBytes) {
780 bool eos = (finalStatus != OK); local
782 if (eos) {
801 bool eos; local
1047 bool eos; local
[all...]
H A DNuMediaExtractor.cpp555 int64_t *durationUs, bool *eos) const {
565 *eos = (finalStatus != OK);
577 *eos = (finalStatus != OK);
H A DACodec.cpp3988 bool eos = false; local
4001 eos = true;
4008 if (buffer != NULL && buffer->meta()->findInt32("eos", &tmp) && tmp) {
4009 eos = true;
4021 if (eos) {
4043 if (eos) {
4104 if (!eos) {
/frameworks/base/media/java/android/media/
H A DSRTRenderer.java110 public void onData(byte[] data, boolean eos, long runID) { argument
H A DSubtitleTrack.java80 onData(data.getData(), true /* eos */, runID);
90 * contents of a run are submitted in sequential order, with eos
95 * @param eos true if this is the last section of the run.
104 public abstract void onData(byte[] data, boolean eos, long runID); argument
H A DWebVttRenderer.java664 public void eos() { method in class:WebVttParser
1004 public void onData(byte[] data, boolean eos, long runID) { argument
1017 if (eos) {
1019 mParser.eos();
H A DTtmlRenderer.java566 public void onData(byte[] data, boolean eos, long runID) { argument
580 if (eos) {
/frameworks/av/media/libstagefright/include/
H A DAwesomePlayer.h293 bool getCachedDuration_l(int64_t *durationUs, bool *eos);
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDecoder.cpp382 int32_t eos, csd; local
384 if (buffer->meta()->findInt32("eos", &eos) && eos) {
480 buffer->meta()->setInt32("eos", true);
497 ALOGV("queueing eos [%s]", mComponentName.c_str());
/frameworks/wilhelm/tests/sandbox/
H A Dxaplay.c167 static const XAAndroidBufferItem eos = {XA_ANDROID_ITEMKEY_EOS, 0}; local
183 items = &eos;
184 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;
/frameworks/native/libs/binder/
H A DParcel.cpp1134 const char* eos = reinterpret_cast<const char*>(memchr(str, 0, avail));
1135 if (eos) {
1136 const size_t len = eos - str;

Completed in 2615 milliseconds

12