From 039341eb43945f02867cfe2fe2514eaec4b81ace Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Sun, 14 Oct 2012 10:37:18 +0000 Subject: [PATCH] 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 --- libavformat/wv.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavformat/wv.c b/libavformat/wv.c index 50e5e5383b..8d9184c1ca 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);