Commit 8909dbb5 authored by michael's avatar michael

Remove unused variable from wma_decode_block() found by CSA.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18568 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent e485aee8
......@@ -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]);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment