Merge "Fix highbd inter prediction filter sse4 overwriting issue" into nextgenv2

This commit is contained in:
Jingning Han
2016-07-13 21:35:29 +00:00
committed by Gerrit Code Review

View File

@@ -276,6 +276,9 @@ void vp10_highbd_convolve_horiz_sse4_1(const uint16_t *src, int src_stride,
blkHeight--;
}
if (blkResidu == 0)
return;
for (col = 0; col < w; col += 4) {
for (i = 0; i < 4; ++i) {
highbd_filter_horiz(srcPtr, src_stride, verf, tapsNum, temp + (i * 4));