From 4b24f3e3df911ff85fd9c0846b0c177ee9fc0010 Mon Sep 17 00:00:00 2001 From: Markus Pietrek Date: Tue, 4 Jun 2019 08:06:03 +0000 Subject: [PATCH] fixed parole using autovideosink in automatic mode and not falling back to ximagesink --- src/gst/parole-gst.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gst/parole-gst.c b/src/gst/parole-gst.c index 4a13599..217264b 100644 --- a/src/gst/parole-gst.c +++ b/src/gst/parole-gst.c @@ -1932,7 +1932,7 @@ parole_gst_constructed(GObject *object) { /* Configure the video sink */ if (g_strcmp0(videosink, "autoimagesink") == 0) { gst->priv->image_sink = AUTOIMAGESINK; - gst->priv->video_sink = gst_element_factory_make("autoimagesink", "video"); + gst->priv->video_sink = gst_element_factory_make("autovideosink", "video"); } if (g_strcmp0(videosink, "xvimagesink") == 0) { -- 2.20.1