mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-22 11:30:59 +00:00
net/quinn: Use camel case acronym
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1558>
This commit is contained in:
parent
be3ae583bc
commit
80f8664564
3 changed files with 4 additions and 4 deletions
|
@ -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",
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue