From edfaf6de29af22d3ec5380293908b76cf449b7db Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Mon, 27 Jun 2005 07:09:48 +0000 Subject: [PATCH] better dont read the width/height at all, its random anyway Originally committed as revision 4398 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/mov.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/mov.c b/libavformat/mov.c index 24fe60722a..2e70498651 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -1442,8 +1442,8 @@ static int mov_read_tkhd(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) url_fskip(pb, 36); /* display matrix */ /* those are fixed-point */ - st->codec.width = get_be32(pb) >> 16; /* track width */ - st->codec.height = get_be32(pb) >> 16; /* track height */ + /*st->codec.width =*/ get_be32(pb) >> 16; /* track width */ + /*st->codec.height =*/ get_be32(pb) >> 16; /* track height */ return 0; }