summaryrefslogtreecommitdiff
path: root/libavformat/ape.c
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2008-04-26 06:29:56 +0000
committerKostya Shishkov <kostya.shishkov@gmail.com>2008-04-26 06:29:56 +0000
commitc5497b22b700a1f2db54f6cf9527745de5375c27 (patch)
treebb0db11a004944c6b718850779514a9f1d234e3e /libavformat/ape.c
parent630e1b27c2f9a6327c994d136143ca1df7ce4677 (diff)
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
Diffstat (limited to 'libavformat/ape.c')
-rw-r--r--libavformat/ape.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/ape.c b/libavformat/ape.c
index a90f887e58..9d7ee6edc8 100644
--- a/libavformat/ape.c
+++ b/libavformat/ape.c
@@ -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;
}