mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-19 22:05:58 +00:00
tests: simple-launch-lines: remove use of unused HAVE_LIBVISUAL define
This is not set anywhere, and it's pretty clear the pipeline in question has not been tested in a long time. Disable test with a FIXME, test needs to be rewritten to not use real output devices.
This commit is contained in:
parent
f357c55587
commit
574d097d43
1 changed files with 17 additions and 6 deletions
|
@ -120,12 +120,23 @@ GST_START_TEST (test_element_negotiation)
|
|||
GST_MESSAGE_ANY & ~(GST_MESSAGE_ERROR | GST_MESSAGE_WARNING),
|
||||
GST_MESSAGE_UNKNOWN);
|
||||
|
||||
#ifdef HAVE_LIBVISUAL
|
||||
s = "audiotestsrc num-buffers=30 ! tee name=t ! alsasink t. ! audioconvert ! "
|
||||
"libvisual_lv_scope ! videoconvert ! xvimagesink";
|
||||
run_pipeline (setup_pipeline (s), s,
|
||||
GST_MESSAGE_ANY & ~(GST_MESSAGE_ERROR | GST_MESSAGE_WARNING),
|
||||
GST_MESSAGE_UNKNOWN);
|
||||
/* FIXME: don't use real audio/video outputs */
|
||||
#if 0
|
||||
{
|
||||
gboolean have_libvisual_lv_scope;
|
||||
|
||||
have_libvisual_lv_scope =
|
||||
gst_registry_check_feature_version (gst_registry_get (),
|
||||
"libvisual_lv_scope", GST_VERSION_MAJOR, GST_VERSION_MINOR, 0);
|
||||
|
||||
if (have_libvisual_lv_scope) {
|
||||
s = "audiotestsrc num-buffers=30 ! tee name=t ! alsasink t. ! "
|
||||
"audioconvert ! libvisual_lv_scope ! videoconvert ! xvimagesink";
|
||||
run_pipeline (setup_pipeline (s), s,
|
||||
GST_MESSAGE_ANY & ~(GST_MESSAGE_ERROR | GST_MESSAGE_WARNING),
|
||||
GST_MESSAGE_UNKNOWN);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue