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
This commit is contained in:
Björn Axelsson 2009-02-09 00:18:26 +00:00 committed by Carl Eugen Hoyos
parent 7a094c6a42
commit ffe2c09d46
1 changed files with 1 additions and 1 deletions

View File

@ -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;