mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-25 21:11:00 +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>",
|
"author": "Sanchayan Maity <sanchayan@asymptotic.io>",
|
||||||
"description": "Send data over the network via QUIC",
|
"description": "Send data over the network via QUIC",
|
||||||
"hierarchy": [
|
"hierarchy": [
|
||||||
"GstQuinnQUICSink",
|
"GstQuinnQuicSink",
|
||||||
"GstBaseSink",
|
"GstBaseSink",
|
||||||
"GstElement",
|
"GstElement",
|
||||||
"GstObject",
|
"GstObject",
|
||||||
|
@ -4056,7 +4056,7 @@
|
||||||
"author": "Sanchayan Maity <sanchayan@asymptotic.io>",
|
"author": "Sanchayan Maity <sanchayan@asymptotic.io>",
|
||||||
"description": "Receive data over the network via QUIC",
|
"description": "Receive data over the network via QUIC",
|
||||||
"hierarchy": [
|
"hierarchy": [
|
||||||
"GstQuinnQUICSrc",
|
"GstQuinnQuicSrc",
|
||||||
"GstBaseSrc",
|
"GstBaseSrc",
|
||||||
"GstElement",
|
"GstElement",
|
||||||
"GstObject",
|
"GstObject",
|
||||||
|
|
|
@ -324,7 +324,7 @@ impl ObjectImpl for QuinnQuicSink {
|
||||||
|
|
||||||
#[glib::object_subclass]
|
#[glib::object_subclass]
|
||||||
impl ObjectSubclass for QuinnQuicSink {
|
impl ObjectSubclass for QuinnQuicSink {
|
||||||
const NAME: &'static str = "GstQuinnQUICSink";
|
const NAME: &'static str = "GstQuinnQuicSink";
|
||||||
type Type = super::QuinnQuicSink;
|
type Type = super::QuinnQuicSink;
|
||||||
type ParentType = gst_base::BaseSink;
|
type ParentType = gst_base::BaseSink;
|
||||||
}
|
}
|
||||||
|
|
|
@ -315,7 +315,7 @@ impl ObjectImpl for QuinnQuicSrc {
|
||||||
|
|
||||||
#[glib::object_subclass]
|
#[glib::object_subclass]
|
||||||
impl ObjectSubclass for QuinnQuicSrc {
|
impl ObjectSubclass for QuinnQuicSrc {
|
||||||
const NAME: &'static str = "GstQuinnQUICSrc";
|
const NAME: &'static str = "GstQuinnQuicSrc";
|
||||||
type Type = super::QuinnQuicSrc;
|
type Type = super::QuinnQuicSrc;
|
||||||
type ParentType = gst_base::BaseSrc;
|
type ParentType = gst_base::BaseSrc;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue