Commit c1270185 authored by cehoyos's avatar cehoyos

Fix timestamp parsing in XSUB decoder.

Patch by Björn Axelsson gecko A acc D umu D se


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@17087 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 4c90e203
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment