Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sdroege/gst-plugin-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorDavid Revay <daverevay@gmail.com>2023-03-28 08:11:05 +0300
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>2023-04-05 18:12:39 +0300
commit5bb65d3e33e7feea506b97cce94f279a460e8371 (patch)
treefdb31b6fa1fcad4e5131acdd0054e4f17249e3b9 /net
parentf15fd82f83e5d1b784f6685e5dcbe0215178a3d7 (diff)
chore(webrtcsink): fix max-bitrate blurb and nick
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1160>
Diffstat (limited to 'net')
-rw-r--r--net/rtp/src/gcc/imp.rs4
-rw-r--r--net/webrtc/src/webrtcsink/imp.rs4
2 files changed, 4 insertions, 4 deletions
diff --git a/net/rtp/src/gcc/imp.rs b/net/rtp/src/gcc/imp.rs
index bfa827ae..479198ac 100644
--- a/net/rtp/src/gcc/imp.rs
+++ b/net/rtp/src/gcc/imp.rs
@@ -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)
diff --git a/net/webrtc/src/webrtcsink/imp.rs b/net/webrtc/src/webrtcsink/imp.rs
index 415e6cbc..082074af 100644
--- a/net/webrtc/src/webrtcsink/imp.rs
+++ b/net/webrtc/src/webrtcsink/imp.rs
@@ -2396,8 +2396,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)