diff options
author | Björn Axelsson <gecko@acc.umu.se> | 2009-02-09 00:18:26 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2009-02-09 00:18:26 +0000 |
commit | ffe2c09d4658882e5debabb9ab59ce6b3c9b7591 (patch) | |
tree | d8766779b18ec5a776652aab9e95171827ff4ec7 /libavcodec/xsubdec.c | |
parent | 7a094c6a4235192adaf9162e54a3f1259b431400 (diff) | |
download | ffmpeg-ffe2c09d4658882e5debabb9ab59ce6b3c9b7591.tar.gz |
Fix timestamp parsing in XSUB decoder.
Patch by Björn Axelsson gecko A acc D umu D se
Originally committed as revision 17087 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/xsubdec.c')
-rw-r--r-- | libavcodec/xsubdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |