summaryrefslogtreecommitdiff
path: root/libavcodec/aac.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at>2008-12-28 19:48:43 +0000
committerCarl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at>2008-12-28 19:48:43 +0000
commit69b38d4dc3b6cb3c1857cc18bc2762469efe602a (patch)
treee669781045b5e922e2e51cb40cdfe8fdf69c69c0 /libavcodec/aac.c
parent3a095bee2ba377d8b8c137097df22a04237e3454 (diff)
Reduce number of warnings when compiling with icc by two.
Originally committed as revision 16375 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/aac.c')
-rw-r--r--libavcodec/aac.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/aac.c b/libavcodec/aac.c
index e815041618..c9af1c84fd 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];