mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-22 03:21:00 +00:00
chore(webrtcsink): fix max-bitrate blurb and nick
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1150>
This commit is contained in:
parent
7a1b2d97d4
commit
002a70a2a4
3 changed files with 6 additions and 6 deletions
|
@ -5717,7 +5717,7 @@
|
|||
"writable": true
|
||||
},
|
||||
"max-bitrate": {
|
||||
"blurb": "Maximal bitrate to use (in bit/sec) when computing it through the bandwidth estimation algorithm",
|
||||
"blurb": "Maximum bitrate to use (in bit/sec) when computing it through the bandwidth estimation algorithm",
|
||||
"conditionally-available": false,
|
||||
"construct": false,
|
||||
"construct-only": false,
|
||||
|
@ -6147,7 +6147,7 @@
|
|||
"writable": true
|
||||
},
|
||||
"max-bitrate": {
|
||||
"blurb": "Minimal bitrate to use (in bit/sec) when computing it through the congestion control algorithm",
|
||||
"blurb": "Maximum bitrate to use (in bit/sec) when computing it through the congestion control algorithm",
|
||||
"conditionally-available": false,
|
||||
"construct": false,
|
||||
"construct-only": false,
|
||||
|
|
|
@ -1265,8 +1265,8 @@ impl ObjectImpl for BandwidthEstimator {
|
|||
.mutable_ready()
|
||||
.build(),
|
||||
glib::ParamSpecUInt::builder("max-bitrate")
|
||||
.nick("Maximal Bitrate")
|
||||
.blurb("Maximal bitrate to use (in bit/sec) when computing it through the bandwidth estimation algorithm")
|
||||
.nick("Maximum Bitrate")
|
||||
.blurb("Maximum bitrate to use (in bit/sec) when computing it through the bandwidth estimation algorithm")
|
||||
.minimum(1)
|
||||
.maximum(u32::MAX)
|
||||
.default_value(DEFAULT_MAX_BITRATE)
|
||||
|
|
|
@ -2963,8 +2963,8 @@ impl ObjectImpl for WebRTCSink {
|
|||
.mutable_ready()
|
||||
.build(),
|
||||
glib::ParamSpecUInt::builder("max-bitrate")
|
||||
.nick("Minimal Bitrate")
|
||||
.blurb("Minimal bitrate to use (in bit/sec) when computing it through the congestion control algorithm")
|
||||
.nick("Maximum Bitrate")
|
||||
.blurb("Maximum bitrate to use (in bit/sec) when computing it through the congestion control algorithm")
|
||||
.minimum(1)
|
||||
.maximum(u32::MAX)
|
||||
.default_value(DEFAULT_MAX_BITRATE)
|
||||
|
|
Loading…
Reference in a new issue