mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 15:27:07 +00:00
c196377ff6
Original commit message from CVS: * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link), (gst_audio_convert_channels): create channel conversion matrix when linking * gst/audioconvert/.cvsignore: * gst/audioconvert/Makefile.am: * gst/audioconvert/channelmixtest.c: (main): add (ugly) test that ensures stereo <=> mono conversion works correctly
22 lines
561 B
Makefile
22 lines
561 B
Makefile
plugin_LTLIBRARIES = libgstaudioconvert.la
|
|
|
|
libgstaudioconvert_la_SOURCES = \
|
|
gstaudioconvert.c \
|
|
gstchannelmix.c \
|
|
bufferframesconvert.c \
|
|
plugin.c
|
|
|
|
libgstaudioconvert_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstaudioconvert_la_LIBADD =
|
|
libgstaudioconvert_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gstchannelmix.h \
|
|
plugin.h
|
|
|
|
TESTS = channelmixtest
|
|
noinst_PROGRAMS = channelmixtest
|
|
|
|
channelmixtest_CFLAGS = $(GST_CFLAGS)
|
|
channelmixtest_LDADD = libgstaudioconvert.la $(top_builddir)/gst-libs/gst/audio/libgstaudio.la
|
|
channelmixtest_LDFLAGS = $(GST_LIBS)
|