1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

Don't print header bits by default

Originally committed as revision 6210 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Kostya Shishkov 2006-09-09 11:29:17 +00:00
parent 6cf6d0ec1a
commit d429c98208

View 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)
{