X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Faudio_filter%2FModules.am;h=4dc2602601effcb234b2f2117e15b8c04eea4173;hb=9c74061333bd152a1467e49ed33b889c94410da9;hp=25a830f562737b87547d3bded9be28f53d6bf593;hpb=f13ac22acec824c2099014249eda55307a372133;p=vlc diff --git a/modules/audio_filter/Modules.am b/modules/audio_filter/Modules.am index 25a830f562..4dc2602601 100644 --- a/modules/audio_filter/Modules.am +++ b/modules/audio_filter/Modules.am @@ -1,10 +1,63 @@ -SUBDIRS = channel_mixer converter resampler spatializer SOURCES_equalizer = equalizer.c equalizer_presets.h +SOURCES_compressor = compressor.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_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 \ libchorus_flanger_plugin.la \ - $(NULL) + libcompressor_plugin.la \ + libequalizer_plugin.la \ + libnormvol_plugin.la \ + libparam_eq_plugin.la \ + libscaletempo_plugin.la \ + 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 += \ + libugly_resampler_plugin.la +EXTRA_LTLIBRARIES += \ + libbandlimited_resampler_plugin.la