From b95326da292f4b7085b1d4ddbedc9c2cbe5d5e30 Mon Sep 17 00:00:00 2001 From: Andree Buschmann Date: Sun, 2 May 2010 19:01:37 +0000 Subject: Change naming of arm asm routines in libmad's synthesis to match their functionality. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25784 a1c6a512-1295-4272-9138-f99709370657 --- apps/codecs/libmad/synth.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'apps/codecs/libmad/synth.c') diff --git a/apps/codecs/libmad/synth.c b/apps/codecs/libmad/synth.c index d51d291a09..1575d93667 100644 --- a/apps/codecs/libmad/synth.c +++ b/apps/codecs/libmad/synth.c @@ -880,16 +880,16 @@ void synth_full(struct mad_synth *synth, struct mad_frame const *frame, : "r0", "r1", "r2", "r3", "r4"); \ }) -void synth_full_odd_band (mad_fixed_t *pcm, - mad_fixed_t (*fo)[8], - mad_fixed_t (*fe)[8], - mad_fixed_t const (*D0ptr)[32], - mad_fixed_t const (*D1ptr)[32]); -void synth_full_even_band(mad_fixed_t *pcm, - mad_fixed_t (*fo)[8], - mad_fixed_t (*fe)[8], - mad_fixed_t const (*D0ptr)[32], - mad_fixed_t const (*D1ptr)[32]); +void synth_full_odd_sbsample (mad_fixed_t *pcm, + mad_fixed_t (*fo)[8], + mad_fixed_t (*fe)[8], + mad_fixed_t const (*D0ptr)[32], + mad_fixed_t const (*D1ptr)[32]); +void synth_full_even_sbsample(mad_fixed_t *pcm, + mad_fixed_t (*fo)[8], + mad_fixed_t (*fe)[8], + mad_fixed_t const (*D0ptr)[32], + mad_fixed_t const (*D1ptr)[32]); static void synth_full(struct mad_synth *synth, struct mad_frame const *frame, @@ -937,7 +937,7 @@ void synth_full(struct mad_synth *synth, struct mad_frame const *frame, pcm[0] = SHIFT(MLZ(hi, lo)); pcm += 16; - synth_full_odd_band(pcm, fo, fe, D0ptr, D1ptr); + synth_full_odd_sbsample(pcm, fo, fe, D0ptr, D1ptr); D0ptr += 15; D1ptr += 15; fo += 15; @@ -956,7 +956,7 @@ void synth_full(struct mad_synth *synth, struct mad_frame const *frame, pcm[0] = SHIFT(MLZ(hi, lo)); pcm += 16; - synth_full_even_band(pcm, fo, fe, D0ptr, D1ptr); + synth_full_even_sbsample(pcm, fo, fe, D0ptr, D1ptr); D0ptr += 15; D1ptr += 15; fo += 15; -- cgit v1.2.3