diff mbox

[FFmpeg-devel] lavf/mux: don't warn about missing timestamps on attached pictures

Message ID 20161113000158.51823-1-rodger.combs@gmail.com
State Accepted
Commit f8e3ebde56e8f6ad88fc747d6cf29819c4bb0026
Headers show

Commit Message

Rodger Combs Nov. 13, 2016, 12:01 a.m. UTC
---
 libavformat/mux.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Michael Niedermayer Nov. 13, 2016, 1:32 a.m. UTC | #1
On Sat, Nov 12, 2016 at 06:01:58PM -0600, Rodger Combs wrote:
> ---
>  libavformat/mux.c | 1 +
>  1 file changed, 1 insertion(+)

LGTM

thx

[...]
diff mbox

Patch

diff --git a/libavformat/mux.c b/libavformat/mux.c
index 77823a4..963d006 100644
--- a/libavformat/mux.c
+++ b/libavformat/mux.c
@@ -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. "