]> git.sesse.net Git - vlc/blob - modules/audio_filter/Modules.am
Update workarounds for incomplete mingw headers
[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_audiobargraph_a = audiobargraph_a.c
6 SOURCES_param_eq = param_eq.c
7 SOURCES_scaletempo = scaletempo.c
8 SOURCES_chorus_flanger = chorus_flanger.c
9 SOURCES_spatializer = \
10         spatializer/allpass.cpp spatializer/allpass.hpp \
11         spatializer/comb.cpp spatializer/comb.hpp \
12         spatializer/denormals.h spatializer/denormals.c \
13         spatializer/tuning.h \
14         spatializer/revmodel.cpp spatializer/revmodel.hpp \
15         spatializer/spatializer.cpp
16
17 libvlc_LTLIBRARIES += \
18         libaudiobargraph_a_plugin.la \
19         libchorus_flanger_plugin.la \
20         libcompressor_plugin.la \
21         libequalizer_plugin.la \
22         libkaraoke_plugin.la \
23         libnormvol_plugin.la \
24         libparam_eq_plugin.la \
25         libscaletempo_plugin.la \
26         libspatializer_plugin.la
27
28 # Channel mixers
29 SOURCES_trivial_channel_mixer = channel_mixer/trivial.c
30 SOURCES_simple_channel_mixer = channel_mixer/simple.c
31 SOURCES_headphone_channel_mixer = channel_mixer/headphone.c
32 SOURCES_dolby_surround_decoder = channel_mixer/dolby.c
33 SOURCES_mono = channel_mixer/mono.c
34 SOURCES_remap = channel_mixer/remap.c
35
36 libvlc_LTLIBRARIES += \
37         libdolby_surround_decoder_plugin.la \
38         libheadphone_channel_mixer_plugin.la \
39         libmono_plugin.la \
40         libremap_plugin.la \
41         libsimple_channel_mixer_plugin.la \
42         libtrivial_channel_mixer_plugin.la
43
44 # Converters
45 SOURCES_converter_fixed = converter/fixed.c
46 SOURCES_a52tospdif = converter/a52tospdif.c
47 SOURCES_a52tofloat32 = converter/a52tofloat32.c
48 SOURCES_dtstospdif = converter/dtstospdif.c
49 SOURCES_dtstofloat32 = converter/dtstofloat32.c
50 SOURCES_mpgatofixed32 = converter/mpgatofixed32.c
51 SOURCES_audio_format = converter/format.c
52
53 libvlc_LTLIBRARIES += \
54         liba52tospdif_plugin.la \
55         libaudio_format_plugin.la \
56         libconverter_fixed_plugin.la \
57         libdtstospdif_plugin.la
58
59 # Resamplers
60 SOURCES_bandlimited_resampler = \
61         resampler/bandlimited.c resampler/bandlimited.h
62 SOURCES_ugly_resampler = resampler/ugly.c
63 SOURCES_samplerate = resampler/src.c
64
65 libvlc_LTLIBRARIES += \
66         libugly_resampler_plugin.la
67 EXTRA_LTLIBRARIES += \
68         libbandlimited_resampler_plugin.la
69
70 libspeex_resampler_plugin_la_SOURCES = resampler/speex.c
71 libspeex_resampler_plugin_la_CFLAGS = $(AM_CFLAGS) $(SPEEXDSP_CFLAGS)
72 libspeex_resampler_plugin_la_LIBADD = $(AM_LIBADD) $(SPEEXDSP_LIBS)
73 libspeex_resampler_plugin_la_DEPENDENCIES =
74 if HAVE_SPEEXDSP
75 libvlc_LTLIBRARIES += libspeex_resampler_plugin.la
76 endif