--- branches/dev-api-3/xvidcore/src/image/interpolate8x8.h 2002/12/28 15:34:29 744 +++ branches/dev-api-3/xvidcore/src/image/interpolate8x8.h 2002/12/28 15:40:41 745 @@ -403,10 +403,7 @@ switch((y_frac << 2) | (x_frac)) { case 0: - transfer8x8_copy(dst, src, stride); - transfer8x8_copy(dst+8, src+8, stride); - transfer8x8_copy(dst+8*stride, src+8*stride, stride); - transfer8x8_copy(dst+8*stride+8, src+8*stride+8, stride); + transfer16x16_copy(dst, src, stride); break; case 1: @@ -544,4 +541,5 @@ break; } } + #endif