Merge "Correct the condition for border extension"

This commit is contained in:
Yaowu Xu 2014-09-24 14:09:45 -07:00 committed by Gerrit Code Review
commit 22d8c156f9

View File

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