diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2008-04-26 06:29:56 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2008-04-26 06:29:56 +0000 |
commit | c5497b22b700a1f2db54f6cf9527745de5375c27 (patch) | |
tree | bb0db11a004944c6b718850779514a9f1d234e3e /libavformat/ape.c | |
parent | 630e1b27c2f9a6327c994d136143ca1df7ce4677 (diff) | |
download | ffmpeg-c5497b22b700a1f2db54f6cf9527745de5375c27.tar.gz |
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.c | 1 |
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; } |