diff options
author | Alex Converse <alex.converse@gmail.com> | 2010-08-30 23:48:35 +0000 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2010-08-30 23:48:35 +0000 |
commit | 0e107f7890338aad1190f23997562a6de3ca29e9 (patch) | |
tree | 19aabb8cfbe56532fd84a4b68288b3c75baf5578 /libavcodec/aacpsy.c | |
parent | 76dfe4ebc5c173dcbf75a09d0a2229803d7ae4ab (diff) | |
download | ffmpeg-0e107f7890338aad1190f23997562a6de3ca29e9.tar.gz |
psymodel: Const correct FFPsyWindowInfo.
Originally committed as revision 24999 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/aacpsy.c')
-rw-r--r-- | libavcodec/aacpsy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aacpsy.c b/libavcodec/aacpsy.c index bcdbbd661d..b1bfc7b1a5 100644 --- a/libavcodec/aacpsy.c +++ b/libavcodec/aacpsy.c @@ -387,7 +387,7 @@ static FFPsyWindowInfo psy_3gpp_window(FFPsyContext *ctx, * Calculate band thresholds as suggested in 3GPP TS26.403 */ static void psy_3gpp_analyze(FFPsyContext *ctx, int channel, - const float *coefs, FFPsyWindowInfo *wi) + const float *coefs, const FFPsyWindowInfo *wi) { AacPsyContext *pctx = (AacPsyContext*) ctx->model_priv_data; AacPsyChannel *pch = &pctx->ch[channel]; |