Merge "Remove redundant mv_pred use for sub8x8 blocks"

This commit is contained in:
Jingning Han 2013-09-23 08:47:21 -07:00 committed by Gerrit Code Review
commit 54c87058bf

View File

@ -2296,7 +2296,7 @@ static void setup_buffer_inter(VP9_COMP *cpi, MACROBLOCK *x,
// Further refinement that is encode side only to test the top few candidates
// in full and choose the best as the centre point for subsequent searches.
// The current implementation doesn't support scaling.
if (!vp9_is_scaled(&scale[frame_type]))
if (!vp9_is_scaled(&scale[frame_type]) && block_size >= BLOCK_8X8)
mv_pred(cpi, x, yv12_mb[frame_type][0].buf, yv12->y_stride,
frame_type, block_size);
}