From: Aurelien Jacobs Date: Mon, 9 Jul 2007 13:51:06 +0000 (+0000) Subject: duration must not be scaled X-Git-Tag: v0.5~8441 X-Git-Url: http://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff_plain/e16c0fc30e4f6ebbb6d49e5616318c60b3a5bc36 duration must not be scaled Originally committed as revision 9558 to svn://svn.ffmpeg.org/ffmpeg/trunk --- 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; }