Home
last modified time | relevance | path

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

/foundation/multimedia/av_codec/services/engine/codec/audio/
H A Daudio_buffer_info.cpp104 void AudioBufferInfo::SetEos(bool eos) in SetEos() argument
106 isEos_ = eos; in SetEos()
/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/src/hardware/imagecodec/
H A Dimage_codec_dfx.cpp181 bool eos = (omxBuffer->flag & OMX_BUFFERFLAG_EOS); in DumpSurfaceBuffer() local
182 if (eos || omxBuffer->filledLen == 0) { in DumpSurfaceBuffer()
225 bool eos = (omxBuffer->flag & OMX_BUFFERFLAG_EOS); in DumpLinearBuffer() local
226 if (eos || omxBuffer->filledLen == 0) { in DumpLinearBuffer()
H A Dimage_codec.cpp579 HLOGI("input already eos, keep this buffer"); in OnQueueInputBuffer()
582 bool eos = (info->omxBuffer->flag & OMX_BUFFERFLAG_EOS); in OnQueueInputBuffer() local
583 if (!eos && info->omxBuffer->filledLen == 0) { in OnQueueInputBuffer()
584 HLOGI("this is not a eos buffer but not filled, ask user to re-fill it"); in OnQueueInputBuffer()
588 if (eos) { in OnQueueInputBuffer()
655 HLOGI("output eos, keep this buffer"); in OnOMXFillBufferDone()
658 bool eos = (info.omxBuffer->flag & OMX_BUFFERFLAG_EOS); in OnOMXFillBufferDone() local
659 if (!eos && info.omxBuffer->filledLen == 0) { in OnOMXFillBufferDone()
660 HLOGD("it's not a eos buffer but not filled, ask omx to re-fill it"); in OnOMXFillBufferDone()
665 if (eos) { in OnOMXFillBufferDone()
[all...]
/foundation/multimedia/av_codec/services/engine/codec/include/audio/
H A Daudio_buffer_info.h52 void SetEos(bool eos);
/foundation/multimedia/media_foundation/engine/plugin/plugins/demuxer/wav_demuxer/
H A Dwav_demuxer_plugin.h74 bool eos {false};
/foundation/multimedia/media_foundation/engine/plugin/plugins/ffmpeg_adapter/audio_encoder/
H A Daudio_ffmpeg_encoder_plugin.cpp414 bool eos = false; in SendBufferLocked() local
416 // eos buffer in SendBufferLocked()
417 eos = true; in SendBufferLocked()
430 if (!eos) { in SendBufferLocked()
434 if (!eos && inputFrame) { in SendBufferLocked()
479 MEDIA_LOG_I("eos received"); in ReceiveBufferLocked()
/foundation/multimedia/media_foundation/engine/plugin/plugins/demuxer/aac_demuxer/
H A Daac_demuxer_plugin.h76 bool eos {false};
H A Daac_demuxer_plugin.cpp142 ioContext_.eos = true;
253 ioContext_.eos = false; in Reset()
/foundation/multimedia/media_foundation/engine/plugin/plugins/demuxer/minimp4_demuxer/
H A Dminimp4_demuxer_plugin.h62 bool eos {false};
H A Dminimp4_demuxer_plugin.cpp108 ioContext_.eos = false; in Reset()
234 ioContext_.eos = true; in GetDataFromSource()
/foundation/multimedia/media_foundation/engine/include/pipeline/filters/muxer/
H A Dmuxer_filter.h61 bool eos; member
/foundation/multimedia/media_foundation/engine/plugin/plugins/ffmpeg_adapter/demuxer/
H A Dffmpeg_demuxer_plugin.h74 bool eos {false};
H A Dffmpeg_demuxer_plugin.cpp136 ioContext_.eos = false; in Reset()
550 ioContext->eos = true; in AVReadPacket()
/foundation/multimedia/media_foundation/engine/pipeline/filters/muxer/
H A Dmuxer_filter.cpp279 item.eos = true; in UpdateEosState()
281 if (item.eos) { in UpdateEosState()
/foundation/multimedia/media_foundation/engine/plugin/plugins/minimp3_adapter/
H A Dminimp3_demuxer_plugin.h112 bool eos {false};
H A Dminimp3_demuxer_plugin.cpp149 ioContext_.eos = true; in GetDataFromSource()
341 ioContext_.eos = false; in Reset()
/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/src/hardware/
H A Dheif_hw_decoder.cpp494 bool eos = false; in SendInputBufferLoop() local
496 while (!eos && !HasError()) { in SendInputBufferLoop()
521 eos = (size == 0); in SendInputBufferLoop()
625 LOGD("output eos, quit loop"); in ReceiveOutputBufferLoop()
/foundation/multimedia/av_codec/services/engine/codec/video/hcodec/
H A Dhcodec.cpp824 HLOGI("got input eos"); in UserFlagToOmxFlag()
840 HLOGI("got output eos"); in OmxFlagToUserFlag()
918 HLOGI("input already eos, keep this buffer"); in OnQueueInputBuffer()
921 bool eos = (info->omxBuffer->flag & OMX_BUFFERFLAG_EOS); in OnQueueInputBuffer() local
922 if (!eos && info->omxBuffer->filledLen == 0) { in OnQueueInputBuffer()
923 HLOGI("this is not a eos buffer but not filled, ask user to re-fill it"); in OnQueueInputBuffer()
927 if (eos) { in OnQueueInputBuffer()
1013 HLOGI("output eos, keep this buffer"); in OnOMXFillBufferDone()
1016 bool eos = (info.omxBuffer->flag & OMX_BUFFERFLAG_EOS); in OnOMXFillBufferDone() local
1017 if (!eos in OnOMXFillBufferDone()
[all...]
H A Dhcodec_dfx.cpp74 bool eos = isInput ? inputPortEos_ : outputPortEos_; in PrintAllBufferInfo() local
84 HLOGI("%s: eos=%d, cnt=%" PRIu64 ", %d/%d/%d/%d, %s", inOutStr, eos, cnt, in PrintAllBufferInfo()
102 s << " " << "eos:" << inputPortEos_ << ", etb:" << inTotalCnt_ in OnGetHidumperInfo()
111 s << " " << "eos:" << outputPortEos_ << ", fbd:" << outRecord_.totalCnt in OnGetHidumperInfo()
/foundation/multimedia/av_codec/services/media_engine/plugins/ffmpeg_adapter/demuxer/
H A Dffmpeg_demuxer_plugin.h98 bool eos {false};
H A Dffmpeg_demuxer_plugin.cpp331 ioContext_.eos = false; in Reset()
669 if (ffmpegRet == AVERROR_EOF) { // eos in ReadPacketToCacheQueue()
673 FALSE_RETURN_V_MSG_E(ret == Status::OK, ret, "Push eos failed"); in ReadPacketToCacheQueue()
745 if (ioContext->dataSource->IsDash() && ioContext->eos == true) { in CheckContextIsValid()
746 MEDIA_LOG_I("Read eos"); in CheckContextIsValid()
797 ioContext->eos = true; in AVReadPacket()
945 ioContext_.eos = false; in SetDataSource()
1361 MEDIA_LOG_I("Track:" PUBLIC_LOG_D32 " eos [" PUBLIC_LOG_D64 "/" PUBLIC_LOG_D64 "/" PUBLIC_LOG_D64 "]", in ReadSample()
1402 MEDIA_LOG_I("Track " PUBLIC_LOG_D32 " eos", trackId); in GetNextSampleSize()
H A Dffmpeg_reference_parser.cpp152 parserRefIoContext_.eos = false; in InitIoContext()

Completed in 20 milliseconds