]> git.sesse.net Git - vlc/commitdiff
Merge audio_filters Makefiles
authorRémi Denis-Courmont <remi@remlab.net>
Sat, 5 Mar 2011 08:12:53 +0000 (10:12 +0200)
committerRémi Denis-Courmont <remi@remlab.net>
Sat, 5 Mar 2011 08:12:53 +0000 (10:12 +0200)
configure.ac
modules/audio_filter/Modules.am
modules/audio_filter/channel_mixer/Modules.am [deleted file]
modules/audio_filter/converter/Modules.am [deleted file]
modules/audio_filter/resampler/Modules.am [deleted file]
modules/audio_filter/spatializer/Modules.am [deleted file]

index d52efe6094d06212a3b88847e94bdb6d20b2ed1c..a802176e1a32df55c7607128a74cbcb838e58fd7 100644 (file)
@@ -4282,10 +4282,6 @@ AC_CONFIG_FILES([
   modules/access/zip/Makefile
   modules/access_output/Makefile
   modules/audio_filter/Makefile
-  modules/audio_filter/channel_mixer/Makefile
-  modules/audio_filter/converter/Makefile
-  modules/audio_filter/resampler/Makefile
-  modules/audio_filter/spatializer/Makefile
   modules/audio_mixer/Makefile
   modules/audio_output/Makefile
   modules/codec/Makefile
index 7767cbe1a2256e3cd2d2938978742232e0ab87e7..1239681bf4edcb375e5d2d4ffd92d28c4a236f26 100644 (file)
@@ -1,4 +1,3 @@
-SUBDIRS = channel_mixer converter resampler spatializer
 SOURCES_equalizer = equalizer.c equalizer_presets.h
 SOURCES_compressor = compressor.c
 SOURCES_normvol = normvol.c
@@ -6,6 +5,13 @@ SOURCES_audiobargraph_a = audiobargraph_a.c
 SOURCES_param_eq = param_eq.c
 SOURCES_scaletempo = scaletempo.c
 SOURCES_chorus_flanger = chorus_flanger.c
+SOURCES_spatializer = \
+       spatializer/allpass.cpp spatializer/allpass.hpp \
+       spatializer/comb.cpp spatializer/comb.hpp \
+       spatializer/denormals.h spatializer/denormals.c \
+       spatializer/tuning.h \
+       spatializer/revmodel.cpp spatializer/revmodel.hpp \
+       spatializer/spatializer.cpp
 
 libvlc_LTLIBRARIES += \
        libaudiobargraph_a_plugin.la \
@@ -15,4 +21,42 @@ libvlc_LTLIBRARIES += \
        libnormvol_plugin.la \
        libparam_eq_plugin.la \
        libscaletempo_plugin.la \
-       $(NULL)
+       libspatializer_plugin.la
+
+# Channel mixers
+SOURCES_trivial_channel_mixer = channel_mixer/trivial.c
+SOURCES_simple_channel_mixer = channel_mixer/simple.c
+SOURCES_headphone_channel_mixer = channel_mixer/headphone.c
+SOURCES_dolby_surround_decoder = channel_mixer/dolby.c
+SOURCES_mono = channel_mixer/mono.c
+
+libvlc_LTLIBRARIES += \
+       libdolby_surround_decoder_plugin.la \
+       libheadphone_channel_mixer_plugin.la \
+       libmono_plugin.la \
+       libsimple_channel_mixer_plugin.la \
+       libtrivial_channel_mixer_plugin.la
+
+# Converters
+SOURCES_converter_fixed = converter/fixed.c
+SOURCES_a52tospdif = converter/a52tospdif.c
+SOURCES_a52tofloat32 = converter/a52tofloat32.c
+SOURCES_dtstospdif = converter/dtstospdif.c
+SOURCES_dtstofloat32 = converter/dtstofloat32.c
+SOURCES_mpgatofixed32 = converter/mpgatofixed32.c
+SOURCES_audio_format = converter/format.c
+
+libvlc_LTLIBRARIES += \
+       liba52tospdif_plugin.la \
+       libaudio_format_plugin.la \
+       libconverter_fixed_plugin.la \
+       libdtstospdif_plugin.la
+
+# Resamplers
+SOURCES_bandlimited_resampler = \
+       resampler/bandlimited.c resampler/bandlimited.h
+SOURCES_ugly_resampler = resampler/ugly.c
+
+libvlc_LTLIBRARIES += \
+       libbandlimited_resampler_plugin.la \
+       libugly_resampler_plugin.la
diff --git a/modules/audio_filter/channel_mixer/Modules.am b/modules/audio_filter/channel_mixer/Modules.am
deleted file mode 100644 (file)
index 7505ff3..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-SOURCES_trivial_channel_mixer = trivial.c
-SOURCES_simple_channel_mixer = simple.c
-SOURCES_headphone_channel_mixer = headphone.c
-SOURCES_dolby_surround_decoder = dolby.c
-SOURCES_mono = mono.c
-
-libvlc_LTLIBRARIES += \
-       libdolby_surround_decoder_plugin.la \
-       libheadphone_channel_mixer_plugin.la \
-       libmono_plugin.la \
-       libsimple_channel_mixer_plugin.la \
-       libtrivial_channel_mixer_plugin.la \
-       $(NULL)
diff --git a/modules/audio_filter/converter/Modules.am b/modules/audio_filter/converter/Modules.am
deleted file mode 100644 (file)
index 6aef6a3..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-SOURCES_converter_fixed = fixed.c
-SOURCES_a52tospdif = a52tospdif.c
-SOURCES_a52tofloat32 = a52tofloat32.c
-SOURCES_dtstospdif = dtstospdif.c
-SOURCES_dtstofloat32 = dtstofloat32.c
-SOURCES_mpgatofixed32 = mpgatofixed32.c
-SOURCES_audio_format = format.c
-
-libvlc_LTLIBRARIES += \
-       liba52tospdif_plugin.la \
-       libaudio_format_plugin.la \
-       libconverter_fixed_plugin.la \
-       libdtstospdif_plugin.la \
-       $(NULL)
diff --git a/modules/audio_filter/resampler/Modules.am b/modules/audio_filter/resampler/Modules.am
deleted file mode 100644 (file)
index e759f99..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-SOURCES_ugly_resampler = ugly.c
-SOURCES_bandlimited_resampler = bandlimited.c bandlimited.h
-
-libvlc_LTLIBRARIES += \
-       libbandlimited_resampler_plugin.la \
-       libugly_resampler_plugin.la \
-       $(NULL)
diff --git a/modules/audio_filter/spatializer/Modules.am b/modules/audio_filter/spatializer/Modules.am
deleted file mode 100644 (file)
index 3590a64..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-SOURCES_spatializer = spatializer.cpp \
-    allpass.cpp allpass.hpp comb.cpp comb.hpp \
-    denormals.h denormals.c tuning.h revmodel.cpp revmodel.hpp
-libvlc_LTLIBRARIES += libspatializer_plugin.la