diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-09-25 17:19:34 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-10-01 10:24:28 +0200 |
commit | 6f6b0311a339c748b7be5bc15bd496321b3261b2 (patch) | |
tree | 1e79ce99d60cc438d0ea6392ad6920a21f3a9efa /libavcodec/wmadec.c | |
parent | 72eaba5e4ffeba16ec0a7ee7a042b3205840b1d1 (diff) | |
download | ffmpeg-6f6b0311a339c748b7be5bc15bd496321b3261b2.tar.gz |
avcodec: Drop some silly commented-out av_log() invocations
Diffstat (limited to 'libavcodec/wmadec.c')
-rw-r--r-- | libavcodec/wmadec.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/wmadec.c b/libavcodec/wmadec.c index 5ee3742380..db5900e34a 100644 --- a/libavcodec/wmadec.c +++ b/libavcodec/wmadec.c @@ -95,8 +95,6 @@ static int wma_decode_init(AVCodecContext * avctx) } else if (avctx->codec->id == AV_CODEC_ID_WMAV2 && avctx->extradata_size >= 6) { flags2 = AV_RL16(extradata+4); } -// 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; |