diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-11-04 19:14:12 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-11-22 08:21:38 +0100 |
commit | 0ba8ba165b84a971dbe9356b57f272dc81410eaf (patch) | |
tree | 688db137b4f71f669e159eb2737501a33b5377a7 /libavcodec/aacpsdsp.c | |
parent | 430d12196432ded13f011a3bf7690f03c9b2e5d6 (diff) | |
download | ffmpeg-0ba8ba165b84a971dbe9356b57f272dc81410eaf.tar.gz |
aacps: Adjust some const qualifiers to suppress warnings
Diffstat (limited to 'libavcodec/aacpsdsp.c')
-rw-r--r-- | libavcodec/aacpsdsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aacpsdsp.c b/libavcodec/aacpsdsp.c index e90c50b6a1..88e731f925 100644 --- a/libavcodec/aacpsdsp.c +++ b/libavcodec/aacpsdsp.c @@ -93,7 +93,7 @@ static void ps_hybrid_synthesis_deint_c(float out[2][38][64], static void ps_decorrelate_c(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) |