diff options
author | Robert Swain <robert.swain@gmail.com> | 2008-08-21 11:29:28 +0000 |
---|---|---|
committer | Robert Swain <robert.swain@gmail.com> | 2008-08-21 11:29:28 +0000 |
commit | 1098e8d2369cbcf5c56f6be041ae2df88b99649b (patch) | |
tree | 2089a3b1025aece6aad802744d0ea8b240f345f4 /libavcodec/aac.c | |
parent | eb6fc557db4c24bb739856a217c79c4e24491629 (diff) | |
download | ffmpeg-1098e8d2369cbcf5c56f6be041ae2df88b99649b.tar.gz |
Remove unused variable
Originally committed as revision 14880 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/aac.c')
-rw-r--r-- | libavcodec/aac.c | 2 |
1 files changed, 1 insertions, 1 deletions
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]; |