Searched defs:eos (Results 1 - 19 of 19) 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.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 DTtmlRenderer.java566 public void onData(byte[] data, boolean eos, long runID) { argument
580 if (eos) {
H A DClosedCaptionRenderer.java92 public 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();
/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/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/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...]
/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/libmediaplayerservice/nuplayer/
H A DNuPlayerDecoder.cpp478 buffer->meta()->setInt32("eos", true);
741 int32_t eos, csd; local
743 if (buffer->meta()->findInt32("eos", &eos) && 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/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);
472 if (eos()) break;
488 CHECK(!eos());
527 if (mBlockIter.eos()) {
1052 while (!iter.eos() && j < 20) {
/frameworks/base/media/jni/
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/
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
1057 bool eos; local
[all...]
H A DACodec.cpp4314 bool eos = false; local
4327 eos = true;
4334 if (buffer != NULL && buffer->meta()->findInt32("eos", &tmp) && tmp) {
4335 eos = true;
4347 if (eos) {
4369 if (eos) {
4430 if (!eos) {
/frameworks/native/libs/binder/
H A DParcel.cpp1132 const char* eos = reinterpret_cast<const char*>(memchr(str, 0, avail)); local
1133 if (eos) {
1134 const size_t len = eos - str;

Completed in 41 milliseconds