Merge "Correct the condition for border extension"
This commit is contained in:
commit
22d8c156f9
@ -463,7 +463,7 @@ static void dec_build_inter_predictors(MACROBLOCKD *xd, int plane, int block,
|
||||
|
||||
// Do border extension if there is motion or the
|
||||
// width/height is not a multiple of 8 pixels.
|
||||
if (scaled_mv.col || scaled_mv.row ||
|
||||
if (vp9_is_scaled(sf) || scaled_mv.col || scaled_mv.row ||
|
||||
(frame_width & 0x7) || (frame_height & 0x7)) {
|
||||
// Get reference block bottom right coordinate.
|
||||
int x1 = ((x0_16 + (w - 1) * xs) >> SUBPEL_BITS) + 1;
|
||||
|
Loading…
x
Reference in New Issue
Block a user