1#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
10
11use gst::glib;
17
18mod mpegtslive;
19
20fn plugin_init(plugin: &gst::Plugin) -> Result<(), glib::BoolError> {
21 mpegtslive::register(plugin)?;
22 Ok(())
23}
24
25gst::plugin_define!(
26 mpegtslive,
27 env!("CARGO_PKG_DESCRIPTION"),
28 plugin_init,
29 concat!(env!("CARGO_PKG_VERSION"), "-", env!("COMMIT_ID")),
30 "MPL",
31 env!("CARGO_PKG_NAME"),
32 env!("CARGO_PKG_NAME"),
33 env!("CARGO_PKG_REPOSITORY"),
34 env!("BUILD_REL_DATE")
35);