[FFmpeg-cvslog] r16375 - trunk/libavcodec/aac.c
cehoyos
subversion
Sun Dec 28 20:48:44 CET 2008
Author: cehoyos
Date: Sun Dec 28 20:48:43 2008
New Revision: 16375
Log:
Reduce number of warnings when compiling with icc by two.
Modified:
trunk/libavcodec/aac.c
Modified: trunk/libavcodec/aac.c
==============================================================================
--- trunk/libavcodec/aac.c Sun Dec 28 20:44:47 2008 (r16374)
+++ trunk/libavcodec/aac.c Sun Dec 28 20:48:43 2008 (r16375)
@@ -1482,7 +1482,8 @@ static void apply_channel_coupling(AACCo
* 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];
More information about the ffmpeg-cvslog
mailing list