forked from len0rd/rockbox
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
This commit is contained in:
parent
3dedcfc454
commit
0097198586
1 changed files with 1 additions and 1 deletions
|
|
@ -599,7 +599,7 @@ void synth_full(struct mad_synth *synth, struct mad_frame const *frame,
|
||||||
mad_fixed64hi_t hi0, hi1;
|
mad_fixed64hi_t hi0, hi1;
|
||||||
|
|
||||||
for (ch = 0; ch < nch; ++ch) {
|
for (ch = 0; ch < nch; ++ch) {
|
||||||
sbsample = &*frame->sbsample_prev[ch];
|
sbsample = &(*frame->sbsample_prev)[ch];
|
||||||
filter = &synth->filter[ch];
|
filter = &synth->filter[ch];
|
||||||
phase = synth->phase;
|
phase = synth->phase;
|
||||||
pcm = synth->pcm.samples[ch];
|
pcm = synth->pcm.samples[ch];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue