Commit 7057cc86 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'a9221e39'

* commit 'a9221e39':
  electronicarts: Add more sanity checking for the number of channels

Note: This check is probably unnecessary
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 5badcfe2 a9221e39
......@@ -485,7 +485,7 @@ static int ea_read_header(AVFormatContext *s)
}
if (ea->audio_codec) {
if (ea->num_channels <= 0) {
if (ea->num_channels <= 0 || ea->num_channels > 2) {
av_log(s, AV_LOG_WARNING,
"Unsupported number of channels: %d\n", ea->num_channels);
ea->audio_codec = 0;
......
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