mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-24 03:39:45 +00:00
lavf/mux: don't warn about missing timestamps on attached pictures
This commit is contained in:
parent
dc23e359ef
commit
f8e3ebde56
@ -575,6 +575,7 @@ static int compute_muxer_pkt_fields(AVFormatContext *s, AVStream *st, AVPacket *
|
||||
|
||||
if (!s->internal->missing_ts_warning &&
|
||||
!(s->oformat->flags & AVFMT_NOTIMESTAMPS) &&
|
||||
(!(st->disposition & AV_DISPOSITION_ATTACHED_PIC) || (st->disposition & AV_DISPOSITION_TIMED_THUMBNAILS)) &&
|
||||
(pkt->pts == AV_NOPTS_VALUE || pkt->dts == AV_NOPTS_VALUE)) {
|
||||
av_log(s, AV_LOG_WARNING,
|
||||
"Timestamps are unset in a packet for stream %d. "
|
||||
|
Loading…
Reference in New Issue
Block a user