Mercurial > libavcodec.hg
changeset 5486:06486d4cfa88 libavcodec
10l, runbits order was reversed
author | reimar |
---|---|
date | Sun, 05 Aug 2007 12:11:18 +0000 |
parents | e41873bf253a |
children | 3039b660bf35 |
files | xsubdec.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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) {