From e8ebd57360bbb05d0321be0c798aabbb8d0fc3f9 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 6 Feb 2007 21:12:48 +0000 Subject: [PATCH] kill debuging code Originally committed as revision 7856 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/wmadec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/wmadec.c b/libavcodec/wmadec.c index 29a18bd795..32b37056c2 100644 --- a/libavcodec/wmadec.c +++ b/libavcodec/wmadec.c @@ -97,8 +97,8 @@ static int wma_decode_init(AVCodecContext * avctx) (extradata[2] << 16) | (extradata[3] << 24); flags2 = extradata[4] | (extradata[5] << 8); } -for(i=0; iextradata_size; i++) - av_log(NULL, AV_LOG_ERROR, "%02X ", extradata[i]); +// for(i=0; iextradata_size; i++) +// av_log(NULL, AV_LOG_ERROR, "%02X ", extradata[i]); s->use_exp_vlc = flags2 & 0x0001; s->use_bit_reservoir = flags2 & 0x0002;