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/rtp
diff options
context:
space:
mode:
authorDavid Revay <daverevay@gmail.com>2023-03-28 08:11:05 +0300
committerDavid Revay <daverevay@gmail.com>2023-03-28 08:11:05 +0300
commit002a70a2a447f5d5d1ced9764a0dd6e8ba2ee8f0 (patch)
tree7f0ad20ff67fd40054266e26a37fb03255eeb17d /net/rtp
parent7a1b2d97d42c301cbda3e7fc065b08272d64ee30 (diff)
chore(webrtcsink): fix max-bitrate blurb and nick
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1150>
Diffstat (limited to 'net/rtp')
-rw-r--r--net/rtp/src/gcc/imp.rs4
1 files changed, 2 insertions, 2 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)