Mercurial > libavcodec.hg
diff xsubenc.c @ 10091:8e1fbf9b0858 libavcodec
100l typo, xsub encoder printed end time hours where minutes should have been.
| author | reimar |
|---|---|
| date | Wed, 26 Aug 2009 10:08:00 +0000 |
| parents | 4ccec8d051fa |
| children | 8a4984c5cacc |
line wrap: on
line diff
--- a/xsubenc.c Wed Aug 26 09:10:51 2009 +0000 +++ b/xsubenc.c Wed Aug 26 10:08:00 2009 +0000 @@ -154,7 +154,7 @@ 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.
