1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-15 19:35:49 +00:00

stream_read_word() returns _unsigned_ int

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18382 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
nicodvb 2006-05-03 18:12:38 +00:00
parent c5777d7f53
commit 8622d18bde

View File

@ -153,7 +153,7 @@ static void demux_close_mpg(demuxer_t* demuxer) {
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);