mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-26 13:31:00 +00:00
ndi: Prefix GType names with Gst
This commit is contained in:
parent
047f990c78
commit
907910329f
5 changed files with 5 additions and 5 deletions
|
@ -32,7 +32,7 @@ pub struct DeviceProvider {
|
|||
|
||||
#[glib::object_subclass]
|
||||
impl ObjectSubclass for DeviceProvider {
|
||||
const NAME: &'static str = "NdiDeviceProvider";
|
||||
const NAME: &'static str = "GstNdiDeviceProvider";
|
||||
type Type = super::DeviceProvider;
|
||||
type ParentType = gst::DeviceProvider;
|
||||
|
||||
|
|
|
@ -51,7 +51,7 @@ static CAT: Lazy<gst::DebugCategory> = Lazy::new(|| {
|
|||
|
||||
#[glib::object_subclass]
|
||||
impl ObjectSubclass for NdiSink {
|
||||
const NAME: &'static str = "NdiSink";
|
||||
const NAME: &'static str = "GstNdiSink";
|
||||
type Type = super::NdiSink;
|
||||
type ParentType = gst_base::BaseSink;
|
||||
|
||||
|
|
|
@ -38,7 +38,7 @@ pub struct NdiSinkCombiner {
|
|||
|
||||
#[glib::object_subclass]
|
||||
impl ObjectSubclass for NdiSinkCombiner {
|
||||
const NAME: &'static str = "NdiSinkCombiner";
|
||||
const NAME: &'static str = "GstNdiSinkCombiner";
|
||||
type Type = super::NdiSinkCombiner;
|
||||
type ParentType = gst_base::Aggregator;
|
||||
|
||||
|
|
|
@ -90,7 +90,7 @@ pub struct NdiSrc {
|
|||
|
||||
#[glib::object_subclass]
|
||||
impl ObjectSubclass for NdiSrc {
|
||||
const NAME: &'static str = "NdiSrc";
|
||||
const NAME: &'static str = "GstNdiSrc";
|
||||
type Type = super::NdiSrc;
|
||||
type ParentType = gst_base::BaseSrc;
|
||||
|
||||
|
|
|
@ -35,7 +35,7 @@ pub struct NdiSrcDemux {
|
|||
|
||||
#[glib::object_subclass]
|
||||
impl ObjectSubclass for NdiSrcDemux {
|
||||
const NAME: &'static str = "NdiSrcDemux";
|
||||
const NAME: &'static str = "GstNdiSrcDemux";
|
||||
type Type = super::NdiSrcDemux;
|
||||
type ParentType = gst::Element;
|
||||
|
||||
|
|
Loading…
Reference in a new issue