summaryrefslogtreecommitdiff
path: root/libavcodec/adpcm.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2012-09-25 17:19:34 +0200
committerDiego Biurrun <diego@biurrun.de>2012-10-01 10:24:28 +0200
commit6f6b0311a339c748b7be5bc15bd496321b3261b2 (patch)
tree1e79ce99d60cc438d0ea6392ad6920a21f3a9efa /libavcodec/adpcm.c
parent72eaba5e4ffeba16ec0a7ee7a042b3205840b1d1 (diff)
avcodec: Drop some silly commented-out av_log() invocations
Diffstat (limited to 'libavcodec/adpcm.c')
-rw-r--r--libavcodec/adpcm.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/adpcm.c b/libavcodec/adpcm.c
index 19772b0cf7..a48cee2f9b 100644
--- a/libavcodec/adpcm.c
+++ b/libavcodec/adpcm.c
@@ -356,7 +356,6 @@ static void adpcm_swf_decode(AVCodecContext *avctx, const uint8_t *buf, int buf_
//read bits & initial values
nb_bits = get_bits(&gb, 2)+2;
- //av_log(NULL,AV_LOG_INFO,"nb_bits: %d\n", nb_bits);
table = swf_index_tables[nb_bits-2];
k0 = 1 << (nb_bits-2);
signmask = 1 << (nb_bits-1);