diff libmpdemux/mpeg_hdr.h @ 15217:d49091f2206c

integer overflow when reading fps from h264 vui.
author lorenm
date Tue, 19 Apr 2005 21:17:39 +0000
parents e9c9fbc78092
children 04dd5945fab8
line wrap: on
line diff
--- a/libmpdemux/mpeg_hdr.h	Tue Apr 19 06:48:33 2005 +0000
+++ b/libmpdemux/mpeg_hdr.h	Tue Apr 19 21:17:39 2005 +0000
@@ -16,7 +16,7 @@
     int top_field_first;
     int display_time; // secs*100
     //the following are for mpeg4
-    int timeinc_resolution, timeinc_bits, timeinc_unit;
+    unsigned int timeinc_resolution, timeinc_bits, timeinc_unit;
     int picture_type;
 } mp_mpeg_header_t;