2018-01-13 18:05:35 +00:00
|
|
|
// Copyright (C) 2017 Sebastian Dröge <sebastian@centricular.com>
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
2022-01-15 19:18:47 +00:00
|
|
|
//
|
2022-03-14 08:22:53 +00:00
|
|
|
// SPDX-License-Identifier: MIT OR Apache-2.0
|
2022-08-29 15:41:33 +00:00
|
|
|
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
|
2018-01-13 18:05:35 +00:00
|
|
|
|
2021-06-03 18:20:54 +00:00
|
|
|
use gst::glib;
|
|
|
|
|
2018-12-12 13:13:00 +00:00
|
|
|
mod identity;
|
2019-04-24 09:00:14 +00:00
|
|
|
mod progressbin;
|
2018-01-13 18:05:35 +00:00
|
|
|
mod rgb2gray;
|
2018-02-05 14:46:55 +00:00
|
|
|
mod sinesrc;
|
2018-01-13 18:05:35 +00:00
|
|
|
|
|
|
|
// Plugin entry point that should register all elements provided by this plugin,
|
|
|
|
// and everything else that this plugin might provide (e.g. typefinders or device providers).
|
2018-11-04 18:46:07 +00:00
|
|
|
fn plugin_init(plugin: &gst::Plugin) -> Result<(), glib::BoolError> {
|
|
|
|
rgb2gray::register(plugin)?;
|
|
|
|
sinesrc::register(plugin)?;
|
2018-12-12 13:13:00 +00:00
|
|
|
identity::register(plugin)?;
|
2019-04-24 09:00:14 +00:00
|
|
|
progressbin::register(plugin)?;
|
2018-11-04 18:46:07 +00:00
|
|
|
Ok(())
|
2018-01-13 18:05:35 +00:00
|
|
|
}
|
|
|
|
|
2021-07-30 16:46:23 +00:00
|
|
|
// Static plugin metadata that is directly stored in the plugin shared object and read by GStreamer
|
2018-01-13 18:05:35 +00:00
|
|
|
// upon loading.
|
|
|
|
// Plugin name, plugin description, plugin entry point function, version number of this plugin,
|
|
|
|
// license of the plugin, source package name, binary package name, origin where it comes from
|
|
|
|
// and the date/time of release.
|
2020-12-20 18:43:45 +00:00
|
|
|
gst::plugin_define!(
|
2019-05-27 20:21:22 +00:00
|
|
|
rstutorial,
|
2019-06-03 10:53:58 +00:00
|
|
|
env!("CARGO_PKG_DESCRIPTION"),
|
2018-01-13 18:05:35 +00:00
|
|
|
plugin_init,
|
2019-06-03 10:53:58 +00:00
|
|
|
concat!(env!("CARGO_PKG_VERSION"), "-", env!("COMMIT_ID")),
|
2018-11-24 09:31:58 +00:00
|
|
|
"MIT/X11",
|
2019-06-03 10:53:58 +00:00
|
|
|
env!("CARGO_PKG_NAME"),
|
|
|
|
env!("CARGO_PKG_NAME"),
|
|
|
|
env!("CARGO_PKG_REPOSITORY"),
|
|
|
|
env!("BUILD_REL_DATE")
|
2018-01-13 18:05:35 +00:00
|
|
|
);
|