diff --git a/libavcodec/imgresample.c b/libavcodec/imgresample.c index 630f2eb2c6b656699f3e1d554565e289a0626118..b1cfab97344fbe18c2fc53a80f60f91396418026 100644 --- a/libavcodec/imgresample.c +++ b/libavcodec/imgresample.c @@ -308,7 +308,7 @@ void v_resample16_altivec(UINT8 *dst, int dst_width, UINT8 *src, int wrap, we opt for aligned writes, as unaligned writes have a huge overhead. To do this, do enough scalar resamples to get dst 16-byte aligned. */ - i = (16-((int)dst) & 0xf) & 0xf; + i = (-(int)dst) & 0xf; while(i>0) { sum = s[0 * wrap] * filter[0] + s[1 * wrap] * filter[1] +