diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2007-08-05 12:11:18 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2007-08-05 12:11:18 +0000 |
commit | 737c5ebfc8e67cdb6bc5e6d6bb6e9af13e7989f5 (patch) | |
tree | 004dfb1bc94ab778d0a8090c86eb3892aaf15610 | |
parent | cbb79c0ea858c1114806a762c06a10c5e8b5561e (diff) | |
download | ffmpeg-737c5ebfc8e67cdb6bc5e6d6bb6e9af13e7989f5.tar.gz |
10l, runbits order was reversed
Originally committed as revision 9937 to svn://svn.ffmpeg.org/ffmpeg/trunk
-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 cd327f8231..2a858f60b4 100644 --- a/libavcodec/xsubdec.c +++ b/libavcodec/xsubdec.c @@ -24,7 +24,7 @@ static uint64_t parse_timecode(AVCodecContext *avctx, uint8_t *buf) { return ms; } -static const uint8_t runbits[8] = { 2, 2, 6, 6, 10, 10, 14, 14 }; +static const uint8_t runbits[8] = { 14, 14, 10, 10, 6, 6, 2, 2 }; static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, uint8_t *buf, int buf_size) { |