diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-04-23 06:04:50 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-06-23 16:51:08 +0200 |
commit | ac182d6d8b50f5ee31df8d00868847b05a4ab61f (patch) | |
tree | 2c9b1c462d1ab29676f1037f1d03481e7996ae5a | |
parent | 9cde200ba70f1c252ad6b1b5a13d7fe39626b9ed (diff) | |
download | ffmpeg-ac182d6d8b50f5ee31df8d00868847b05a4ab61f.tar.gz |
avformat/mux: Check for and remove invalid packet durations
Fixes assertion failure
Fixes Ticket3575
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit dc6a17cf74a90e41d70ea1753cdb70c0a5b2ced8)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/mux.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavformat/mux.c b/libavformat/mux.c index eff7caab25..c012e3ab37 100644 --- a/libavformat/mux.c +++ b/libavformat/mux.c @@ -421,6 +421,12 @@ static int compute_pkt_fields2(AVFormatContext *s, AVStream *st, AVPacket *pkt) av_dlog(s, "compute_pkt_fields2: pts:%s dts:%s cur_dts:%s b:%d size:%d st:%d\n", av_ts2str(pkt->pts), av_ts2str(pkt->dts), av_ts2str(st->cur_dts), delay, pkt->size, pkt->stream_index); + if (pkt->duration < 0 && st->codec->codec_type != AVMEDIA_TYPE_SUBTITLE) { + av_log(s, AV_LOG_WARNING, "Packet with invalid duration %d in stream %d\n", + pkt->duration, pkt->stream_index); + pkt->duration = 0; + } + /* duration field */ if (pkt->duration == 0) { ff_compute_frame_duration(&num, &den, st, NULL, pkt); |