Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
3519dfc8
Commit
3519dfc8
authored
Mar 05, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merge audio_filters Makefiles
parent
b972bbe0
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
46 additions
and
44 deletions
+46
-44
configure.ac
configure.ac
+0
-4
modules/audio_filter/Modules.am
modules/audio_filter/Modules.am
+46
-2
modules/audio_filter/channel_mixer/Modules.am
modules/audio_filter/channel_mixer/Modules.am
+0
-13
modules/audio_filter/converter/Modules.am
modules/audio_filter/converter/Modules.am
+0
-14
modules/audio_filter/resampler/Modules.am
modules/audio_filter/resampler/Modules.am
+0
-7
modules/audio_filter/spatializer/Modules.am
modules/audio_filter/spatializer/Modules.am
+0
-4
No files found.
configure.ac
View file @
3519dfc8
...
...
@@ -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
...
...
modules/audio_filter/Modules.am
View file @
3519dfc8
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
modules/audio_filter/channel_mixer/Modules.am
deleted
100644 → 0
View file @
b972bbe0
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)
modules/audio_filter/converter/Modules.am
deleted
100644 → 0
View file @
b972bbe0
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)
modules/audio_filter/resampler/Modules.am
deleted
100644 → 0
View file @
b972bbe0
SOURCES_ugly_resampler = ugly.c
SOURCES_bandlimited_resampler = bandlimited.c bandlimited.h
libvlc_LTLIBRARIES += \
libbandlimited_resampler_plugin.la \
libugly_resampler_plugin.la \
$(NULL)
modules/audio_filter/spatializer/Modules.am
deleted
100644 → 0
View file @
b972bbe0
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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment