aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/mov.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2005-06-27 07:09:48 +0000
committerMichael Niedermayer <michaelni@gmx.at>2005-06-27 07:09:48 +0000
commitedfaf6de29af22d3ec5380293908b76cf449b7db (patch)
tree858a08e146096e518fcc4110cee670bd0dfc6ecd /libavformat/mov.c
parent80581e9887ce9968516ec4d7a6a450eeec6e4ade (diff)
downloadffmpeg-edfaf6de29af22d3ec5380293908b76cf449b7db.tar.gz
better dont read the width/height at all, its random anyway
Originally committed as revision 4398 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r--libavformat/mov.c4
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;
}