mirror of
https://github.com/webmproject/libwebp.git
synced 2025-08-11 02:20:33 +02:00
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:
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user