]> git.sesse.net Git - vlc/blobdiff - modules/audio_filter/Modules.am
transform: add transposition and anti-transposition transforms
[vlc] / modules / audio_filter / Modules.am
index 4dc2602601effcb234b2f2117e15b8c04eea4173..90e7661fa79353b86cf4570c333154a3625b1833 100644 (file)
@@ -1,10 +1,12 @@
 SOURCES_equalizer = equalizer.c equalizer_presets.h
 SOURCES_compressor = compressor.c
+SOURCES_karaoke = karaoke.c
 SOURCES_normvol = normvol.c
 SOURCES_audiobargraph_a = audiobargraph_a.c
 SOURCES_param_eq = param_eq.c
 SOURCES_scaletempo = scaletempo.c
 SOURCES_chorus_flanger = chorus_flanger.c
+SOURCES_stereo_widen = stereo_widen.c
 SOURCES_spatializer = \
        spatializer/allpass.cpp spatializer/allpass.hpp \
        spatializer/comb.cpp spatializer/comb.hpp \
@@ -18,10 +20,12 @@ libvlc_LTLIBRARIES += \
        libchorus_flanger_plugin.la \
        libcompressor_plugin.la \
        libequalizer_plugin.la \
+       libkaraoke_plugin.la \
        libnormvol_plugin.la \
        libparam_eq_plugin.la \
        libscaletempo_plugin.la \
-       libspatializer_plugin.la
+       libspatializer_plugin.la \
+       libstereo_widen_plugin.la
 
 # Channel mixers
 SOURCES_trivial_channel_mixer = channel_mixer/trivial.c
@@ -29,11 +33,13 @@ 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
+SOURCES_remap = channel_mixer/remap.c
 
 libvlc_LTLIBRARIES += \
        libdolby_surround_decoder_plugin.la \
        libheadphone_channel_mixer_plugin.la \
        libmono_plugin.la \
+       libremap_plugin.la \
        libsimple_channel_mixer_plugin.la \
        libtrivial_channel_mixer_plugin.la
 
@@ -56,8 +62,17 @@ libvlc_LTLIBRARIES += \
 SOURCES_bandlimited_resampler = \
        resampler/bandlimited.c resampler/bandlimited.h
 SOURCES_ugly_resampler = resampler/ugly.c
+SOURCES_samplerate = resampler/src.c
 
 libvlc_LTLIBRARIES += \
        libugly_resampler_plugin.la
 EXTRA_LTLIBRARIES += \
        libbandlimited_resampler_plugin.la
+
+libspeex_resampler_plugin_la_SOURCES = resampler/speex.c
+libspeex_resampler_plugin_la_CFLAGS = $(AM_CFLAGS) $(SPEEXDSP_CFLAGS)
+libspeex_resampler_plugin_la_LIBADD = $(AM_LIBADD) $(SPEEXDSP_LIBS)
+libspeex_resampler_plugin_la_DEPENDENCIES =
+if HAVE_SPEEXDSP
+libvlc_LTLIBRARIES += libspeex_resampler_plugin.la
+endif