summaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
authorRonald S. Bultje <rbultje@ronald.bitfreak.net>2005-03-26 15:18:02 +0000
committerRonald S. Bultje <rbultje@ronald.bitfreak.net>2005-03-26 15:18:02 +0000
commit587c3d2a3df82ae18052d6d4ed362223ce5833c2 (patch)
tree73622a0d1c9d0582f7a6b804c73204b106757cab /ext
parentdf8fe5801888435c24ff0ce09dae8e1a1d82613a (diff)
downloadgst-plugins-bad-587c3d2a3df82ae18052d6d4ed362223ce5833c2.tar.gz
gst-plugins-bad-587c3d2a3df82ae18052d6d4ed362223ce5833c2.tar.bz2
gst-plugins-bad-587c3d2a3df82ae18052d6d4ed362223ce5833c2.zip
currently pure ASM, needs to be ported over to C at some point.
Original commit message from CVS: Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net> * configure.ac: * ext/Makefile.am: * ext/spc/APU.Asm: * ext/spc/APU.Inc: * ext/spc/APU.h: * ext/spc/DSP.Asm: * ext/spc/DSP.Inc: * ext/spc/DSP.h: * ext/spc/Macro.Inc: * ext/spc/Makefile.am: * ext/spc/SPC700.Asm: * ext/spc/SPC700.Inc: * ext/spc/SPC700.h: * ext/spc/Types.h: * ext/spc/gstspc.c: (gst_spc_get_type), (gst_spc_base_init), (gst_spc_class_init), (gst_spc_get_formats), (gst_spc_get_query_types), (gst_spc_init), (gst_spc_query), (gst_spc_loop), (spc_setup), (gst_spc_change_state), (plugin_init): * ext/spc/gstspc.h: * ext/spc/spc.h: * gst/typefind/gsttypefindfunctions.c: (plugin_init): Add SPC decoder, based on code from Michael Payne (#141189), currently pure ASM, needs to be ported over to C at some point.
Diffstat (limited to 'ext')
-rw-r--r--ext/Makefile.am8
1 files changed, 8 insertions, 0 deletions
diff --git a/ext/Makefile.am b/ext/Makefile.am
index 2c483ebc..d06cb45f 100644
--- a/ext/Makefile.am
+++ b/ext/Makefile.am
@@ -394,6 +394,12 @@ else
SNAPSHOT_DIR=
endif
+if USE_SPC
+SPC_DIR=spc
+else
+SPC_DIR=
+endif
+
if USE_SPEEX
SPEEX_DIR=speex
else
@@ -465,6 +471,7 @@ SUBDIRS=\
$(SMOOTHWAVE_DIR) \
$(SNAPSHOT_DIR) \
$(SNDFILE_DIR) \
+ $(SPC_DIR) \
$(SPEEX_DIR) \
$(SWFDEC_DIR) \
$(TARKIN_DIR) \
@@ -534,6 +541,7 @@ DIST_SUBDIRS=\
shout2 \
sidplay \
smoothwave \
+ spc \
speex \
swfdec \
tarkin \