diff options
author | Ewald Snel <esnel@users.sourceforge.net> | 2003-05-08 18:00:44 +0000 |
---|---|---|
committer | Ewald Snel <esnel@users.sourceforge.net> | 2003-05-08 18:00:44 +0000 |
commit | 7a7d948c8df64d7892d55a5281c25ddd28452d8e (patch) | |
tree | aed6d8dd16e70cfbb6dadf7a21daac6fcec5229c | |
parent | 1b5567278a39ef8bac8102c74632c0747f9ca95b (diff) | |
download | xine-lib-7a7d948c8df64d7892d55a5281c25ddd28452d8e.tar.gz xine-lib-7a7d948c8df64d7892d55a5281c25ddd28452d8e.tar.bz2 |
Add Real 28.8 decoder (a.k.a. RealAudio 2.0)
CVS patchset: 4797
CVS date: 2003/05/08 18:00:44
-rw-r--r-- | src/libxineadec/Makefile.am | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/libxineadec/Makefile.am b/src/libxineadec/Makefile.am index b438edb71..e58ac8d30 100644 --- a/src/libxineadec/Makefile.am +++ b/src/libxineadec/Makefile.am @@ -19,7 +19,8 @@ lib_LTLIBRARIES = \ xineplug_decode_roqaudio.la \ xineplug_decode_gsm610.la \ xineplug_decode_interplayaudio.la \ - xineplug_decode_nsf.la + xineplug_decode_nsf.la \ + xineplug_decode_28k8.la xineplug_decode_roqaudio_la_SOURCES = roqaudio.c xineplug_decode_roqaudio_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@ @@ -49,6 +50,10 @@ xineplug_decode_nsf_la_LIBADD = \ $(XINE_LIB) \ $(top_builddir)/src/libxineadec/nosefart/libnosefart.la +xineplug_decode_28k8_la_SOURCES = 28k8.c +xineplug_decode_28k8_la_LIBADD = $(top_builddir)/src/xine-engine/libxine.la +xineplug_decode_28k8_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@ + # noinst_HEADERS = $(XINE_LIB): |