2019-05-01 11:09:16 +00:00
|
|
|
// Copyright (C) 2019 Guillaume Desmottes <guillaume.desmottes@collabora.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)]
|
2019-05-01 11:09:16 +00:00
|
|
|
|
2022-08-25 22:30:08 +00:00
|
|
|
/**
|
|
|
|
* plugin-cdg:
|
|
|
|
*
|
|
|
|
* Since: plugins-rs-0.5.0
|
|
|
|
*/
|
2021-06-03 18:20:54 +00:00
|
|
|
use gst::glib;
|
|
|
|
|
2019-05-01 11:09:16 +00:00
|
|
|
mod cdgdec;
|
2019-05-26 14:12:16 +00:00
|
|
|
mod cdgparse;
|
2019-05-26 12:48:33 +00:00
|
|
|
mod constants;
|
2020-11-15 13:50:12 +00:00
|
|
|
mod typefind;
|
2019-06-05 05:19:27 +00:00
|
|
|
|
2019-05-01 11:09:16 +00:00
|
|
|
fn plugin_init(plugin: &gst::Plugin) -> Result<(), glib::BoolError> {
|
2019-05-26 14:12:16 +00:00
|
|
|
cdgdec::register(plugin)?;
|
|
|
|
cdgparse::register(plugin)?;
|
2020-11-15 13:50:12 +00:00
|
|
|
typefind::register(plugin)?;
|
2019-05-26 14:12:16 +00:00
|
|
|
Ok(())
|
2019-05-01 11:09:16 +00:00
|
|
|
}
|
|
|
|
|
2020-12-20 18:43:45 +00:00
|
|
|
gst::plugin_define!(
|
2019-05-29 06:10:08 +00:00
|
|
|
cdg,
|
2019-06-03 10:53:58 +00:00
|
|
|
env!("CARGO_PKG_DESCRIPTION"),
|
2019-05-01 11:09:16 +00:00
|
|
|
plugin_init,
|
2019-06-03 10:53:58 +00:00
|
|
|
concat!(env!("CARGO_PKG_VERSION"), "-", env!("COMMIT_ID")),
|
2019-05-01 11:09:16 +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")
|
2019-05-01 11:09:16 +00:00
|
|
|
);
|