OSDN Git Service

Missing tags in APE is normal situation, so don't print an error.
authorKostya Shishkov <kostya.shishkov@gmail.com>
Sat, 26 Apr 2008 06:29:56 +0000 (06:29 +0000)
committerKostya Shishkov <kostya.shishkov@gmail.com>
Sat, 26 Apr 2008 06:29:56 +0000 (06:29 +0000)
Resolves issue 437

Originally committed as revision 12977 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/ape.c

index a90f887..9d7ee6e 100644 (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;
     }