OSDN Git Service

Downgrade message log level (from AV_LOG_ERROR to AV_LOG_DEBUG) about
authorArt Clarke <aclarke@vlideshow.com>
Tue, 16 Jun 2009 23:14:59 +0000 (23:14 +0000)
committerStefano Sabatini <stefano.sabatini-lala@poste.it>
Tue, 16 Jun 2009 23:14:59 +0000 (23:14 +0000)
skipped metadata packet in FLV demuxer.

Patch by Art Clarke a${surname} At xuggle - com.

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

libavformat/flvdec.c

index f580c5c..f72ae38 100644 (file)
@@ -344,7 +344,7 @@ static int flv_read_packet(AVFormatContext *s, AVPacket *pkt)
         if (type == FLV_TAG_TYPE_META && size > 13+1+4 && 0)
             flv_read_metabody(s, next);
         else /* skip packet */
-            av_log(s, AV_LOG_ERROR, "skipping flv packet: type %d, size %d, flags %d\n", type, size, flags);
+            av_log(s, AV_LOG_DEBUG, "skipping flv packet: type %d, size %d, flags %d\n", type, size, flags);
     skip:
         url_fseek(s->pb, next, SEEK_SET);
         continue;