Skip to content
Snippets Groups Projects
Commit c2ea5f06 authored by Alex Beregszaszi's avatar Alex Beregszaszi
Browse files

report to user if mmf with midi found (and not supported)

Originally committed as revision 5308 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 4f26258f
No related branches found
No related tags found
No related merge requests found
......@@ -202,6 +202,10 @@ static int mmf_read_header(AVFormatContext *s,
}
/* Tag = "ATRx", where "x" = track number */
if ((tag & 0xffffff) == MKTAG('M', 'T', 'R', 0)) {
av_log(s, AV_LOG_ERROR, "MIDI like format found, unsupported\n");
return -1;
}
if ((tag & 0xffffff) != MKTAG('A', 'T', 'R', 0)) {
av_log(s, AV_LOG_ERROR, "Unsupported SMAF chunk %08x\n", tag);
return -1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment