mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
fa47edf846
This element transforms a given number of input channels into a given number of output channels according to a given transformation matrix. The matrix coefficients must be between -1 and 1. In the auto mode, input/output channels are automatically negotiated and the transformation matrix is a truncated or zero-padded identity matrix. https://bugzilla.gnome.org/show_bug.cgi?id=777376
16 lines
450 B
Makefile
16 lines
450 B
Makefile
TEST_AUDIOMIXMATRIX_EXAMPLES = test-audiomixmatrix
|
|
|
|
test_audiomixmatrix_SOURCES = test-audiomixmatrix.c
|
|
test_audiomixmatrix_CFLAGS = \
|
|
$(GST_PLUGINS_BAD_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
$(GMODULE_EXPORT_CFLAGS) \
|
|
-DGST_USE_UNSTABLE_API
|
|
test_audiomixmatrix_LDADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
$(GST_LIBS) \
|
|
$(GMODULE_EXPORT_LIBS)
|
|
|
|
noinst_PROGRAMS = $(TEST_AUDIOMIXMATRIX_EXAMPLES)
|
|
|