[Ffmpeg-cvslog] CVS: ffmpeg/libavformat mov.c,1.86,1.87
Michael Niedermayer CVS
michael
Mon Jun 27 09:09:51 CEST 2005
Update of /cvsroot/ffmpeg/ffmpeg/libavformat
In directory mail:/var2/tmp/cvs-serv502
Modified Files:
mov.c
Log Message:
better dont read the width/height at all, its random anyway
Index: mov.c
===================================================================
RCS file: /cvsroot/ffmpeg/ffmpeg/libavformat/mov.c,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -d -r1.86 -r1.87
--- mov.c 24 Jun 2005 11:43:08 -0000 1.86
+++ mov.c 27 Jun 2005 07:09:48 -0000 1.87
@@ -1442,8 +1442,8 @@
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;
}
More information about the ffmpeg-cvslog
mailing list