# HG changeset patch # User cehoyos # Date 1230493723 0 # Node ID 1c02d905f93eba9a3d0c38c2c56e4fbf5943cb88 # Parent 2c3d8a3d902c51570257b6a8c8818bcf1ab3d9ac Reduce number of warnings when compiling with icc by two. diff -r 2c3d8a3d902c -r 1c02d905f93e aac.c --- a/aac.c Sun Dec 28 19:44:47 2008 +0000 +++ b/aac.c Sun Dec 28 19:48:43 2008 +0000 @@ -1482,7 +1482,8 @@ * 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];