From 85b887bb0ce04a4fdce8c9ffdc55cdbbd70581cf Mon Sep 17 00:00:00 2001 From: cehoyos Date: Sun, 28 Dec 2008 19:48:43 +0000 Subject: [PATCH] Reduce number of warnings when compiling with icc by two. git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16375 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b --- libavcodec/aac.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavcodec/aac.c b/libavcodec/aac.c index e81504161..c9af1c84f 100644 --- a/libavcodec/aac.c +++ b/libavcodec/aac.c @@ -1482,7 +1482,8 @@ static void apply_channel_coupling(AACContext * ac, ChannelElement * cc, * Convert spectral data to float samples, applying all supported tools as appropriate. */ static void spectral_to_sample(AACContext * ac) { - int i, type; + int i; + enum RawDataBlockType type; for(type = 3; type >= 0; type--) { for (i = 0; i < MAX_ELEM_ID; i++) { ChannelElement *che = ac->che[type][i]; -- 2.39.2