diff options
| author | Andree Buschmann <AndreeBuschmann@t-online.de> | 2010-05-02 16:32:05 +0000 |
|---|---|---|
| committer | Andree Buschmann <AndreeBuschmann@t-online.de> | 2010-05-02 16:32:05 +0000 |
| commit | 13075dea876898afdb195056d22a921b18cd4450 (patch) | |
| tree | 899818b5cf5ae52763d2da3976602f5a258618b8 /apps/codecs | |
| parent | 703608d8c50d542c87514239b697bae75a7d0acc (diff) | |
| download | rockbox-13075dea876898afdb195056d22a921b18cd4450.zip rockbox-13075dea876898afdb195056d22a921b18cd4450.tar.gz rockbox-13075dea876898afdb195056d22a921b18cd4450.tar.bz2 rockbox-13075dea876898afdb195056d22a921b18cd4450.tar.xz | |
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')
| -rw-r--r-- | apps/codecs/libmad/synth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/libmad/synth.c b/apps/codecs/libmad/synth.c index 15c1f9d..d51d291 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)); |