mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
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
This commit is contained in:
parent
1b469fbcd0
commit
945322f5a6
1 changed files with 3 additions and 2 deletions
|
@ -263,8 +263,9 @@ gst_tee_class_init (GstTeeClass * klass)
|
||||||
DEFAULT_PULL_MODE,
|
DEFAULT_PULL_MODE,
|
||||||
G_PARAM_CONSTRUCT | G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
G_PARAM_CONSTRUCT | G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||||
pspec_alloc_pad = g_param_spec_object ("alloc-pad", "Allocation Src Pad",
|
pspec_alloc_pad = g_param_spec_object ("alloc-pad", "Allocation Src Pad",
|
||||||
"The pad ALLOCATION queries will be proxied to (unused)", GST_TYPE_PAD,
|
"The pad ALLOCATION queries will be proxied to (DEPRECATED, has no effect)",
|
||||||
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
|
GST_TYPE_PAD,
|
||||||
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | G_PARAM_DEPRECATED);
|
||||||
g_object_class_install_property (gobject_class, PROP_ALLOC_PAD,
|
g_object_class_install_property (gobject_class, PROP_ALLOC_PAD,
|
||||||
pspec_alloc_pad);
|
pspec_alloc_pad);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue