Commit a48b8903 authored by Michael Niedermayer's avatar Michael Niedermayer

aacdec: fix "may be used uninitialized" warning

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 21e5dd93
......@@ -572,6 +572,8 @@ static void decode_channel_map(uint8_t layout_map[][3],
case AAC_CHANNEL_LFE:
syn_ele = TYPE_LFE;
break;
default:
av_assert0(0);
}
layout_map[0][0] = syn_ele;
layout_map[0][1] = get_bits(gb, 4);
......
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