summaryrefslogtreecommitdiff
path: root/libavcodec/wmadec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2007-02-06 21:12:48 +0000
committerMichael Niedermayer <michaelni@gmx.at>2007-02-06 21:12:48 +0000
commite8ebd57360bbb05d0321be0c798aabbb8d0fc3f9 (patch)
tree990e9c815ea12ad7f6f81fb8ccebf664bcb675f6 /libavcodec/wmadec.c
parent59686073043b9bb5e186521fe001708a03412d99 (diff)
kill debuging code
Originally committed as revision 7856 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/wmadec.c')
-rw-r--r--libavcodec/wmadec.c4
1 files 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; i<avctx->extradata_size; i++)
- av_log(NULL, AV_LOG_ERROR, "%02X ", extradata[i]);
+// for(i=0; i<avctx->extradata_size; i++)
+// av_log(NULL, AV_LOG_ERROR, "%02X ", extradata[i]);
s->use_exp_vlc = flags2 & 0x0001;
s->use_bit_reservoir = flags2 & 0x0002;