]> git.sesse.net Git - vlc/blob - modules/audio_filter/Modules.am
Revert "audio_filter: remove Makefile recursion"
[vlc] / modules / audio_filter / Modules.am
1 SOURCES_equalizer = equalizer.c equalizer_presets.h
2 SOURCES_compressor = compressor.c
3 SOURCES_karaoke = karaoke.c
4 SOURCES_normvol = normvol.c
5 SOURCES_gain = gain.c
6 SOURCES_audiobargraph_a = audiobargraph_a.c
7 SOURCES_param_eq = param_eq.c
8 SOURCES_scaletempo = scaletempo.c
9 SOURCES_chorus_flanger = chorus_flanger.c
10 SOURCES_stereo_widen = stereo_widen.c
11 SOURCES_spatializer = \
12         spatializer/allpass.cpp spatializer/allpass.hpp \
13         spatializer/comb.cpp spatializer/comb.hpp \
14         spatializer/denormals.h spatializer/denormals.c \
15         spatializer/tuning.h \
16         spatializer/revmodel.cpp spatializer/revmodel.hpp \
17         spatializer/spatializer.cpp
18
19 audio_filter_LTLIBRARIES += \
20         libaudiobargraph_a_plugin.la \
21         libchorus_flanger_plugin.la \
22         libcompressor_plugin.la \
23         libequalizer_plugin.la \
24         libkaraoke_plugin.la \
25         libnormvol_plugin.la \
26         libgain_plugin.la \
27         libparam_eq_plugin.la \
28         libscaletempo_plugin.la \
29         libspatializer_plugin.la \
30         libstereo_widen_plugin.la
31
32 # Channel mixers
33 SOURCES_trivial_channel_mixer = channel_mixer/trivial.c
34 SOURCES_simple_channel_mixer = channel_mixer/simple.c
35 SOURCES_headphone_channel_mixer = channel_mixer/headphone.c
36 SOURCES_dolby_surround_decoder = channel_mixer/dolby.c
37 SOURCES_mono = channel_mixer/mono.c
38 SOURCES_remap = channel_mixer/remap.c
39
40 audio_filter_LTLIBRARIES += \
41         libdolby_surround_decoder_plugin.la \
42         libheadphone_channel_mixer_plugin.la \
43         libmono_plugin.la \
44         libremap_plugin.la \
45         libsimple_channel_mixer_plugin.la \
46         libtrivial_channel_mixer_plugin.la
47
48 # Converters
49 SOURCES_a52tospdif = converter/a52tospdif.c
50 SOURCES_a52tofloat32 = converter/a52tofloat32.c
51 SOURCES_dtstospdif = converter/dtstospdif.c
52 SOURCES_dtstofloat32 = converter/dtstofloat32.c
53
54 libmad_plugin_la_SOURCES = converter/mpgatofixed32.c
55 libmad_plugin_la_CPPFLAGS = $(AM_CPPFLAGS) $(MAD_CFLAGS)
56 libmad_plugin_la_LIBADD = $(AM_LIBADD) $(MAD_LIBS)
57 if HAVE_MAD
58 audio_filter_LTLIBRARIES += libmad_plugin.la
59 endif
60
61 libaudio_format_plugin_la_SOURCES = converter/format.c
62 libaudio_format_plugin_la_CPPFLAGS = $(AM_CPPFLAGS)
63 libaudio_format_plugin_la_LIBADD = $(LIBM)
64
65 audio_filter_LTLIBRARIES += \
66         liba52tospdif_plugin.la \
67         libaudio_format_plugin.la \
68         libdtstospdif_plugin.la
69
70 # Resamplers
71 SOURCES_bandlimited_resampler = \
72         resampler/bandlimited.c resampler/bandlimited.h
73 SOURCES_ugly_resampler = resampler/ugly.c
74 SOURCES_samplerate = resampler/src.c
75
76 audio_filter_LTLIBRARIES += \
77         libugly_resampler_plugin.la
78 EXTRA_LTLIBRARIES += \
79         libbandlimited_resampler_plugin.la
80
81 libspeex_resampler_plugin_la_SOURCES = resampler/speex.c
82 libspeex_resampler_plugin_la_CFLAGS = $(AM_CFLAGS) $(SPEEXDSP_CFLAGS)
83 libspeex_resampler_plugin_la_LIBADD = $(SPEEXDSP_LIBS)
84 if HAVE_SPEEXDSP
85 audio_filter_LTLIBRARIES += libspeex_resampler_plugin.la
86 endif