mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 06:16:36 +00:00
srt: Fix property names
Property name and its enum should match.
This commit is contained in:
parent
b8610e72de
commit
f63643fcbf
1 changed files with 2 additions and 2 deletions
|
@ -360,7 +360,7 @@ gst_srt_object_install_properties_helper (GObjectClass * gobject_class)
|
||||||
* The local port to bind when #GstSRTSrc:mode is listener or rendezvous.
|
* The local port to bind when #GstSRTSrc:mode is listener or rendezvous.
|
||||||
* This property can be set by URI parameters.
|
* This property can be set by URI parameters.
|
||||||
*/
|
*/
|
||||||
g_object_class_install_property (gobject_class, PROP_POLL_TIMEOUT,
|
g_object_class_install_property (gobject_class, PROP_LOCALPORT,
|
||||||
g_param_spec_uint ("localport", "Local port",
|
g_param_spec_uint ("localport", "Local port",
|
||||||
"Local port to bind", 0,
|
"Local port to bind", 0,
|
||||||
65535, GST_SRT_DEFAULT_PORT,
|
65535, GST_SRT_DEFAULT_PORT,
|
||||||
|
@ -373,7 +373,7 @@ gst_srt_object_install_properties_helper (GObjectClass * gobject_class)
|
||||||
* The password for the encrypted transmission.
|
* The password for the encrypted transmission.
|
||||||
* This property can be set by URI parameters.
|
* This property can be set by URI parameters.
|
||||||
*/
|
*/
|
||||||
g_object_class_install_property (gobject_class, PROP_LOCALADDRESS,
|
g_object_class_install_property (gobject_class, PROP_PASSPHRASE,
|
||||||
g_param_spec_string ("passphrase", "Passphrase",
|
g_param_spec_string ("passphrase", "Passphrase",
|
||||||
"Password for the encrypted transmission", "",
|
"Password for the encrypted transmission", "",
|
||||||
G_PARAM_WRITABLE | GST_PARAM_MUTABLE_READY | G_PARAM_STATIC_STRINGS));
|
G_PARAM_WRITABLE | GST_PARAM_MUTABLE_READY | G_PARAM_STATIC_STRINGS));
|
||||||
|
|
Loading…
Reference in a new issue