mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
Mark some properties as DOC_SHOW_DEFAULT
This commit is contained in:
parent
7fe3f36ac8
commit
5a2b9357c9
3 changed files with 6 additions and 3 deletions
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue