diff options
author | Michael Niedermayer <[email protected]> | 2005-06-27 07:09:48 +0000 |
---|---|---|
committer | Michael Niedermayer <[email protected]> | 2005-06-27 07:09:48 +0000 |
commit | edfaf6de29af22d3ec5380293908b76cf449b7db (patch) | |
tree | 858a08e146096e518fcc4110cee670bd0dfc6ecd | |
parent | 80581e9887ce9968516ec4d7a6a450eeec6e4ade (diff) |
better dont read the width/height at all, its random anyway
Originally committed as revision 4398 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/mov.c | 4 |
1 files 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; } |