diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-02-27 23:07:22 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-02-28 18:40:42 +0100 |
commit | 5f1ea0bfc53ac221abf312aeb79cb693f3a6e07d (patch) | |
tree | 7d5e168be1b2ede4bac0292ec6c667777f4283a9 | |
parent | 94f5ac93d783a8becff5488c8837c2debc2c4b18 (diff) | |
download | ffmpeg-5f1ea0bfc53ac221abf312aeb79cb693f3a6e07d.tar.gz |
avcodec/ppc/fdctdsp: fix const warning
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/ppc/fdctdsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ppc/fdctdsp.c b/libavcodec/ppc/fdctdsp.c index f2efc5ddd0..40f4c6c967 100644 --- a/libavcodec/ppc/fdctdsp.c +++ b/libavcodec/ppc/fdctdsp.c @@ -196,7 +196,7 @@ static const vector float fdctconsts[3] = { void ff_fdct_altivec(int16_t *block) { vector signed short *bp; - vector float *cp = fdctconsts; + const vector float *cp = fdctconsts; vector float b00, b10, b20, b30, b40, b50, b60, b70; vector float b01, b11, b21, b31, b41, b51, b61, b71; vector float mzero, cnst, cnsts0, cnsts1, cnsts2; |