Home
last modified time | relevance | path

Searched refs:streamDuration (Results 1 – 1 of 1) sorted by relevance

/ohos5.0/foundation/multimedia/av_codec/services/media_engine/plugins/ffmpeg_adapter/demuxer/
H A Dffmpeg_demuxer_plugin.cpp152 auto streamDuration = (ConvertTimeFromFFmpeg(avFormatContext.streams[i]->duration, in GetFileDuration() local
154 if (streamDuration > duration) { in GetFileDuration()
156 duration = streamDuration; in GetFileDuration()
192 int64_t streamDuration = stream->duration; in CheckStartTime() local
196 if (streamDuration == AV_NOPTS_VALUE || streamDuration <= 0) { in CheckStartTime()
197 streamDuration = GetStreamDuration(*stream); in CheckStartTime()
199 …"File duration=" PUBLIC_LOG_D64 ", stream duration=" PUBLIC_LOG_D64, fileDuration, streamDuration); in CheckStartTime()
206 if (streamDuration > 0 && timeStamp > streamDuration) { in CheckStartTime()
208 timeStamp = streamDuration; in CheckStartTime()