summaryrefslogtreecommitdiff
path: root/apps/codecs/codecs.make
diff options
context:
space:
mode:
authorMichael Giacomelli <giac2000@hotmail.com>2010-01-27 17:25:10 +0000
committerMichael Giacomelli <giac2000@hotmail.com>2010-01-27 17:25:10 +0000
commitc9183bf15e56bbc795f9fb08027ee6285b2ebed4 (patch)
treee355d4ebbdb9b06e7da5260ec58679aa96da15f1 /apps/codecs/codecs.make
parent7a50f6f2740b84d10cbb021fd59a870c09688b88 (diff)
downloadrockbox-c9183bf15e56bbc795f9fb08027ee6285b2ebed4.zip
rockbox-c9183bf15e56bbc795f9fb08027ee6285b2ebed4.tar.gz
rockbox-c9183bf15e56bbc795f9fb08027ee6285b2ebed4.tar.bz2
rockbox-c9183bf15e56bbc795f9fb08027ee6285b2ebed4.tar.xz
Commit FS#10422 by Yoshihisa Uchida. Seperates WAV and AIFF parsing from PCM decoding by introducing libpcm, a library for decoding linear and non-uniform PCM independently of the container format.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24346 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/codecs.make')
-rw-r--r--apps/codecs/codecs.make3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/codecs/codecs.make b/apps/codecs/codecs.make
index 391975d..9e1f909 100644
--- a/apps/codecs/codecs.make
+++ b/apps/codecs/codecs.make
@@ -39,6 +39,7 @@ include $(APPSDIR)/codecs/libwma/libwma.make
include $(APPSDIR)/codecs/libcook/libcook.make
include $(APPSDIR)/codecs/librm/librm.make
include $(APPSDIR)/codecs/libatrac/libatrac.make
+include $(APPSDIR)/codecs/libpcm/libpcm.make
# compile flags for codecs
CODECFLAGS = $(filter-out -fno-strict-aliasing,$(CFLAGS)) -fstrict-aliasing \
@@ -85,6 +86,8 @@ $(CODECDIR)/cook.codec : $(CODECDIR)/libcook.a $(CODECDIR)/librm.a
$(CODECDIR)/raac.codec : $(CODECDIR)/libfaad.a $(CODECDIR)/librm.a
$(CODECDIR)/a52_rm.codec : $(CODECDIR)/liba52.a $(CODECDIR)/librm.a
$(CODECDIR)/atrac3_rm.codec : $(CODECDIR)/libatrac.a $(CODECDIR)/librm.a
+$(CODECDIR)/aiff.codec : $(CODECDIR)/libpcm.a
+$(CODECDIR)/wav.codec : $(CODECDIR)/libpcm.a
$(CODECS): $(CODECLIB) # this must be last in codec dependency list