PickBestUV: fix VP8Copy16x8 invocation

param order is src, dst

broken in:
66ad372 factorize BPS definition in dsp.h and add VP8Copy16x8

Change-Id: I761f618e3fe31ae7f58953256381f4f16bdb238e
This commit is contained in:
James Zern 2014-12-04 23:12:30 -08:00
parent 441f273f19
commit 9475bef4d7

View File

@ -1067,7 +1067,7 @@ static void PickBestUV(VP8EncIterator* const it, VP8ModeScore* const rd) {
VP8SetIntraUVMode(it, rd->mode_uv); VP8SetIntraUVMode(it, rd->mode_uv);
AddScore(rd, &rd_best); AddScore(rd, &rd_best);
if (dst != dst0) { // copy 16x8 block if needed if (dst != dst0) { // copy 16x8 block if needed
VP8Copy16x8(dst0, dst); VP8Copy16x8(dst, dst0);
} }
} }