Mark some properties as DOC_SHOW_DEFAULT

This commit is contained in:
Thibault Saunier 2018-11-12 18:24:20 -03:00
parent 7fe3f36ac8
commit 5a2b9357c9
3 changed files with 6 additions and 3 deletions

View file

@ -362,7 +362,8 @@ gst_curl_http_src_class_init (GstCurlHttpSrcClass * klass)
g_param_spec_string ("user-agent", "User-Agent",
"URI of resource requested",
GSTCURL_HANDLE_DEFAULT_CURLOPT_USERAGENT "/<curl-version>",
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS |
GST_PARAM_DOC_SHOW_DEFAULT));
g_object_class_install_property (gobject_class, PROP_COMPRESS,
g_param_spec_boolean ("compress", "Compress",

View file

@ -141,7 +141,8 @@ gst_dtls_dec_class_init (GstDtlsDecClass * klass)
g_param_spec_string ("pem",
"PEM string",
"A string containing a X509 certificate and RSA private key in PEM format",
DEFAULT_PEM, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
DEFAULT_PEM,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | GST_PARAM_DOC_SHOW_DEFAULT);
properties[PROP_PEER_PEM] =
g_param_spec_string ("peer-pem",

View file

@ -123,7 +123,8 @@ gst_dtls_srtp_dec_class_init (GstDtlsSrtpDecClass * klass)
g_param_spec_string ("pem",
"PEM string",
"A string containing a X509 certificate and RSA private key in PEM format",
DEFAULT_PEM, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
DEFAULT_PEM,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | GST_PARAM_DOC_SHOW_DEFAULT);
properties[PROP_PEER_PEM] =
g_param_spec_string ("peer-pem",