Missing tags in APE is normal situation, so don't print an error.

Resolves issue 437

Originally committed as revision 12977 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Kostya Shishkov 2008-04-26 06:29:56 +00:00
parent 630e1b27c2
commit c5497b22b7

View File

@ -156,7 +156,6 @@ static void ape_parse_tag(AVFormatContext *s)
get_buffer(pb, buf, 8); /* APETAGEX */
if (strncmp(buf, "APETAGEX", 8)) {
av_log(NULL, AV_LOG_ERROR, "Invalid APE Tags\n");
return;
}