mirror of
https://github.com/mpv-player/mpv
synced 2025-03-05 05:37:37 +00:00
Small format fixes.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11468 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
fb744fcef8
commit
76264802b3
@ -478,7 +478,7 @@ void demux_ogg_build_syncpoints_table(demuxer_t* demuxer) {
|
||||
while(1) {
|
||||
np = ogg_sync_pageseek(sync,page);
|
||||
if(np < 0) { // We had to skip some bytes
|
||||
mp_msg(MSGT_DEMUX,MSGL_ERR,"Bad page sync while building syncpoints table (%ld)\n",-np);
|
||||
mp_msg(MSGT_DEMUX,MSGL_ERR,"Bad page sync while building syncpoints table (%d)\n",-np);
|
||||
pos += -np;
|
||||
continue;
|
||||
}
|
||||
@ -517,7 +517,7 @@ void demux_ogg_build_syncpoints_table(demuxer_t* demuxer) {
|
||||
if(p > 1 || (p == 1 && ! ogg_page_continued(page)))
|
||||
last_pos = pos;
|
||||
pos += np;
|
||||
mp_msg(MSGT_DEMUX,MSGL_INFO,"Building syncpoint table %d%\r",pos*100/s->end_pos);
|
||||
mp_msg(MSGT_DEMUX,MSGL_INFO,"Building syncpoint table %d%%\r",(int)(pos*100/s->end_pos));
|
||||
}
|
||||
mp_msg(MSGT_DEMUX,MSGL_INFO,"\n");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user