Home | History | Annotate | Download | only in libstagefright

Lines Matching defs:eos

546 bool AwesomePlayer::getCachedDuration_l(int64_t *durationUs, bool *eos) {
550 *durationUs = mRTSPController->getQueueDurationUs(eos);
553 size_t cachedDataRemaining = mCachedSource->approxDataRemaining(eos);
569 bool eos;
570 size_t cachedDataRemaining = mCachedSource->approxDataRemaining(&eos);
572 if (eos) {
575 LOGV("cache has reached EOS, prepare is done.");
594 if ((mFlags & PLAYING) && !eos
601 } else if (eos || cachedDataRemaining > kHighWaterMarkBytes) {
619 bool eos;
620 if (getCachedDuration_l(&cachedDurationUs, &eos)) {
621 if ((mFlags & PLAYING) && !eos
628 } else if (eos || cachedDurationUs > kHighWaterMarkUs) {
708 pause_l(true /* at eos */);
732 pause_l(true /* at eos */);
1490 bool eos;
1492 mCachedSource->approxDataRemaining(&eos);
1494 if (eos || cachedDataRemaining >= kHighWaterMarkBytes
1616 bool eos;
1618 ->getQueuedDuration(&eos) < 5000000ll && !eos) {