gstreamer/tests/examples/audiomixmatrix/Makefile.am
Vivia Nikolaidou fa47edf846 audiomixmatrix: New element that mixes audio channels
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
2017-02-23 21:02:44 +02:00

17 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)