diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2009-04-17 15:35:32 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2009-04-17 15:35:32 +0000 |
commit | 110baa2e9981d392d02dd535953f5a6983a8ae6b (patch) | |
tree | 0df15a43867a6a30b1202e46fa91fdce66a840b9 /libavcodec | |
parent | b716c6c6a6d3109b0a21d352a0738e154245d6ed (diff) | |
download | ffmpeg-110baa2e9981d392d02dd535953f5a6983a8ae6b.tar.gz |
Remove unused variable from wma_decode_block() found by CSA.
Originally committed as revision 18568 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/wmadec.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/wmadec.c b/libavcodec/wmadec.c index 323f69d303..67d934f0f4 100644 --- a/libavcodec/wmadec.c +++ b/libavcodec/wmadec.c @@ -683,9 +683,8 @@ static int wma_decode_block(WMACodecContext *s) next: for(ch = 0; ch < s->nb_channels; ch++) { - int n4, index, n; + int n4, index; - n = s->block_len; n4 = s->block_len / 2; if(s->channel_coded[ch]){ ff_imdct_calc(&s->mdct_ctx[bsize], s->output, s->coefs[ch]); |