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.h | |
parent | 430d12196432ded13f011a3bf7690f03c9b2e5d6 (diff) | |
download | ffmpeg-0ba8ba165b84a971dbe9356b57f272dc81410eaf.tar.gz |
aacps: Adjust some const qualifiers to suppress warnings
Diffstat (limited to 'libavcodec/aacpsdsp.h')
-rw-r--r-- | libavcodec/aacpsdsp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aacpsdsp.h b/libavcodec/aacpsdsp.h index 93737d26d3..dc380b10d0 100644 --- a/libavcodec/aacpsdsp.h +++ b/libavcodec/aacpsdsp.h @@ -38,7 +38,7 @@ typedef struct PSDSPContext { int i, int len); void (*decorrelate)(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); |