Commit ed9696cf authored by stefano's avatar stefano

Downgrade message log level (from AV_LOG_ERROR to AV_LOG_DEBUG) about

skipped metadata packet in FLV demuxer.

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


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19210 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 10703c72
...@@ -344,7 +344,7 @@ static int flv_read_packet(AVFormatContext *s, AVPacket *pkt) ...@@ -344,7 +344,7 @@ static int flv_read_packet(AVFormatContext *s, AVPacket *pkt)
if (type == FLV_TAG_TYPE_META && size > 13+1+4 && 0) if (type == FLV_TAG_TYPE_META && size > 13+1+4 && 0)
flv_read_metabody(s, next); flv_read_metabody(s, next);
else /* skip packet */ 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: skip:
url_fseek(s->pb, next, SEEK_SET); url_fseek(s->pb, next, SEEK_SET);
continue; continue;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment