mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
videoaggregator: No need to artificially bound the zorder.
It is an unsigned integer so the upper bound is G_MAXUINT.
This commit is contained in:
parent
417db39d0d
commit
3c2fff7165
1 changed files with 1 additions and 1 deletions
|
@ -310,7 +310,7 @@ gst_videoaggregator_pad_class_init (GstVideoAggregatorPadClass * klass)
|
|||
|
||||
g_object_class_install_property (gobject_class, PROP_PAD_ZORDER,
|
||||
g_param_spec_uint ("zorder", "Z-Order", "Z Order of the picture",
|
||||
0, 10000, DEFAULT_PAD_ZORDER,
|
||||
0, G_MAXUINT, DEFAULT_PAD_ZORDER,
|
||||
G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE | G_PARAM_STATIC_STRINGS));
|
||||
g_object_class_install_property (gobject_class, PROP_PAD_IGNORE_EOS,
|
||||
g_param_spec_boolean ("ignore-eos", "Ignore EOS", "Aggregate the last "
|
||||
|
|
Loading…
Reference in a new issue