diff options
author | Måns Rullgård <mans@mansr.com> | 2010-01-08 17:52:54 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-01-08 17:52:54 +0000 |
commit | 3963a17d0edc86eca5a4c35850e52360e03b6e4e (patch) | |
tree | 62af58d5c4665fd14f875b15e6f4ff9aff0f6a37 /libavcodec/aac.c | |
parent | 101ada9abd92185d80e6011c7c6b96dc15b69292 (diff) | |
download | ffmpeg-3963a17d0edc86eca5a4c35850e52360e03b6e4e.tar.gz |
AAC: add a const to decode_spectrum_and_dequant() args
Originally committed as revision 21099 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/aac.c')
-rw-r--r-- | libavcodec/aac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aac.c b/libavcodec/aac.c index c53d56813d..19b3153f23 100644 --- a/libavcodec/aac.c +++ b/libavcodec/aac.c @@ -866,7 +866,7 @@ static void decode_mid_side_stereo(ChannelElement *cpe, GetBitContext *gb, * @return Returns error status. 0 - OK, !0 - error */ static int decode_spectrum_and_dequant(AACContext *ac, float coef[1024], - GetBitContext *gb, float sf[120], + GetBitContext *gb, const float sf[120], int pulse_present, const Pulse *pulse, const IndividualChannelStream *ics, enum BandType band_type[120]) |