use gst::glib;
use gst::prelude::*;
pub mod imp;
glib::wrapper! {
pub struct QuinnWebTransportSink(ObjectSubclass<imp::QuinnWebTransportSink>) @extends gst_base::BaseSink, gst::Element, gst::Object;
}
pub fn register(plugin: &gst::Plugin) -> Result<(), glib::BoolError> {
#[cfg(not(feature = "doc"))]
gst::Element::register(
Some(plugin),
"quinnwtserversink",
gst::Rank::MARGINAL,
QuinnWebTransportSink::static_type(),
)?;
gst::Element::register(
Some(plugin),
"quinnwtsink",
gst::Rank::MARGINAL,
QuinnWebTransportSink::static_type(),
)
}