Commit 1342d7b2 authored by Hendrik Leppkes's avatar Hendrik Leppkes

Merge commit 'c49cbecb'

* commit 'c49cbecb':
  dnxhddec: Decode and use interlace mb flag
Merged-by: 's avatarHendrik Leppkes <h.leppkes@gmail.com>
parents b3bf41cb c49cbecb
......@@ -401,8 +401,9 @@ static int dnxhd_decode_macroblock(const DNXHDContext *ctx, RowContext *row,
if (ctx->mbaff) {
interlaced_mb = get_bits1(&row->gb);
qscale = get_bits(&row->gb, 10);
} else
} else {
qscale = get_bits(&row->gb, 11);
}
act = get_bits1(&row->gb);
if (act) {
static int warned = 0;
......
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