Mercurial > libavcodec.hg
changeset 8501:1c02d905f93e libavcodec
Reduce number of warnings when compiling with icc by two.
author | cehoyos |
---|---|
date | Sun, 28 Dec 2008 19:48:43 +0000 |
parents | 2c3d8a3d902c |
children | e6909fa99317 |
files | aac.c |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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];