mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-04 16:39:39 +00:00
464df32d53
Original commit message from CVS: * tests/icles/.cvsignore: * tests/icles/Makefile.am: * tests/icles/test-oss4.c: (opt_show_mixer_messages), (WAIT_TIME), (show_mixer_messages), (probe_mixer_tracks), (probe_pad), (probe_details), (probe_element), (main): Small oss4 test that probes for available devices and retrieves their caps and mixer tracks and all that. Also allows testing of mixer change messages on the bus.
62 lines
1.4 KiB
Makefile
62 lines
1.4 KiB
Makefile
if USE_OSS4
|
|
OSS4_TESTS=test-oss4
|
|
else
|
|
OSS4_TESTS=
|
|
endif
|
|
|
|
if USE_SOUNDTOUCH
|
|
|
|
GST_SOUNDTOUCH_TESTS = pitch-test
|
|
|
|
pitch_test_SOURCES = pitch-test.c
|
|
pitch_test_CFLAGS = $(GST_CONTROLLER_CFLAGS)
|
|
pitch_test_LDADD = $(GST_CONTROLLER_LIBS)
|
|
pitch_test_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
else
|
|
GST_SOUNDTOUCH_TESTS =
|
|
endif
|
|
|
|
|
|
if USE_METADATA
|
|
if HAVE_GLADE
|
|
if HAVE_GTK
|
|
|
|
GST_METADATA_TESTS = metadata_editor
|
|
|
|
metadata_editor_SOURCES = metadata_editor.c
|
|
metadata_editor_CFLAGS = \
|
|
$(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(GLADE_CFLAGS)
|
|
metadata_editor_LDADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) -lgstinterfaces-0.10 $(GST_LIBS) \
|
|
$(GLADE_LIBS)
|
|
else
|
|
GST_METADATA_TESTS =
|
|
endif
|
|
else
|
|
GST_METADATA_TESTS =
|
|
endif
|
|
else
|
|
GST_METADATA_TESTS =
|
|
endif
|
|
|
|
|
|
equalizer_test_SOURCES = equalizer-test.c
|
|
equalizer_test_CFLAGS = $(GST_CFLAGS)
|
|
equalizer_test_LDADD = $(GST_LIBS)
|
|
equalizer_test_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
test_oss4_SOURCES = test-oss4.c
|
|
test_oss4_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
|
test_oss4_LDADD = $(GST_PLUGINS_BASE_LIBS) -lgstinterfaces-0.10 $(GST_LIBS)
|
|
test_oss4_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
output_selector_test_SOURCES = output-selector-test.c
|
|
output_selector_test_CFLAGS = $(GST_CFLAGS)
|
|
output_selector_test_LDADD = $(GST_LIBS)
|
|
output_selector_test_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
|
|
noinst_PROGRAMS = $(GST_SOUNDTOUCH_TESTS) $(GST_METADATA_TESTS) $(OSS4_TESTS) \
|
|
equalizer-test output-selector-test
|
|
|