vc1dec: vc1_mc_4mv_chroma4: match addressing between compensation and MC

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2013-04-24 20:42:07 +02:00
parent e85ea7d387
commit 90c2e40ebb
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}
}
}