diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2006-09-09 11:29:17 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2006-09-09 11:29:17 +0000 |
commit | d429c9820875ec6d4e5f4c73af1a9d5123363b2f (patch) | |
tree | 31cfcdc07d67418d65b7b4a8f67931c0ec049800 /libavcodec | |
parent | 6cf6d0ec1a55d7b72530f546ad4e5c5ffa974448 (diff) | |
download | ffmpeg-d429c9820875ec6d4e5f4c73af1a9d5123363b2f.tar.gz |
Don't print header bits by default
Originally committed as revision 6210 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-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 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) { |