Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
gst-plugins-bad
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
994
Issues
994
List
Boards
Labels
Service Desk
Milestones
Merge Requests
192
Merge Requests
192
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
GStreamer
gst-plugins-bad
Commits
5a2b9357
Commit
5a2b9357
authored
Nov 12, 2018
by
Thibault Saunier
🌵
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mark some properties as DOC_SHOW_DEFAULT
parent
7fe3f36a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
3 deletions
+6
-3
ext/curl/gstcurlhttpsrc.c
ext/curl/gstcurlhttpsrc.c
+2
-1
ext/dtls/gstdtlsdec.c
ext/dtls/gstdtlsdec.c
+2
-1
ext/dtls/gstdtlssrtpdec.c
ext/dtls/gstdtlssrtpdec.c
+2
-1
No files found.
ext/curl/gstcurlhttpsrc.c
View file @
5a2b9357
...
...
@@ -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"
,
...
...
ext/dtls/gstdtlsdec.c
View file @
5a2b9357
...
...
@@ -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"
,
...
...
ext/dtls/gstdtlssrtpdec.c
View file @
5a2b9357
...
...
@@ -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"
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment