[Ffmpeg-cvslog] r5473 - trunk/libavformat/mov.c

bcoudurier subversion
Wed Jun 14 00:49:05 CEST 2006


Author: bcoudurier
Date: Wed Jun 14 00:49:05 2006
New Revision: 5473

Modified:
   trunk/libavformat/mov.c

Log:
fix unused computed value

Modified: trunk/libavformat/mov.c
==============================================================================
--- trunk/libavformat/mov.c	(original)
+++ trunk/libavformat/mov.c	Wed Jun 14 00:49:05 2006
@@ -1404,8 +1404,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 */
+    get_be32(pb); /* track width */
+    get_be32(pb); /* track height */
 
     return 0;
 }




More information about the ffmpeg-cvslog mailing list