summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/codecs/libmad/synth.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/libmad/synth.c b/apps/codecs/libmad/synth.c
index b1a8491a69..769e1c11d3 100644
--- a/apps/codecs/libmad/synth.c
+++ b/apps/codecs/libmad/synth.c
@@ -1194,7 +1194,7 @@ void synth_full(struct mad_synth *synth, struct mad_frame const *frame,
1194 int p, sb; 1194 int p, sb;
1195 unsigned int phase, ch, s; 1195 unsigned int phase, ch, s;
1196 mad_fixed_t *pcm, (*filter)[2][2][16][8]; 1196 mad_fixed_t *pcm, (*filter)[2][2][16][8];
1197 mad_fixed_t const (*sbsample)[36][32]; 1197 mad_fixed_t (*sbsample)[36][32];
1198 mad_fixed_t (*fe)[8], (*fx)[8], (*fo)[8]; 1198 mad_fixed_t (*fe)[8], (*fx)[8], (*fo)[8];
1199 mad_fixed_t const (*D0ptr)[32], *ptr; 1199 mad_fixed_t const (*D0ptr)[32], *ptr;
1200 mad_fixed_t const (*D1ptr)[32]; 1200 mad_fixed_t const (*D1ptr)[32];
@@ -1202,7 +1202,7 @@ void synth_full(struct mad_synth *synth, struct mad_frame const *frame,
1202 mad_fixed64lo_t lo; 1202 mad_fixed64lo_t lo;
1203 1203
1204 for (ch = 0; ch < nch; ++ch) { 1204 for (ch = 0; ch < nch; ++ch) {
1205 sbsample = &frame->sbsample_prev[ch]; 1205 sbsample = &(*frame->sbsample_prev)[ch];
1206 filter = &synth->filter[ch]; 1206 filter = &synth->filter[ch];
1207 phase = synth->phase; 1207 phase = synth->phase;
1208 pcm = synth->pcm.samples[ch]; 1208 pcm = synth->pcm.samples[ch];