rtpsession: Make internal-ssrc as show default for doc

This commit is contained in:
Thibault Saunier 2020-06-08 11:33:16 -04:00
parent 4d7629dece
commit 29a661d4a4
2 changed files with 4 additions and 2 deletions

View file

@ -34322,7 +34322,7 @@
"construct": false,
"construct-only": false,
"controllable": false,
"default": "299638488",
"default": "0",
"max": "-1",
"min": "0",
"mutable": "playing",

View file

@ -452,7 +452,9 @@ rtp_session_class_init (RTPSessionClass * klass)
g_object_class_install_property (gobject_class, PROP_INTERNAL_SSRC,
g_param_spec_uint ("internal-ssrc", "Internal SSRC",
"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_param_spec_object ("internal-source", "Internal Source",