[FFmpeg-cvslog] r19712 - trunk/libavcodec/xsubenc.c
reimar
subversion
Wed Aug 26 12:08:00 CEST 2009
Author: reimar
Date: Wed Aug 26 12:08:00 2009
New Revision: 19712
Log:
100l typo, xsub encoder printed end time hours where minutes should have been.
Modified:
trunk/libavcodec/xsubenc.c
Modified: trunk/libavcodec/xsubenc.c
==============================================================================
--- trunk/libavcodec/xsubenc.c Wed Aug 26 11:10:51 2009 (r19711)
+++ trunk/libavcodec/xsubenc.c Wed Aug 26 12:08:00 2009 (r19712)
@@ -154,7 +154,7 @@ static int xsub_encode(AVCodecContext *a
snprintf(buf, 28,
"[%02d:%02d:%02d.%03d-%02d:%02d:%02d.%03d]",
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.
// 2 pixels required on either side of subtitle.
More information about the ffmpeg-cvslog
mailing list