mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-25 21:11: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
|
"writable": true
|
||||||
},
|
},
|
||||||
"max-bitrate": {
|
"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,
|
"conditionally-available": false,
|
||||||
"construct": false,
|
"construct": false,
|
||||||
"construct-only": false,
|
"construct-only": false,
|
||||||
|
@ -6147,7 +6147,7 @@
|
||||||
"writable": true
|
"writable": true
|
||||||
},
|
},
|
||||||
"max-bitrate": {
|
"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,
|
"conditionally-available": false,
|
||||||
"construct": false,
|
"construct": false,
|
||||||
"construct-only": false,
|
"construct-only": false,
|
||||||
|
|
|
@ -1265,8 +1265,8 @@ impl ObjectImpl for BandwidthEstimator {
|
||||||
.mutable_ready()
|
.mutable_ready()
|
||||||
.build(),
|
.build(),
|
||||||
glib::ParamSpecUInt::builder("max-bitrate")
|
glib::ParamSpecUInt::builder("max-bitrate")
|
||||||
.nick("Maximal Bitrate")
|
.nick("Maximum 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")
|
||||||
.minimum(1)
|
.minimum(1)
|
||||||
.maximum(u32::MAX)
|
.maximum(u32::MAX)
|
||||||
.default_value(DEFAULT_MAX_BITRATE)
|
.default_value(DEFAULT_MAX_BITRATE)
|
||||||
|
|
|
@ -2963,8 +2963,8 @@ impl ObjectImpl for WebRTCSink {
|
||||||
.mutable_ready()
|
.mutable_ready()
|
||||||
.build(),
|
.build(),
|
||||||
glib::ParamSpecUInt::builder("max-bitrate")
|
glib::ParamSpecUInt::builder("max-bitrate")
|
||||||
.nick("Minimal Bitrate")
|
.nick("Maximum 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")
|
||||||
.minimum(1)
|
.minimum(1)
|
||||||
.maximum(u32::MAX)
|
.maximum(u32::MAX)
|
||||||
.default_value(DEFAULT_MAX_BITRATE)
|
.default_value(DEFAULT_MAX_BITRATE)
|
||||||
|
|
Loading…
Reference in a new issue