mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
udpsrc: convert _ in properties to -
--
This commit is contained in:
parent
469aced581
commit
0c4f3d4afb
1 changed files with 2 additions and 2 deletions
|
@ -252,11 +252,11 @@ gst_udpsrc_class_init (GstUDPSrcClass * klass)
|
||||||
"The port to receive the packets from, 0=allocate", 0, G_MAXUINT16,
|
"The port to receive the packets from, 0=allocate", 0, G_MAXUINT16,
|
||||||
UDP_DEFAULT_PORT, G_PARAM_READWRITE));
|
UDP_DEFAULT_PORT, G_PARAM_READWRITE));
|
||||||
g_object_class_install_property (gobject_class, PROP_MULTICAST_GROUP,
|
g_object_class_install_property (gobject_class, PROP_MULTICAST_GROUP,
|
||||||
g_param_spec_string ("multicast_group", "Multicast Group",
|
g_param_spec_string ("multicast-group", "Multicast Group",
|
||||||
"The Address of multicast group to join", UDP_DEFAULT_MULTICAST_GROUP,
|
"The Address of multicast group to join", UDP_DEFAULT_MULTICAST_GROUP,
|
||||||
G_PARAM_READWRITE));
|
G_PARAM_READWRITE));
|
||||||
g_object_class_install_property (gobject_class, PROP_MULTICAST_IFACE,
|
g_object_class_install_property (gobject_class, PROP_MULTICAST_IFACE,
|
||||||
g_param_spec_string ("multicast_iface", "Multicast Interface",
|
g_param_spec_string ("multicast-iface", "Multicast Interface",
|
||||||
"The network interface on which to join the multicast group",
|
"The network interface on which to join the multicast group",
|
||||||
UDP_DEFAULT_MULTICAST_IFACE, G_PARAM_READWRITE));
|
UDP_DEFAULT_MULTICAST_IFACE, G_PARAM_READWRITE));
|
||||||
g_object_class_install_property (gobject_class, PROP_URI,
|
g_object_class_install_property (gobject_class, PROP_URI,
|
||||||
|
|
Loading…
Reference in a new issue