summaryrefslogtreecommitdiff
path: root/libavcodec/ppc
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <ceffmpeg@gmail.com>2017-11-01 13:41:18 +0100
committerCarl Eugen Hoyos <ceffmpeg@gmail.com>2017-11-01 13:41:18 +0100
commitf6b9e365cd48b96bc8a4af23fb11971bfc263919 (patch)
treea5b6657f29d5e11e95be0ee781b18cbe591b9828 /libavcodec/ppc
parenta0560d0477549eaaa7d002e013bd8376e80873e4 (diff)
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
Diffstat (limited to 'libavcodec/ppc')
-rw-r--r--libavcodec/ppc/svq1enc_altivec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ppc/svq1enc_altivec.c b/libavcodec/ppc/svq1enc_altivec.c
index f63f086602..aa66b40996 100644
--- a/libavcodec/ppc/svq1enc_altivec.c
+++ b/libavcodec/ppc/svq1enc_altivec.c
@@ -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;