From fed0dfdd46c9ba2e41697f8afec82adadd83866d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olivier=20Cr=C3=AAte?= Date: Mon, 11 Apr 2022 15:35:45 -0500 Subject: [PATCH] gtkwaylandsink test: Add navigationtest to example Part-of: --- .../gst-plugins-bad/tests/examples/gtk/gtkwaylandsink.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/subprojects/gst-plugins-bad/tests/examples/gtk/gtkwaylandsink.c b/subprojects/gst-plugins-bad/tests/examples/gtk/gtkwaylandsink.c index 8cada2aa8c..20bdb8796b 100644 --- a/subprojects/gst-plugins-bad/tests/examples/gtk/gtkwaylandsink.c +++ b/subprojects/gst-plugins-bad/tests/examples/gtk/gtkwaylandsink.c @@ -219,11 +219,12 @@ main (int argc, char **argv) } else { if (live) { d->pipeline = gst_parse_launch ("videotestsrc pattern=18 " - "background-color=0xFF0062FF is-live=true ! " - "gtkwaylandsink name=vsink", NULL); + "background-color=0xFF0062FF is-live=true ! navigationtest ! " + "videoconvert ! gtkwaylandsink name=vsink", NULL); } else { d->pipeline = gst_parse_launch ("videotestsrc pattern=18 " - "background-color=0xFF0062FF ! gtkwaylandsink name=vsink", NULL); + "background-color=0xFF0062FF ! navigationtest ! videoconvert ! " + "gtkwaylandsink name=vsink", NULL); } }