Commit ea2099da authored by kostya's avatar kostya

Don't print header bits by default

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@6210 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 4490dfe5
......@@ -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)
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment