From d429c9820875ec6d4e5f4c73af1a9d5123363b2f Mon Sep 17 00:00:00 2001 From: Kostya Shishkov Date: Sat, 9 Sep 2006 11:29:17 +0000 Subject: [PATCH] Don't print header bits by default Originally committed as revision 6210 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/vc1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c index dfb5c16c03..5c6d5f6f87 100644 --- a/libavcodec/vc1.c +++ b/libavcodec/vc1.c @@ -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) {