diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2011-12-08 12:07:29 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-12-08 13:04:02 +0100 |
commit | e91c08805526758368ceb500f6156aaeaabc3ee8 (patch) | |
tree | 688fa2de96b43694ea43c273e38a47b3af29528f /libavformat/utils.c | |
parent | 06798c6e3b7a6b29f8e14de08f31ca2b056510ff (diff) | |
download | ffmpeg-e91c08805526758368ceb500f6156aaeaabc3ee8.tar.gz |
lavf: lower the log level of "parser not found".
The information is relevant, but under normal circumstances
it raises far too many false alarms.
Signed-off-by: Nicolas George <nicolas.george@normalesup.org>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r-- | libavformat/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index 93827580ae..3e5a7b76dd 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -1271,7 +1271,7 @@ static int read_frame_internal(AVFormatContext *s, AVPacket *pkt) if (st->need_parsing && !st->parser && !(s->flags & AVFMT_FLAG_NOPARSE)) { st->parser = av_parser_init(st->codec->codec_id); if (!st->parser) { - av_log(s, AV_LOG_WARNING, "parser not found for codec " + av_log(s, AV_LOG_VERBOSE, "parser not found for codec " "%s, packets or times may be invalid.\n", avcodec_get_name(st->codec->codec_id)); /* no parser available: just output the raw packets */ |