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/libtta | |
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/libtta')
-rw-r--r-- | apps/codecs/libtta/ttadec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/libtta/ttadec.c b/apps/codecs/libtta/ttadec.c index 130cff8b41..aaefe736b9 100644 --- a/apps/codecs/libtta/ttadec.c +++ b/apps/codecs/libtta/ttadec.c @@ -53,7 +53,7 @@ static decoder tta[MAX_NCH] IBSS_ATTR; /* decoder state */ /* Rockbox speciffic: cache is defined in get_samples() (non static value) */ /* static int cache[MAX_NCH]; // decoder cache */ -tta_info *ttainfo IBSS_ATTR; /* currently playing file info */ +static tta_info *ttainfo IBSS_ATTR; /* currently playing file info */ static unsigned int fframes IBSS_ATTR; /* number of frames in file */ static unsigned int framelen IBSS_ATTR; /* the frame length in samples */ |