Commit 737c5ebf authored by Reimar Döffinger's avatar Reimar Döffinger

10l, runbits order was reversed

Originally committed as revision 9937 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent cbb79c0e
......@@ -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) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment