From ffe2c09d4658882e5debabb9ab59ce6b3c9b7591 Mon Sep 17 00:00:00 2001 From: Björn Axelsson Date: Mon, 9 Feb 2009 00:18:26 +0000 Subject: Fix timestamp parsing in XSUB decoder. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Patch by Björn Axelsson gecko A acc D umu D se Originally committed as revision 17087 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/xsubdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/xsubdec.c') diff --git a/libavcodec/xsubdec.c b/libavcodec/xsubdec.c index 9ac315b3d7..0274705fb2 100644 --- a/libavcodec/xsubdec.c +++ b/libavcodec/xsubdec.c @@ -28,7 +28,7 @@ static av_cold int decode_init(AVCodecContext *avctx) { } static const uint8_t tc_offsets[9] = { 0, 1, 3, 4, 6, 7, 9, 10, 11 }; -static const uint8_t tc_muls[9] = { 10, 6, 10, 6, 10, 6, 10, 10, 1 }; +static const uint8_t tc_muls[9] = { 10, 6, 10, 6, 10, 10, 10, 10, 1 }; static uint64_t parse_timecode(const uint8_t *buf) { int i; -- cgit v1.2.3