diff options
author | Kostya Shishkov | 2007-02-03 06:43:06 +0000 |
---|---|---|
committer | Kostya Shishkov | 2007-02-03 06:43:06 +0000 |
commit | f0a85d5f5cb3f4c5d41529f5042cdf168fc8d937 (patch) | |
tree | 183170396e14d98792ac089625e856f0945e1cb2 /libavcodec | |
parent | e7cf38e556a8e1fd3a7e34b0b7b9dc7eee441cec (diff) |
These messages are just for debug purposes
Originally committed as revision 7811 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/vc1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c index bd24de45e8..2fb2ae2837 100644 --- a/libavcodec/vc1.c +++ b/libavcodec/vc1.c @@ -1304,10 +1304,10 @@ static int decode_sequence_header_adv(VC1Context *v, GetBitContext *gb) } if(get_bits1(gb)) { //Display Info - decoding is not affected by it int w, h, ar = 0; - av_log(v->s.avctx, AV_LOG_INFO, "Display extended info:\n"); + av_log(v->s.avctx, AV_LOG_DEBUG, "Display extended info:\n"); v->s.avctx->width = v->s.width = w = get_bits(gb, 14) + 1; v->s.avctx->height = v->s.height = h = get_bits(gb, 14) + 1; - av_log(v->s.avctx, AV_LOG_INFO, "Display dimensions: %ix%i\n", w, h); + av_log(v->s.avctx, AV_LOG_DEBUG, "Display dimensions: %ix%i\n", w, h); if(get_bits1(gb)) ar = get_bits(gb, 4); if(ar && ar < 14){ |