summaryrefslogtreecommitdiff
path: root/libavcodec/imc.c
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2012-08-05 22:36:09 +0100
committerMans Rullgard <mans@mansr.com>2012-08-06 10:20:48 +0100
commitb40ea0f41d35b9c65eafc7f63e0e9e54b6a12f26 (patch)
tree1d6cb6175c2ad99e6df26c458c871f3115f0940d /libavcodec/imc.c
parentbc90230b98e5194fd5bb629a409a50a3ec3b648b (diff)
imc: remove unused field IMCContext.one_div_log2
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/imc.c')
-rw-r--r--libavcodec/imc.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/imc.c b/libavcodec/imc.c
index 8ee8e72fec..3ae8cc927d 100644
--- a/libavcodec/imc.c
+++ b/libavcodec/imc.c
@@ -92,7 +92,6 @@ typedef struct {
float sqrt_tab[30];
GetBitContext gb;
- float one_div_log2;
DSPContext dsp;
FFTContext fft;
@@ -227,7 +226,6 @@ static av_cold int imc_decode_init(AVCodecContext *avctx)
imc_huffman_bits[i][j], 2, 2, INIT_VLC_USE_NEW_STATIC);
}
}
- q->one_div_log2 = 1 / log(2);
if (avctx->codec_id == CODEC_ID_IAC) {
iac_generate_tabs(q, avctx->sample_rate);