mirror of
https://github.com/mpv-player/mpv
synced 2024-11-07 01:47:00 +01:00
fixed %d->PRIu64 in read_mpeg_timestamp()
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18383 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
8622d18bde
commit
78577530ca
@ -162,7 +162,7 @@ static unsigned long long read_mpeg_timestamp(stream_t *s,int c){
|
||||
return 0; // invalid pts
|
||||
}
|
||||
pts=(((uint64_t)((c>>1)&7))<<30)|((d>>1)<<15)|(e>>1);
|
||||
mp_dbg(MSGT_DEMUX,MSGL_DBG3,"{%d}",pts);
|
||||
mp_dbg(MSGT_DEMUX,MSGL_DBG3," pts {%"PRIu64"}",pts);
|
||||
return pts;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user