[FFmpeg-cvslog] r12977 - trunk/libavformat/ape.c

kostya subversion
Sat Apr 26 08:29:56 CEST 2008


Author: kostya
Date: Sat Apr 26 08:29:56 2008
New Revision: 12977

Log:
Missing tags in APE is normal situation, so don't print an error.
Resolves issue 437


Modified:
   trunk/libavformat/ape.c

Modified: trunk/libavformat/ape.c
==============================================================================
--- trunk/libavformat/ape.c	(original)
+++ trunk/libavformat/ape.c	Sat Apr 26 08:29:56 2008
@@ -156,7 +156,6 @@ static void ape_parse_tag(AVFormatContex
 
     get_buffer(pb, buf, 8);    /* APETAGEX */
     if (strncmp(buf, "APETAGEX", 8)) {
-        av_log(NULL, AV_LOG_ERROR, "Invalid APE Tags\n");
         return;
     }
 




More information about the ffmpeg-cvslog mailing list