udpsrc: add doc blurb with since marker for new "loop" property

This commit is contained in:
Tim-Philipp Müller 2016-05-17 05:33:35 +01:00
parent 1f0cfd9ffb
commit 21e281feea

View file

@ -270,6 +270,13 @@ gst_udpsrc_class_init (GstUDPSrcClass * klass)
"Address to receive packets for. This is equivalent to the " "Address to receive packets for. This is equivalent to the "
"multicast-group property for now", UDP_DEFAULT_MULTICAST_GROUP, "multicast-group property for now", UDP_DEFAULT_MULTICAST_GROUP,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
/**
* GstUDPSrc::loop:
*
* Can be used to disable multicast loopback.
*
* Since: 1.10
*/
g_object_class_install_property (gobject_class, PROP_LOOP, g_object_class_install_property (gobject_class, PROP_LOOP,
g_param_spec_boolean ("loop", "Multicast Loopback", g_param_spec_boolean ("loop", "Multicast Loopback",
"Used for setting the multicast loop parameter. TRUE = enable," "Used for setting the multicast loop parameter. TRUE = enable,"