summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Dufresne <nicolas.dufresne@collabora.com>2019-02-15 16:45:09 -0500
committerTim-Philipp Müller <tim@centricular.com>2019-05-01 17:42:10 +0100
commit728a09d4b29780e384a550b1d21b982dd55845f1 (patch)
treeb255cc4ea253424165de21924e78f4f20e746e19
parent1dfd9963743a1f702d68176897a53529eddf8ecd (diff)
downloadgstreamer-plugins-base-728a09d4b29780e384a550b1d21b982dd55845f1.tar.gz
glimagesink: Don't call set_property helper in get_property
-rw-r--r--ext/gl/gstglimagesink.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/gl/gstglimagesink.c b/ext/gl/gstglimagesink.c
index bb8a60a3d..7e26c03f2 100644
--- a/ext/gl/gstglimagesink.c
+++ b/ext/gl/gstglimagesink.c
@@ -893,8 +893,7 @@ gst_glimage_sink_get_property (GObject * object, guint prop_id,
g_value_set_enum (value, glimage_sink->mview_downmix_mode);
break;
default:
- if (!gst_video_overlay_set_property (object, PROP_LAST, prop_id, value))
- G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
+ G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}