Mercurial > mplayer.hg
changeset 18381:bbf33e805e74
stream_read_word() returns _unsigned_ int
author | nicodvb |
---|---|
date | Wed, 03 May 2006 18:12:38 +0000 |
parents | 841789620ed1 |
children | 8486998ba174 |
files | libmpdemux/demux_mpg.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libmpdemux/demux_mpg.c Wed May 03 17:55:02 2006 +0000 +++ b/libmpdemux/demux_mpg.c Wed May 03 18:12:38 2006 +0000 @@ -153,7 +153,7 @@ static unsigned long long read_mpeg_timestamp(stream_t *s,int c){ - int d,e; + unsigned int d,e; unsigned long long pts; d=stream_read_word(s); e=stream_read_word(s);