Commit 90c2e40e authored by Michael Niedermayer's avatar Michael Niedermayer

vc1dec: vc1_mc_4mv_chroma4: match addressing between compensation and MC

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent e85ea7d3
......@@ -1046,8 +1046,8 @@ static void vc1_mc_4mv_chroma4(VC1Context *v, int dir, int dir2, int avg)
src[i] = lutuv1[src[i]];
src2[i] = lutuv1[src2[i]];
}
src += s->uvlinesize << 1;
src2 += s->uvlinesize << 1;
src += s->uvlinesize << fieldmv;
src2 += s->uvlinesize << fieldmv;
}
}
}
......
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