mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
rtpsession: Make internal-ssrc as show default for doc
This commit is contained in:
parent
4d7629dece
commit
29a661d4a4
2 changed files with 4 additions and 2 deletions
|
@ -34322,7 +34322,7 @@
|
||||||
"construct": false,
|
"construct": false,
|
||||||
"construct-only": false,
|
"construct-only": false,
|
||||||
"controllable": false,
|
"controllable": false,
|
||||||
"default": "299638488",
|
"default": "0",
|
||||||
"max": "-1",
|
"max": "-1",
|
||||||
"min": "0",
|
"min": "0",
|
||||||
"mutable": "playing",
|
"mutable": "playing",
|
||||||
|
|
|
@ -452,7 +452,9 @@ rtp_session_class_init (RTPSessionClass * klass)
|
||||||
g_object_class_install_property (gobject_class, PROP_INTERNAL_SSRC,
|
g_object_class_install_property (gobject_class, PROP_INTERNAL_SSRC,
|
||||||
g_param_spec_uint ("internal-ssrc", "Internal SSRC",
|
g_param_spec_uint ("internal-ssrc", "Internal SSRC",
|
||||||
"The internal SSRC used for the session (deprecated)",
|
"The internal SSRC used for the session (deprecated)",
|
||||||
0, G_MAXUINT, 0, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
0, G_MAXUINT, 0,
|
||||||
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS |
|
||||||
|
GST_PARAM_DOC_SHOW_DEFAULT));
|
||||||
|
|
||||||
g_object_class_install_property (gobject_class, PROP_INTERNAL_SOURCE,
|
g_object_class_install_property (gobject_class, PROP_INTERNAL_SOURCE,
|
||||||
g_param_spec_object ("internal-source", "Internal Source",
|
g_param_spec_object ("internal-source", "Internal Source",
|
||||||
|
|
Loading…
Reference in a new issue