use gst::glib;
use gst::prelude::*;
mod imp;
glib::wrapper! {
pub struct TranslationBin(ObjectSubclass<imp::TranslationBin>) @extends gst::Bin, gst::Element, gst::Object;
}
glib::wrapper! {
pub struct TranslationSrcPad(ObjectSubclass<imp::TranslationSrcPad>) @extends gst::GhostPad, gst::ProxyPad, gst::Pad, gst::Object;
}
pub fn register(plugin: &gst::Plugin) -> Result<(), glib::BoolError> {
#[cfg(feature = "doc")]
{
TranslationSrcPad::static_type().mark_as_plugin_api(gst::PluginAPIFlags::empty());
}
gst::Element::register(
Some(plugin),
"translationbin",
gst::Rank::NONE,
TranslationBin::static_type(),
)
}