From: Paul B Mahol Date: Sun, 14 Oct 2012 10:37:18 +0000 (+0000) Subject: wv: do not report invalid stream duration X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;ds=sidebyside;h=039341eb43945f02867cfe2fe2514eaec4b81ace;p=ffmpeg wv: do not report invalid stream duration If total number of samples is -1 it means stream is of unknown length. Fixes ticket #1777. Signed-off-by: Paul B Mahol --- diff --git a/libavformat/wv.c b/libavformat/wv.c index 50e5e5383b9..8d9184c1ca0 100644 --- a/libavformat/wv.c +++ b/libavformat/wv.c @@ -255,7 +255,8 @@ static int wv_read_header(AVFormatContext *s) st->codec->bits_per_coded_sample = wc->bpp; avpriv_set_pts_info(st, 64, 1, wc->rate); st->start_time = 0; - st->duration = wc->samples; + if (wc->samples != 0xFFFFFFFFu) + st->duration = wc->samples; if (s->pb->seekable) { int64_t cur = avio_tell(s->pb);