Don't print header bits by default
authorKostya Shishkov <kostya.shishkov@gmail.com>
Sat, 9 Sep 2006 11:29:17 +0000 (11:29 +0000)
committerKostya Shishkov <kostya.shishkov@gmail.com>
Sat, 9 Sep 2006 11:29:17 +0000 (11:29 +0000)
Originally committed as revision 6210 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/vc1.c

index dfb5c16..5c6d5f6 100644 (file)
@@ -1130,7 +1130,7 @@ static int decode_sequence_header(AVCodecContext *avctx, GetBitContext *gb)
 {
     VC1Context *v = avctx->priv_data;
 
-    av_log(avctx, AV_LOG_INFO, "Header: %0X\n", show_bits(gb, 32));
+    av_log(avctx, AV_LOG_DEBUG, "Header: %0X\n", show_bits(gb, 32));
     v->profile = get_bits(gb, 2);
     if (v->profile == 2)
     {