diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2009-08-26 10:08:00 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2009-08-26 10:08:00 +0000 |
commit | 63a78ef1315b451a1faadfdea4d7d6f8c05d0b6a (patch) | |
tree | fed279173d1e9c6150ad992368d92c80bfde4946 /libavcodec | |
parent | 64e657fd2ce872a58808ae1f70d8ee37e525346b (diff) | |
download | ffmpeg-63a78ef1315b451a1faadfdea4d7d6f8c05d0b6a.tar.gz |
100l typo, xsub encoder printed end time hours where minutes should have been.
Originally committed as revision 19712 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/xsubenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/xsubenc.c b/libavcodec/xsubenc.c index 55fcb627f5..dbf2a2f3ab 100644 --- a/libavcodec/xsubenc.c +++ b/libavcodec/xsubenc.c @@ -154,7 +154,7 @@ static int xsub_encode(AVCodecContext *avctx, unsigned char *buf, 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. |