diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-04-02 19:03:30 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-04-09 20:39:33 +0200 |
commit | 02c39f056a77427850f43aaa19b8856534a1693a (patch) | |
tree | 7c350f97abd30ec98a6429fc63d256bbbad75151 /libavcodec/ppc/int_altivec.c | |
parent | b073819bc974965056f435d69dc51e9ec5877395 (diff) | |
download | ffmpeg-02c39f056a77427850f43aaa19b8856534a1693a.tar.gz |
ppc: Add/remove a number of const qualifiers to fix related warnings.
Diffstat (limited to 'libavcodec/ppc/int_altivec.c')
-rw-r--r-- | libavcodec/ppc/int_altivec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/ppc/int_altivec.c b/libavcodec/ppc/int_altivec.c index ce996fa68a..f81b478449 100644 --- a/libavcodec/ppc/int_altivec.c +++ b/libavcodec/ppc/int_altivec.c @@ -79,7 +79,8 @@ static int ssd_int8_vs_int16_altivec(const int8_t *pix1, const int16_t *pix2, return u.score[3]; } -static int32_t scalarproduct_int16_altivec(const int16_t * v1, const int16_t * v2, int order, const int shift) +static int32_t scalarproduct_int16_altivec(int16_t *v1, const int16_t *v2, + int order, const int shift) { int i; LOAD_ZERO; |