Commit 77f8c4aa authored by kostya's avatar kostya

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

Resolves issue 437


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12977 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 3ead9c55
...@@ -156,7 +156,6 @@ static void ape_parse_tag(AVFormatContext *s) ...@@ -156,7 +156,6 @@ static void ape_parse_tag(AVFormatContext *s)
get_buffer(pb, buf, 8); /* APETAGEX */ get_buffer(pb, buf, 8); /* APETAGEX */
if (strncmp(buf, "APETAGEX", 8)) { if (strncmp(buf, "APETAGEX", 8)) {
av_log(NULL, AV_LOG_ERROR, "Invalid APE Tags\n");
return; return;
} }
......
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