1
mirror of https://github.com/mpv-player/mpv synced 2024-09-16 22:19:59 +02: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:
nicodvb 2006-05-03 18:18:25 +00:00
parent 8622d18bde
commit 78577530ca

View File

@ -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;
}