From 1098e8d2369cbcf5c56f6be041ae2df88b99649b Mon Sep 17 00:00:00 2001 From: Robert Swain Date: Thu, 21 Aug 2008 11:29:28 +0000 Subject: [PATCH] Remove unused variable Originally committed as revision 14880 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/aac.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/aac.c b/libavcodec/aac.c index ef2e9586a4..432edf062c 100644 --- a/libavcodec/aac.c +++ b/libavcodec/aac.c @@ -1112,7 +1112,7 @@ static int decode_extension_payload(AACContext * ac, GetBitContext * gb, int cnt */ static void apply_tns(float coef[1024], TemporalNoiseShaping * tns, IndividualChannelStream * ics, int decode) { const int mmm = FFMIN(ics->tns_max_bands, ics->max_sfb); - int w, filt, m, i, ib; + int w, filt, m, i; int bottom, top, order, start, end, size, inc; float lpc[TNS_MAX_ORDER];