Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2009-09-23 14:33:13 +0400
committerMåns Rullgård <mans@mansr.com>2009-09-23 14:33:13 +0400
commit6044538b3736df47e5e8e8fda96b04338750a782 (patch)
tree7755bd253f354df19649e7b24195a35cfa01f7f5 /libavcodec
parent14600807bbeff1f93e62f97a86175200bcef8d9c (diff)
WMA: use DSPContext.butterflies_float
Originally committed as revision 19981 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/wmadec.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/libavcodec/wmadec.c b/libavcodec/wmadec.c
index 7a65003457..decdbe94ae 100644
--- a/libavcodec/wmadec.c
+++ b/libavcodec/wmadec.c
@@ -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: