net/quinn: Use camel case acronym

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1558>
This commit is contained in:
Sanchayan Maity 2024-05-02 18:05:15 +05:30 committed by GStreamer Marge Bot
parent be3ae583bc
commit 80f8664564
3 changed files with 4 additions and 4 deletions

View file

@ -3896,7 +3896,7 @@
"author": "Sanchayan Maity <sanchayan@asymptotic.io>",
"description": "Send data over the network via QUIC",
"hierarchy": [
"GstQuinnQUICSink",
"GstQuinnQuicSink",
"GstBaseSink",
"GstElement",
"GstObject",
@ -4056,7 +4056,7 @@
"author": "Sanchayan Maity <sanchayan@asymptotic.io>",
"description": "Receive data over the network via QUIC",
"hierarchy": [
"GstQuinnQUICSrc",
"GstQuinnQuicSrc",
"GstBaseSrc",
"GstElement",
"GstObject",

View file

@ -324,7 +324,7 @@ impl ObjectImpl for QuinnQuicSink {
#[glib::object_subclass]
impl ObjectSubclass for QuinnQuicSink {
const NAME: &'static str = "GstQuinnQUICSink";
const NAME: &'static str = "GstQuinnQuicSink";
type Type = super::QuinnQuicSink;
type ParentType = gst_base::BaseSink;
}

View file

@ -315,7 +315,7 @@ impl ObjectImpl for QuinnQuicSrc {
#[glib::object_subclass]
impl ObjectSubclass for QuinnQuicSrc {
const NAME: &'static str = "GstQuinnQUICSrc";
const NAME: &'static str = "GstQuinnQuicSrc";
type Type = super::QuinnQuicSrc;
type ParentType = gst_base::BaseSrc;
}