diff options
author | Stefan Kost <ensonic@users.sf.net> | 2011-02-08 14:16:49 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-02-09 03:33:54 +0100 |
commit | 3e2a4e91bdc1c88927a68f6025b1877530d102f1 (patch) | |
tree | a773f80b782792a7f53ae91325c1f7bdfd3a7371 /libavcodec/vc1.c | |
parent | 17a1919027fc6b0f2ea9b61fc3fecaa3ff080b14 (diff) | |
download | ffmpeg-3e2a4e91bdc1c88927a68f6025b1877530d102f1.tar.gz |
logging: downgrade recoverable errors to warnings
In all 3 cases, the decoding continues and thus a warning would be sufficient.
Helps application that catch them with own log handers to handle them
accordingly.
Signed-off-by: Mans Rullgard <mans@mansr.com>
(cherry picked from commit ae2104791ffa8466d3f6972ed0793b2a165daabe)
Diffstat (limited to 'libavcodec/vc1.c')
-rw-r--r-- | libavcodec/vc1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c index 86904cbffd..1f39878293 100644 --- a/libavcodec/vc1.c +++ b/libavcodec/vc1.c @@ -293,7 +293,7 @@ int vc1_decode_sequence_header(AVCodecContext *avctx, VC1Context *v, GetBitConte v->profile = get_bits(gb, 2); if (v->profile == PROFILE_COMPLEX) { - av_log(avctx, AV_LOG_ERROR, "WMV3 Complex Profile is not fully supported\n"); + av_log(avctx, AV_LOG_WARNING, "WMV3 Complex Profile is not fully supported\n"); } if (v->profile == PROFILE_ADVANCED) |