--- interpolate8x8.h 2003/02/15 15:22:18 1.10 +++ interpolate8x8.h 2003/06/09 01:20:59 1.10.2.1 @@ -124,7 +124,7 @@ { int32_t ddx, ddy; - switch (((dx & 1) << 1) + (dy & 1)) // ((dx%2)?2:0)+((dy%2)?1:0) + switch (((dx & 1) << 1) + (dy & 1)) /* ((dx%2)?2:0)+((dy%2)?1:0) */ { case 0: ddx = dx / 2; @@ -206,7 +206,7 @@ { int32_t ddx, ddy; - switch (((dx & 1) << 1) + (dy & 1)) // ((dx%2)?2:0)+((dy%2)?1:0) + switch (((dx & 1) << 1) + (dy & 1)) /* ((dx%2)?2:0)+((dy%2)?1:0) */ { case 0: return (uint8_t *)refn + (int)((y + dy/2) * stride + x + dx/2);