diff options
author | nicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-12-04 21:58:07 +0000 |
---|---|---|
committer | nicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-12-04 21:58:07 +0000 |
commit | a176dc29b98c08ad58d86016626aef955c80b3b7 (patch) | |
tree | 34827f0c414f32890fca16ef9f4dd1abf9dc40f3 /libmpdemux | |
parent | 9e365b6032b7d6ae7ae64af2207f5e748f8e52dd (diff) | |
download | mpv-a176dc29b98c08ad58d86016626aef955c80b3b7.tar.bz2 mpv-a176dc29b98c08ad58d86016626aef955c80b3b7.tar.xz |
since display_frames in increased by a possibly negative number it had better be signed
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21501 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux')
-rw-r--r-- | libmpdemux/muxer_mpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpdemux/muxer_mpeg.c b/libmpdemux/muxer_mpeg.c index f59b7b75bf..2b82d0a902 100644 --- a/libmpdemux/muxer_mpeg.c +++ b/libmpdemux/muxer_mpeg.c @@ -169,7 +169,7 @@ typedef struct { int max_tr; uint8_t id, is_mpeg12, telecine; uint64_t vframes; - uint64_t display_frame; + int64_t display_frame; mp_mpeg_header_t picture; int max_buffer_size; buffer_track_t *buffer_track; |