From 945322f5a6b2a7e6ebcbae8355e29ed0de35afb9 Mon Sep 17 00:00:00 2001 From: Nicolas Dufresne Date: Tue, 8 Aug 2017 17:35:19 -0400 Subject: [PATCH] tee: Deprecate alloc-pad property It has no effect, not implemented, and would lead to bad rendering. https://bugzilla.gnome.org/show_bug.cgi?id=730758 --- plugins/elements/gsttee.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plugins/elements/gsttee.c b/plugins/elements/gsttee.c index 8531992..8694b95 100644 --- a/plugins/elements/gsttee.c +++ b/plugins/elements/gsttee.c @@ -263,8 +263,9 @@ gst_tee_class_init (GstTeeClass * klass) DEFAULT_PULL_MODE, G_PARAM_CONSTRUCT | G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); pspec_alloc_pad = g_param_spec_object ("alloc-pad", "Allocation Src Pad", - "The pad ALLOCATION queries will be proxied to (unused)", GST_TYPE_PAD, - G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS); + "The pad ALLOCATION queries will be proxied to (DEPRECATED, has no effect)", + GST_TYPE_PAD, + G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | G_PARAM_DEPRECATED); g_object_class_install_property (gobject_class, PROP_ALLOC_PAD, pspec_alloc_pad); -- 2.7.4