Commit 9bdff8bb authored by pross's avatar pross

do not create Electronic Arts audio stream when unsupported revision2 audio...

do not create Electronic Arts audio stream when unsupported revision2 audio codec is present [issue1516]


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@21116 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 87278acd
......@@ -192,6 +192,7 @@ static int process_audio_header_elements(AVFormatContext *s)
case 16: ea->audio_codec = CODEC_ID_MP3; break;
case -1: break;
default:
ea->audio_codec = 0;
av_log(s, AV_LOG_ERROR, "unsupported stream type; revision2=%i\n", revision2);
return 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