diff options
author | Carl Eugen Hoyos <ceffmpeg@gmail.com> | 2017-11-01 13:41:18 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <ceffmpeg@gmail.com> | 2017-11-01 13:41:18 +0100 |
commit | f6b9e365cd48b96bc8a4af23fb11971bfc263919 (patch) | |
tree | a5b6657f29d5e11e95be0ee781b18cbe591b9828 /libavcodec/ppc | |
parent | a0560d0477549eaaa7d002e013bd8376e80873e4 (diff) | |
download | ffmpeg-f6b9e365cd48b96bc8a4af23fb11971bfc263919.tar.gz |
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.c | 2 |
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; |