diff options
author | Thom Johansen <thomj@rockbox.org> | 2005-10-13 11:32:52 +0000 |
---|---|---|
committer | Thom Johansen <thomj@rockbox.org> | 2005-10-13 11:32:52 +0000 |
commit | c91e0bbfc9ea289598d2202404eee3a524c7cde1 (patch) | |
tree | 31ac0e5c3e5ec8631dec9695cfc8e5aeb8702a3f /apps/codecs/alac.c | |
parent | f9cc638efd655c3ac392fdaf346ebc5c6dbd258b (diff) |
Cleaned up the messy codec header and library system by merging codec.h, lib/codeclib.[ch] and lib/xxx2wav.[ch] into just codeclib.[ch]. Deleted much of the unused code in the xxx2wav portion. All codecs should now only include codeclib.h, and whatever codec specific headers are needed.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7626 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/alac.c')
-rw-r--r-- | apps/codecs/alac.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/apps/codecs/alac.c b/apps/codecs/alac.c index 5f39e5eacb..1a7d0f8bb0 100644 --- a/apps/codecs/alac.c +++ b/apps/codecs/alac.c @@ -17,16 +17,11 @@ * ****************************************************************************/ -#include "codec.h" - +#include "codeclib.h" #include <codecs/libalac/demux.h> #include <codecs/libalac/decomp.h> #include <codecs/libalac/stream.h> -#include "playback.h" -#include "dsp.h" -#include "lib/codeclib.h" - #ifndef SIMULATOR extern char iramcopy[]; extern char iramstart[]; |