1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-03 09:49:58 +02:00

avcodec/ppc/pixblockdsp: Fix type of get_pixels_vsx()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2015-06-01 04:39:56 +02:00
parent 9806cca1eb
commit a1957a4dc1

View File

@ -230,7 +230,7 @@ static void diff_pixels_altivec(int16_t *restrict block, const uint8_t *s1,
#if HAVE_VSX
static void get_pixels_vsx(int16_t *restrict block, const uint8_t *pixels,
int line_size)
ptrdiff_t line_size)
{
int i;
for (i = 0; i < 8; i++) {