diff options
author | Nils Wallménius <nils@rockbox.org> | 2011-06-01 10:28:26 +0000 |
---|---|---|
committer | Nils Wallménius <nils@rockbox.org> | 2011-06-01 10:28:26 +0000 |
commit | 7c6056b352e35c5b12521b35ba193e13f75500be (patch) | |
tree | a53215338a7c78bd47ebb3afedf41c0489a97f4e /apps/codecs/au.c | |
parent | 05a1984eb32dd07bcf5d54c147ace4d6f56a00b4 (diff) |
FS#12140 by Sean Bartell, Make various codec stuff static.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29942 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/au.c')
-rw-r--r-- | apps/codecs/au.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/au.c b/apps/codecs/au.c index e06f931cf9..ef308358f4 100644 --- a/apps/codecs/au.c +++ b/apps/codecs/au.c @@ -58,7 +58,7 @@ static const char support_formats[9][2] = { { AU_FORMAT_ALAW, 8 }, /* 27: G.711 ALAW */ }; -const struct pcm_entry au_codecs[] = { +static const struct pcm_entry au_codecs[] = { { AU_FORMAT_MULAW, get_itut_g711_mulaw_codec }, { AU_FORMAT_PCM, get_linear_pcm_codec }, { AU_FORMAT_IEEE_FLOAT, get_ieee_float_codec }, |