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:
David Revay 2023-03-28 16:11:05 +11:00
parent 7a1b2d97d4
commit 002a70a2a4
3 changed files with 6 additions and 6 deletions

View file

@ -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,

View file

@ -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)

View file

@ -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)