avcodec: Drop some silly commented-out av_log() invocations

This commit is contained in:
Diego Biurrun
2012-09-25 17:19:34 +02:00
parent 72eaba5e4f
commit 6f6b0311a3
16 changed files with 7 additions and 64 deletions

View File

@@ -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;