comparison aac.c @ 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 3030aa991ed1
children e6909fa99317
comparison
equal deleted inserted replaced
8500:2c3d8a3d902c 8501:1c02d905f93e
1480 1480
1481 /** 1481 /**
1482 * Convert spectral data to float samples, applying all supported tools as appropriate. 1482 * Convert spectral data to float samples, applying all supported tools as appropriate.
1483 */ 1483 */
1484 static void spectral_to_sample(AACContext * ac) { 1484 static void spectral_to_sample(AACContext * ac) {
1485 int i, type; 1485 int i;
1486 enum RawDataBlockType type;
1486 for(type = 3; type >= 0; type--) { 1487 for(type = 3; type >= 0; type--) {
1487 for (i = 0; i < MAX_ELEM_ID; i++) { 1488 for (i = 0; i < MAX_ELEM_ID; i++) {
1488 ChannelElement *che = ac->che[type][i]; 1489 ChannelElement *che = ac->che[type][i];
1489 if(che) { 1490 if(che) {
1490 if(type <= TYPE_CPE) 1491 if(type <= TYPE_CPE)