// Copyright (C) 2016-2017 Sebastian Dröge // 2018 François Laignel // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. use glib::prelude::*; mod imp; glib_wrapper! { pub struct FileSrc(ObjectSubclass) @extends gst_base::BaseSrc, gst::Element, gst::Object, @implements gst::URIHandler; } unsafe impl Send for FileSrc {} unsafe impl Sync for FileSrc {} pub fn register(plugin: &gst::Plugin) -> Result<(), glib::BoolError> { gst::Element::register( Some(plugin), "rsfilesrc", gst::Rank::None, FileSrc::static_type(), ) }