Commit 8d545aaf authored by reimar's avatar reimar

100l typo, xsub encoder printed end time hours where minutes should have been.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19712 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 7dbf8223
...@@ -154,7 +154,7 @@ static int xsub_encode(AVCodecContext *avctx, unsigned char *buf, ...@@ -154,7 +154,7 @@ static int xsub_encode(AVCodecContext *avctx, unsigned char *buf,
snprintf(buf, 28, snprintf(buf, 28,
"[%02d:%02d:%02d.%03d-%02d:%02d:%02d.%03d]", "[%02d:%02d:%02d.%03d-%02d:%02d:%02d.%03d]",
start_tc[3], start_tc[2], start_tc[1], start_tc[0], start_tc[3], start_tc[2], start_tc[1], start_tc[0],
end_tc[3], end_tc[3], end_tc[1], end_tc[0]); end_tc[3], end_tc[2], end_tc[1], end_tc[0]);
// Width and height must probably be multiples of 2. // Width and height must probably be multiples of 2.
// 2 pixels required on either side of subtitle. // 2 pixels required on either side of subtitle.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment