demux_mkv: fix verbose output of chapter numbering

The "Chapter N from..." lines printed with -v used wrong N.
This commit is contained in:
Uoti Urpala 2010-04-24 20:28:09 +03:00
parent 859e956523
commit dd1760e697
1 changed files with 1 additions and 1 deletions

View File

@ -853,7 +853,7 @@ static int demux_mkv_read_chapters(struct demuxer *demuxer)
mp_msg(MSGT_DEMUX, MSGL_V,
"[mkv] Chapter %u from %02d:%02d:%02d.%03d "
"to %02d:%02d:%02d.%03d, %.*s\n", idx,
"to %02d:%02d:%02d.%03d, %.*s\n", i,
(int) (chapter.start / 60 / 60 / 1000),
(int) ((chapter.start / 60 / 1000) % 60),
(int) ((chapter.start / 1000) % 60),