diff options
author | James Cowgill <james410@cowgill.org.uk> | 2015-02-26 13:42:44 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-02-26 15:46:14 +0100 |
commit | 390771481ab712a2835397b569288c4c541dc2a0 (patch) | |
tree | ccbc21ef6e994ebcbe2d0bef344bf9cf99a6723d /libavcodec/mips | |
parent | 213e823dc6bcd965eb212bc820bf0c5a3617103c (diff) | |
download | ffmpeg-390771481ab712a2835397b569288c4c541dc2a0.tar.gz |
mips/aacpsdsp: fix definition of ps_decorrelate_mips
Q_fract should have be declared as 'const float*'.
Also fix the constness of some local variables affected by this.
Signed-off-by: James Cowgill <james410@cowgill.org.uk>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/mips')
-rw-r--r-- | libavcodec/mips/aacpsdsp_mips.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/mips/aacpsdsp_mips.c b/libavcodec/mips/aacpsdsp_mips.c index 4730a7f714..06d99d8e85 100644 --- a/libavcodec/mips/aacpsdsp_mips.c +++ b/libavcodec/mips/aacpsdsp_mips.c @@ -277,7 +277,7 @@ static void ps_mul_pair_single_mips(float (*dst)[2], float (*src0)[2], float *sr static void ps_decorrelate_mips(float (*out)[2], float (*delay)[2], float (*ap_delay)[PS_QMF_TIME_SLOTS + PS_MAX_AP_DELAY][2], - const float phi_fract[2], float (*Q_fract)[2], + const float phi_fract[2], const float (*Q_fract)[2], const float *transient_gain, float g_decay_slope, int len) @@ -285,8 +285,8 @@ static void ps_decorrelate_mips(float (*out)[2], float (*delay)[2], float *p_delay = &delay[0][0]; float *p_out = &out[0][0]; float *p_ap_delay = &ap_delay[0][0][0]; - float *p_t_gain = (float*)transient_gain; - float *p_Q_fract = &Q_fract[0][0]; + const float *p_t_gain = transient_gain; + const float *p_Q_fract = &Q_fract[0][0]; float ag0, ag1, ag2; float phi_fract0 = phi_fract[0]; float phi_fract1 = phi_fract[1]; |