diff options
author | Michael Giacomelli <giac2000@hotmail.com> | 2008-09-22 15:27:27 +0000 |
---|---|---|
committer | Michael Giacomelli <giac2000@hotmail.com> | 2008-09-22 15:27:27 +0000 |
commit | 009719858678bef82bd834a6d9e0821c8d7c4ed6 (patch) | |
tree | db0c8ac3aa273fbe9231453cfadd2d81c503785e /apps | |
parent | 3dedcfc454c88d585bc7822509fb254532616eab (diff) |
Fix careless typo on my part that broke MP3 playback on Coldfire.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18564 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-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 769e1c11d3..bc7ac742fe 100644 --- a/apps/codecs/libmad/synth.c +++ b/apps/codecs/libmad/synth.c @@ -599,7 +599,7 @@ void synth_full(struct mad_synth *synth, struct mad_frame const *frame, mad_fixed64hi_t hi0, hi1; for (ch = 0; ch < nch; ++ch) { - sbsample = &*frame->sbsample_prev[ch]; + sbsample = &(*frame->sbsample_prev)[ch]; filter = &synth->filter[ch]; phase = synth->phase; pcm = synth->pcm.samples[ch]; |