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

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/net/rtp
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2022-10-23 18:42:58 +0300
committerSebastian Dröge <sebastian@centricular.com>2022-10-23 20:46:08 +0300
commitf045099fc135d54a74b7a918e8ffcce5352ad3a7 (patch)
tree3ec9ec3beb0bdafb8b16fbf106c89354c5a0c3ea /net/rtp
parent211cd095d69726a3a2208feddd921d05b60c6540 (diff)
Fix GObject type names, GStreamer debug category names and element factory names
Fixes https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/issues/198
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 4899e8ea9..09f82c5d9 100644
--- a/net/rtp/src/gcc/imp.rs
+++ b/net/rtp/src/gcc/imp.rs
@@ -41,7 +41,7 @@ const DEFAULT_MAX_BITRATE: Bitrate = 8_192_000;
static CAT: Lazy<gst::DebugCategory> = Lazy::new(|| {
gst::DebugCategory::new(
- "gcc",
+ "rtpgccbwe",
gst::DebugColorFlags::empty(),
Some("Google Congestion Controller based bandwidth estimator"),
)
@@ -1146,7 +1146,7 @@ impl BandwidthEstimator {
#[glib::object_subclass]
impl ObjectSubclass for BandwidthEstimator {
- const NAME: &'static str = "GstRTPGCCBwE";
+ const NAME: &'static str = "GstRtpGCCBwE";
type Type = super::BandwidthEstimator;
type ParentType = gst::Element;