lavc/ppc/svq1enc_altivec: Fix function prototype after dad31083.

Silences a gcc warning:
src/libavcodec/ppc/svq1enc_altivec.c: In function 'ff_svq1enc_init_ppc':
src/libavcodec/ppc/svq1enc_altivec.c:80:26: warning: assignment from incompatible pointer type
This commit is contained in:
Carl Eugen Hoyos 2017-11-01 13:41:18 +01:00
parent a0560d0477
commit f6b9e365cd

View File

@ -31,7 +31,7 @@
#if HAVE_ALTIVEC
static int ssd_int8_vs_int16_altivec(const int8_t *pix1, const int16_t *pix2,
int size)
intptr_t size)
{
int i, size16 = size >> 4;
vector signed char vpix1;