diff options
author | Nicolas Dufresne <nicolas.dufresne@collabora.com> | 2017-08-08 17:35:19 -0400 |
---|---|---|
committer | Nicolas Dufresne <nicolas.dufresne@collabora.com> | 2017-09-05 15:59:46 -0400 |
commit | 945322f5a6b2a7e6ebcbae8355e29ed0de35afb9 (patch) | |
tree | 8e4c22f31b61b36acdd297e729d84366be78ccd6 /plugins | |
parent | 1b469fbcd07aec39683055e1c48c0e2b59a3da61 (diff) |
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
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/elements/gsttee.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/elements/gsttee.c b/plugins/elements/gsttee.c index 8531992cb..8694b95ee 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); |