From e16c0fc30e4f6ebbb6d49e5616318c60b3a5bc36 Mon Sep 17 00:00:00 2001 From: Aurelien Jacobs Date: Mon, 9 Jul 2007 13:51:06 +0000 Subject: [PATCH] duration must not be scaled Originally committed as revision 9558 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/matroskadec.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c index b1785294b6..d54a867f6e 100644 --- a/libavformat/matroskadec.c +++ b/libavformat/matroskadec.c @@ -2501,7 +2501,6 @@ matroska_parse_blockgroup (MatroskaDemuxContext *matroska, case MATROSKA_ID_BLOCKDURATION: { if ((res = ebml_read_uint(matroska, &id, &duration)) < 0) break; - duration /= matroska->time_scale; break; }