summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThom Johansen <thomj@rockbox.org>2006-04-11 23:33:41 +0000
committerThom Johansen <thomj@rockbox.org>2006-04-11 23:33:41 +0000
commite99dafa2aeca63ec968ba7a391ddfcc53ca3d2af (patch)
tree5fce5a2ed544e9c538da32d0677df87bcb90e802
parent81cb35d42d47303299d5b0b77c473fc3ad6a127f (diff)
downloadrockbox-e99dafa2aeca63ec968ba7a391ddfcc53ca3d2af.zip
rockbox-e99dafa2aeca63ec968ba7a391ddfcc53ca3d2af.tar.gz
rockbox-e99dafa2aeca63ec968ba7a391ddfcc53ca3d2af.tar.bz2
rockbox-e99dafa2aeca63ec968ba7a391ddfcc53ca3d2af.tar.xz
Fix a couple of warnings for GCC 4.1.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9630 a1c6a512-1295-4272-9138-f99709370657
-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 e6955d6..ca53256 100644
--- a/apps/codecs/libmad/synth.c
+++ b/apps/codecs/libmad/synth.c
@@ -768,7 +768,7 @@ void synth_full(struct mad_synth *synth, struct mad_frame const *frame,
{
unsigned int phase, ch, s, sb, pe, po;
mad_fixed_t *pcm1, *pcm2, (*filter)[2][2][16][8];
- mad_fixed_t const (*sbsample)[36][32];
+ mad_fixed_t (*sbsample)[36][32];
register mad_fixed_t (*fe)[8], (*fx)[8], (*fo)[8];
register mad_fixed_t const (*Dptr)[32], *ptr;
register mad_fixed64hi_t hi;
@@ -906,7 +906,7 @@ void synth_half(struct mad_synth *synth, struct mad_frame const *frame,
{
unsigned int phase, ch, s, sb, pe, po;
mad_fixed_t *pcm1, *pcm2, (*filter)[2][2][16][8];
- mad_fixed_t const (*sbsample)[36][32];
+ mad_fixed_t (*sbsample)[36][32];
register mad_fixed_t (*fe)[8], (*fx)[8], (*fo)[8];
register mad_fixed_t const (*Dptr)[32], *ptr;
register mad_fixed64hi_t hi;