summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 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,
599 mad_fixed64hi_t hi0, hi1; 599 mad_fixed64hi_t hi0, hi1;
600 600
601 for (ch = 0; ch < nch; ++ch) { 601 for (ch = 0; ch < nch; ++ch) {
602 sbsample = &*frame->sbsample_prev[ch]; 602 sbsample = &(*frame->sbsample_prev)[ch];
603 filter = &synth->filter[ch]; 603 filter = &synth->filter[ch];
604 phase = synth->phase; 604 phase = synth->phase;
605 pcm = synth->pcm.samples[ch]; 605 pcm = synth->pcm.samples[ch];