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

/frameworks/av/media/libstagefright/codecs/on2/h264dec/
H A DSoftAVC.h75 void drainAllOutputBuffers(bool eos);
H A DSoftAVC.cpp117 drainAllOutputBuffers(false /* eos */);
126 drainAllOutputBuffers(true /* eos */);
214 drainAllOutputBuffers(false /* eos */);
275 void SoftAVC::drainAllOutputBuffers(bool eos) { argument
282 mHandle, &decodedPicture, eos /* flush */)) {
289 if (!eos) {
/frameworks/wilhelm/src/android/
H A Dandroid_AudioSfDecoder.cpp418 bool eos; local
419 CacheStatus_t status = getCacheRemaining(&eos);
421 if (eos || status == kStatusHigh
449 bool eos; local
456 && (getCacheRemaining(&eos) == kStatusLow)
457 && !eos) {
672 CacheStatus_t AudioSfDecoder::getCacheRemaining(bool *eos) { argument
680 *eos = (finalStatus != OK);
685 //SL_LOGV("AudioSfDecoder::getCacheRemaining: approx %.2f secs remaining (eos=%d)",
686 // dataRemainingUs / 1E6, *eos);
[all...]
H A Dandroid_AudioSfDecoder.h135 CacheStatus_t getCacheRemaining(bool *eos);
/frameworks/base/media/jni/
H A Dandroid_media_MediaExtractor.h62 bool getCachedDuration(int64_t *durationUs, bool *eos) const;
H A Dandroid_media_MediaExtractor.cpp289 bool JMediaExtractor::getCachedDuration(int64_t *durationUs, bool *eos) const {
290 return mImpl->getCachedDuration(durationUs, eos);
768 bool eos; local
769 if (!extractor->getCachedDuration(&cachedDurationUs, &eos)) {
786 bool eos; local
787 if (!extractor->getCachedDuration(&cachedDurationUs, &eos)) {
791 return eos;
/frameworks/av/media/libstagefright/rtsp/
H A DARTPSession.cpp141 int32_t eos; local
142 if (msg->findInt32("eos", &eos) && eos) {
H A DMyHandler.h94 kWhatEOS = 'eos!',
986 int32_t eos; local
987 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.h74 bool getCachedDuration(int64_t *durationUs, bool *eos) const;
/frameworks/av/media/libstagefright/matroska/
H A DMatroskaExtractor.cpp92 bool eos() const;
224 bool BlockIterator::eos() const { function in class:android::BlockIterator
306 } while (!eos() && block()->GetTrackNumber() != mTrackNum);
328 } while (!eos() && block()->GetTrackNumber() != mTrackNum);
407 if (eos()) break;
420 CHECK(!eos());
459 if (mBlockIter.eos()) {
948 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.cpp643 bool AwesomePlayer::getCachedDuration_l(int64_t *durationUs, bool *eos) { argument
650 *eos = (finalStatus != OK);
655 *eos = (finalStatus != OK);
700 bool eos = (finalStatus != OK); local
702 if (eos) {
726 if ((mFlags & PLAYING) && !eos
735 } else if (eos || cachedDataRemaining > kHighWaterMarkBytes) {
755 bool eos = (finalStatus != OK); local
757 if (eos) {
776 bool eos; local
1022 bool eos; local
[all...]
H A DNuMediaExtractor.cpp553 int64_t *durationUs, bool *eos) const {
563 *eos = (finalStatus != OK);
575 *eos = (finalStatus != OK);
H A DACodec.cpp3096 bool eos = false; local
3109 eos = true;
3116 if (buffer != NULL && buffer->meta()->findInt32("eos", &tmp) && tmp) {
3117 eos = true;
3129 if (eos) {
3151 if (eos) {
3213 if (!eos) {
/frameworks/av/media/libstagefright/include/
H A DAwesomePlayer.h288 bool getCachedDuration_l(int64_t *durationUs, bool *eos);
/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/native/libs/binder/
H A DParcel.cpp1048 const char* eos = reinterpret_cast<const char*>(memchr(str, 0, avail)); local
1049 if (eos) {
1050 const size_t len = eos - str;
/frameworks/base/media/java/android/media/
H A DSubtitleTrack.java82 * contents of a run are submitted in sequential order, with eos
87 * @param eos true if this is the last section of the run.
98 public abstract void onData(String data, boolean eos, long runID); argument
H A DWebVttRenderer.java660 public void eos() { method in class:WebVttParser
1003 public void onData(String data, boolean eos, long runID) { argument
1013 if (eos) {
1015 mParser.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/base/services/java/com/android/server/
H A DBackupManagerService.java4282 int eos = offset;
4284 while (eos < end && data[eos] != 0) eos++;
4285 return new String(data, offset, eos-offset, "US-ASCII");

Completed in 489 milliseconds