summaryrefslogtreecommitdiff
path: root/libavcodec/g729postfilter.c
diff options
context:
space:
mode:
authorVitor Sessak <vitor1001@gmail.com>2011-09-25 20:07:34 +0200
committerMichael Niedermayer <michaelni@gmx.at>2011-09-25 21:17:22 +0200
commit58c61492c64f6d82f7fb514985c7cc1ccaa39313 (patch)
tree81c07a87ec2ec0023f98c56a84cf92a6f2f0cf3e /libavcodec/g729postfilter.c
parent82d99e0b417a1f64821ceae3b5ce032dbb117b54 (diff)
g729dec: fix warnings:
libavcodec/g729postfilter.c: In function ‘long_term_filter’: libavcodec/g729postfilter.c:114: warning: unused variable ‘n’ Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/g729postfilter.c')
-rw-r--r--libavcodec/g729postfilter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/g729postfilter.c b/libavcodec/g729postfilter.c
index 8cc29abbfa..6bd7f646de 100644
--- a/libavcodec/g729postfilter.c
+++ b/libavcodec/g729postfilter.c
@@ -111,7 +111,7 @@ static int16_t long_term_filter(DSPContext *dsp, int pitch_delay_int,
const int16_t* residual, int16_t *residual_filt,
int subframe_size)
{
- int i, k, n, tmp, tmp2;
+ int i, k, tmp, tmp2;
int sum;
int L_temp0;
int L_temp1;