# HG changeset patch # User reimar # Date 1186315878 0 # Node ID 06486d4cfa88e525b9599aff01143474a06fefcd # Parent e41873bf253ac2b83b9431e71a7e0db78af96973 10l, runbits order was reversed diff -r e41873bf253a -r 06486d4cfa88 xsubdec.c --- a/xsubdec.c Sun Aug 05 12:11:13 2007 +0000 +++ b/xsubdec.c Sun Aug 05 12:11:18 2007 +0000 @@ -24,7 +24,7 @@ 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) {