1
mirror of https://code.videolan.org/videolan/vlc synced 2024-09-28 23:09:59 +02:00

Merge audio_filters Makefiles

This commit is contained in:
Rémi Denis-Courmont 2011-03-05 10:12:53 +02:00
parent b972bbe058
commit 3519dfc861
6 changed files with 46 additions and 44 deletions

View File

@ -4282,10 +4282,6 @@ AC_CONFIG_FILES([
modules/access/zip/Makefile
modules/access_output/Makefile
modules/audio_filter/Makefile
modules/audio_filter/channel_mixer/Makefile
modules/audio_filter/converter/Makefile
modules/audio_filter/resampler/Makefile
modules/audio_filter/spatializer/Makefile
modules/audio_mixer/Makefile
modules/audio_output/Makefile
modules/codec/Makefile

View File

@ -1,4 +1,3 @@
SUBDIRS = channel_mixer converter resampler spatializer
SOURCES_equalizer = equalizer.c equalizer_presets.h
SOURCES_compressor = compressor.c
SOURCES_normvol = normvol.c
@ -6,6 +5,13 @@ 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 \
@ -15,4 +21,42 @@ libvlc_LTLIBRARIES += \
libnormvol_plugin.la \
libparam_eq_plugin.la \
libscaletempo_plugin.la \
$(NULL)
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 += \
libbandlimited_resampler_plugin.la \
libugly_resampler_plugin.la

View File

@ -1,13 +0,0 @@
SOURCES_trivial_channel_mixer = trivial.c
SOURCES_simple_channel_mixer = simple.c
SOURCES_headphone_channel_mixer = headphone.c
SOURCES_dolby_surround_decoder = dolby.c
SOURCES_mono = 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 \
$(NULL)

View File

@ -1,14 +0,0 @@
SOURCES_converter_fixed = fixed.c
SOURCES_a52tospdif = a52tospdif.c
SOURCES_a52tofloat32 = a52tofloat32.c
SOURCES_dtstospdif = dtstospdif.c
SOURCES_dtstofloat32 = dtstofloat32.c
SOURCES_mpgatofixed32 = mpgatofixed32.c
SOURCES_audio_format = format.c
libvlc_LTLIBRARIES += \
liba52tospdif_plugin.la \
libaudio_format_plugin.la \
libconverter_fixed_plugin.la \
libdtstospdif_plugin.la \
$(NULL)

View File

@ -1,7 +0,0 @@
SOURCES_ugly_resampler = ugly.c
SOURCES_bandlimited_resampler = bandlimited.c bandlimited.h
libvlc_LTLIBRARIES += \
libbandlimited_resampler_plugin.la \
libugly_resampler_plugin.la \
$(NULL)

View File

@ -1,4 +0,0 @@
SOURCES_spatializer = spatializer.cpp \
allpass.cpp allpass.hpp comb.cpp comb.hpp \
denormals.h denormals.c tuning.h revmodel.cpp revmodel.hpp
libvlc_LTLIBRARIES += libspatializer_plugin.la