Commit 257c7147 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

Use enum and constant to avoid three icc warnings.

Originally committed as revision 20874 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 798e589d
......@@ -1645,8 +1645,9 @@ static void apply_channel_coupling(AACContext *ac, ChannelElement *cc,
*/
static void spectral_to_sample(AACContext *ac)
{
int i, type;
for (type = 3; type >= 0; type--) {
enum RawDataBlockType type;
for (type = TYPE_LFE; type >= TYPE_SCE; type--) {
int i;
for (i = 0; i < MAX_ELEM_ID; i++) {
ChannelElement *che = ac->che[type][i];
if (che) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment