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