summaryrefslogtreecommitdiffstats
path: root/apps/codecs/libmad/synth.c
diff options
context:
space:
mode:
authorAndree Buschmann <AndreeBuschmann@t-online.de>2010-05-02 16:32:05 +0000
committerAndree Buschmann <AndreeBuschmann@t-online.de>2010-05-02 16:32:05 +0000
commit13075dea876898afdb195056d22a921b18cd4450 (patch)
tree899818b5cf5ae52763d2da3976602f5a258618b8 /apps/codecs/libmad/synth.c
parent703608d8c50d542c87514239b697bae75a7d0acc (diff)
downloadrockbox-13075dea876898afdb195056d22a921b18cd4450.tar.gz
rockbox-13075dea876898afdb195056d22a921b18cd4450.zip
Fix a bug introduced with r25777.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25779 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libmad/synth.c')
-rw-r--r--apps/codecs/libmad/synth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/libmad/synth.c b/apps/codecs/libmad/synth.c
index 15c1f9decc..d51d291a09 100644
--- a/apps/codecs/libmad/synth.c
+++ b/apps/codecs/libmad/synth.c
@@ -931,7 +931,7 @@ void synth_full(struct mad_synth *synth, struct mad_frame const *frame,
if(s & 1)
{
ptr = *D0ptr;
- PROD_O(hi, lo, *fo, ptr+1);
+ PROD_O(hi, lo, *fx, ptr+1);
MLN(hi, lo);
PROD_A(hi, lo, *fe, ptr);
pcm[0] = SHIFT(MLZ(hi, lo));