Commit ae4bb6c4 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '77ab341c'

* commit '77ab341c':
  aacdec: add default case in channel layout

Conflicts:
	libavcodec/aacdec.c

Note, the default case is currently unreachable

See: a48b8903Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents df82125a 77ab341c
......@@ -703,6 +703,7 @@ static void decode_channel_map(uint8_t layout_map[][3],
syn_ele = TYPE_LFE;
break;
default:
// AAC_CHANNEL_OFF has no channel map
av_assert0(0);
}
layout_map[0][0] = syn_ele;
......
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