Browse Source

10l, runbits order was reversed

Originally committed as revision 9937 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Reimar Döffinger 18 years ago
parent
commit
737c5ebfc8
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/xsubdec.c

+ 1
- 1
libavcodec/xsubdec.c View File

@@ -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) {


Loading…
Cancel
Save