Mercurial > libavcodec.hg
changeset 8769:6fc3497dc81f libavcodec
Fix timestamp parsing in XSUB decoder.
Patch by Bj«Órn Axelsson gecko A acc D umu D se
author | cehoyos |
---|---|
date | Mon, 09 Feb 2009 00:18:26 +0000 |
parents | 4bb782c7793e |
children | f14d50df103f |
files | xsubdec.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/xsubdec.c Sun Feb 08 23:32:46 2009 +0000 +++ b/xsubdec.c Mon Feb 09 00:18:26 2009 +0000 @@ -28,7 +28,7 @@ } 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;