summaryrefslogtreecommitdiffstats
path: root/libmpdemux/mpeg_hdr.h
diff options
context:
space:
mode:
authorlorenm <lorenm@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-04-19 21:17:39 +0000
committerlorenm <lorenm@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-04-19 21:17:39 +0000
commitf3bf706a77be09cc37bd46967abdad286cd20eec (patch)
tree3e6a032f7ef5a3d0daa858d1fe5ad1a07feabada /libmpdemux/mpeg_hdr.h
parent643a40dc0118c9d534ef7c08b1af00f1d322caed (diff)
downloadmpv-f3bf706a77be09cc37bd46967abdad286cd20eec.tar.bz2
mpv-f3bf706a77be09cc37bd46967abdad286cd20eec.tar.xz
integer overflow when reading fps from h264 vui.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15218 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux/mpeg_hdr.h')
-rw-r--r--libmpdemux/mpeg_hdr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpdemux/mpeg_hdr.h b/libmpdemux/mpeg_hdr.h
index c1097b1d51..7eb3c4b9be 100644
--- a/libmpdemux/mpeg_hdr.h
+++ b/libmpdemux/mpeg_hdr.h
@@ -16,7 +16,7 @@ typedef struct {
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;