Home
last modified time | relevance | path

Searched refs:eos (Results 1 – 25 of 67) sorted by relevance

123

/frameworks/wilhelm/src/android/
Dandroid_AudioSfDecoder.cpp425 bool eos; in onCheckCache() local
426 CacheStatus_t status = getCacheRemaining(&eos); in onCheckCache()
428 if (eos || status == kStatusHigh in onCheckCache()
456 bool eos; in onDecode() local
463 && (getCacheRemaining(&eos) == kStatusLow) in onDecode()
464 && !eos) { in onDecode()
679 CacheStatus_t AudioSfDecoder::getCacheRemaining(bool *eos) { in getCacheRemaining() argument
687 *eos = (finalStatus != OK); in getCacheRemaining()
695 if (*eos) { in getCacheRemaining()
/frameworks/av/media/libmediatranscoding/transcoder/tests/
DVideoTrackTranscoderTests.cpp109 bool eos = false; in TEST_F() local
111 transcoder->setSampleConsumer([&sampleCount, &eos](const std::shared_ptr<MediaSample>& sample) { in TEST_F()
134 EXPECT_FALSE(eos); in TEST_F()
135 eos = true; in TEST_F()
DPassthroughTrackTranscoderTests.cpp168 bool eos = false; in TEST_F() local
171 [&sampleCount, &sampleChecksums, &eos](const std::shared_ptr<MediaSample>& sample) { in TEST_F()
173 EXPECT_FALSE(eos); in TEST_F()
176 eos = true; in TEST_F()
/frameworks/av/media/libstagefright/rtsp/
DARTPSession.cpp141 int32_t eos; in onMessageReceived() local
142 if (msg->findInt32("eos", &eos) && eos) { in onMessageReceived()
/frameworks/av/media/libmediaplayerservice/nuplayer/
DNuPlayerDecoder.cpp759 bool eos = flags & MediaCodec::BUFFER_FLAG_EOS; in handleAnOutputBuffer() local
767 if (eos) { in handleAnOutputBuffer()
782 if (eos) { in handleAnOutputBuffer()
800 if (eos && !isDiscontinuityPending()) { in handleAnOutputBuffer()
1059 int32_t eos, csd, cvo; in onInputBufferFetched() local
1061 if (buffer->meta()->findInt32("eos", &eos) && eos) { in onInputBufferFetched()
1172 int32_t eos; in onRenderBuffer() local
1193 if (!msg->findInt32("eos", &eos) || !eos || in onRenderBuffer()
1204 if (msg->findInt32("eos", &eos) && eos in onRenderBuffer()
/frameworks/av/media/codec2/sfplugin/
DFrameReassembler.cpp175 int32_t eos = 0; in process() local
176 if (buffer->meta()->findInt32("eos", &eos) && eos) { in process()
/frameworks/av/media/codec2/components/g711/
DC2SoftG711Dec.cpp159 bool eos = (work->input.flags & C2FrameData::FLAG_END_OF_STREAM) != 0; in process() local
169 if (eos) { in process()
205 if (eos) { in process()
/frameworks/av/media/codec2/components/mp3/
DC2SoftMp3Dec.cpp344 bool eos = ((work->input.flags & C2FrameData::FLAG_END_OF_STREAM) != 0); in process() local
357 if (inSize == 0 && (!mGaplessBytes || !eos)) { in process()
375 if (eos) { in process()
474 if (eos) { in process()
500 if (eos) { in process()
/frameworks/av/media/codec2/components/flac/
DC2SoftFlacDec.cpp202 bool eos = (work->input.flags & C2FrameData::FLAG_END_OF_STREAM) != 0; in process() local
210 if (eos) { in process()
239 if (eos) { in process()
314 if (eos) { in process()
/frameworks/av/media/libstagefright/filters/
DMediaFilter.cpp463 int32_t eos = 0; in processBuffers() local
464 if (inputInfo->mData->meta()->findInt32("eos", &eos) && eos != 0) { in processBuffers()
467 outputInfo->mData->meta()->setInt32("eos", eos); in processBuffers()
639 bool eos = false; in onInputBufferFilled() local
652 eos = true; in onInputBufferFilled()
659 if (eos) { in onInputBufferFilled()
/frameworks/av/media/codec2/hidl/1.0/utils/
DInputSurface.cpp60 bool eos() const { return mEos->value; } in eos() function in android::hardware::media::c2::V1_0::utils::InputSurface::Interface
93 if (mIntf->eos()) { in config()
/frameworks/av/media/codec2/components/opus/
DC2SoftOpusDec.cpp222 bool eos = ((work->input.flags & C2FrameData::FLAG_END_OF_STREAM) != 0); in process() local
237 if (eos) { in process()
359 if (eos) { in process()
433 if (eos) { in process()
DC2SoftOpusEnc.cpp337 bool eos = (work->input.flags & C2FrameData::FLAG_END_OF_STREAM) != 0; in process() local
481 if (eos) { in process()
532 if (eos) { in process()
564 bool eos = (work->input.flags & C2FrameData::FLAG_END_OF_STREAM) != 0; in drainInternal() local
592 (C2FrameData::flags_t)(eos ? C2FrameData::FLAG_END_OF_STREAM : 0); in drainInternal()
/frameworks/wilhelm/tests/mimeUri/
DslesTestGetPositionUri.cpp39 bool eos = false; variable
60 eos = true; in SignalEos()
293 while (!eos) { in TestGetPositionUri()
/frameworks/av/media/codec2/components/gsm/
DC2SoftGsmDec.cpp181 bool eos = ((work->input.flags & C2FrameData::FLAG_END_OF_STREAM) != 0); in process() local
199 if (eos) { in process()
238 if (eos) { in process()
/frameworks/av/media/codec2/components/vorbis/
DC2SoftVorbisDec.cpp238 bool eos = ((work->input.flags & C2FrameData::FLAG_END_OF_STREAM) != 0); in process() local
254 if (eos) { in process()
339 if (eos) { in process()
437 if (eos) { in process()
/frameworks/av/media/libstagefright/codecs/on2/dec/
DSoftVPX.h76 bool outputBuffers(bool flushDecoder, bool display, bool eos, bool *portWillReset);
/frameworks/base/media/jni/
Dandroid_media_MediaExtractor.cpp290 bool JMediaExtractor::getCachedDuration(int64_t *durationUs, bool *eos) const { in getCachedDuration()
291 return mImpl->getCachedDuration(durationUs, eos); in getCachedDuration()
869 bool eos; in android_media_MediaExtractor_getCachedDurationUs() local
870 if (!extractor->getCachedDuration(&cachedDurationUs, &eos)) { in android_media_MediaExtractor_getCachedDurationUs()
887 bool eos; in android_media_MediaExtractor_hasCacheReachedEOS() local
888 if (!extractor->getCachedDuration(&cachedDurationUs, &eos)) { in android_media_MediaExtractor_hasCacheReachedEOS()
892 return eos ? JNI_TRUE : JNI_FALSE; in android_media_MediaExtractor_hasCacheReachedEOS()
/frameworks/av/media/codec2/components/amr_nb_wb/
DC2SoftAmrNbEnc.cpp194 bool eos = ((work->input.flags & C2FrameData::FLAG_END_OF_STREAM) != 0); in process() local
243 if (eos) { in process()
278 if (eos) { in process()
DC2SoftAmrDec.cpp265 bool eos = (work->input.flags & C2FrameData::FLAG_END_OF_STREAM) != 0; in process() local
270 if (eos) { in process()
372 if (eos) { in process()
DC2SoftAmrWbEnc.cpp288 bool eos = (work->input.flags & C2FrameData::FLAG_END_OF_STREAM) != 0; in process() local
325 if (eos) { in process()
352 if (eos) { in process()
/frameworks/av/media/codec2/components/aac/
DC2SoftAacDec.cpp475 bool eos) { in drainRingBuffer() argument
486 if (eos) { in drainRingBuffer()
582 bool eos = (work->input.flags & C2FrameData::FLAG_END_OF_STREAM) != 0; in process() local
949 if (!eos && mOutputDelayCompensated < outputDelay) { in process()
961 if (eos) { in process()
981 bool eos = (drainMode == DRAIN_COMPONENT_WITH_EOS); in drainInternal() local
984 drainRingBuffer(work, pool, eos); in drainInternal()
986 if (eos) { in drainInternal()
/frameworks/av/media/libstagefright/
DACodecBufferChannel.cpp109 int32_t eos; in queueInputBuffer() local
110 if (it->mClientBuffer->meta()->findInt32("eos", &eos)) { in queueInputBuffer()
111 it->mCodecBuffer->meta()->setInt32("eos", eos); in queueInputBuffer()
258 int32_t eos; in queueSecureInputBuffer() local
259 if (it->mClientBuffer->meta()->findInt32("eos", &eos)) { in queueSecureInputBuffer()
260 it->mCodecBuffer->meta()->setInt32("eos", eos); in queueSecureInputBuffer()
/frameworks/av/media/extractors/mkv/
DMatroskaExtractor.cpp103 bool eos() const;
332 bool BlockIterator::eos() const { in eos() function in android::BlockIterator
427 } while (!eos() && block()->GetTrackNumber() != mTrackNum); in reset()
459 } while (!eos() && block()->GetTrackNumber() != mTrackNum); in seek()
558 if (eos()) break; in seek()
574 CHECK(!eos()); in block()
595 while (!eos() && ((block()->GetTrackNumber() != mTrackNum) || (blockTimeUs() < seekTimeUs))) { in seekwithoutcue_l()
601 while (!eos() && ((block()->GetTrackNumber() != mTrackNum) || in seekwithoutcue_l()
784 if (mBlockIter.eos()) { in readBlock()
1659 if (iter.eos()) { in synthesizeAVCC()
[all …]
/frameworks/base/services/backup/java/com/android/server/backup/utils/
DTarBackupReader.java785 int eos = offset; in extractString() local
787 while (eos < end && data[eos] != 0) { in extractString()
788 eos++; in extractString()
790 return new String(data, offset, eos - offset, "US-ASCII"); in extractString()

123