From f2086fb50e0c2370ca4a3a6cc1feb52b6f0681f4 Mon Sep 17 00:00:00 2001 From: Josh Harris Date: Sun, 30 Aug 2009 18:14:22 +0000 Subject: [PATCH] Fix incorrect display of ASF/WMV duration after r12926. Patch by Josh Harris, qt tateu net Originally committed as revision 19748 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/asfdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/asfdec.c b/libavformat/asfdec.c index 0995b5aa82..08f0d6586b 100644 --- a/libavformat/asfdec.c +++ b/libavformat/asfdec.c @@ -245,7 +245,7 @@ static int asf_read_header(AVFormatContext *s, AVFormatParameters *ap) asf_st->stream_language_index = 128; // invalid stream index means no language info if(!(asf->hdr.flags & 0x01)) { // if we aren't streaming... - st->duration = asf->hdr.send_time / + st->duration = asf->hdr.play_time / (10000000 / 1000) - start_time; } get_guid(pb, &g); -- GitLab