Commit 7e8e1a72 authored by mru's avatar mru

WMA: use DSPContext.butterflies_float

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19981 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
No related merge requests found
......@@ -637,12 +637,7 @@ static int wma_decode_block(WMACodecContext *s)
s->channel_coded[0] = 1;
}
for(i = 0; i < s->block_len; i++) {
a = s->coefs[0][i];
b = s->coefs[1][i];
s->coefs[0][i] = a + b;
s->coefs[1][i] = a - b;
}
s->dsp.butterflies_float(s->coefs[0], s->coefs[1], s->block_len);
}
next:
......
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