1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

Remove unused variable from wma_decode_block() found by CSA.

Originally committed as revision 18568 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2009-04-17 15:35:32 +00:00
parent b716c6c6a6
commit 110baa2e99

View File

@ -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]);