diff mov.c @ 800:e979dcad0d2f libavformat

better dont read the width/height at all, its random anyway
author michael
date Mon, 27 Jun 2005 07:09:48 +0000
parents 040cf31abb4b
children 6ace9fde011e
line wrap: on
line diff
--- a/mov.c	Mon Jun 27 00:55:29 2005 +0000
+++ b/mov.c	Mon Jun 27 07:09:48 2005 +0000
@@ -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;
 }