gst-plugins-rs/generic/file/src/lib.rs

41 lines
1 KiB
Rust
Raw Normal View History

// Copyright (C) 2016-2017 Sebastian Dröge <sebastian@centricular.com>
2016-05-15 15:54:09 +00:00
//
// 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.
2016-05-15 15:54:09 +00:00
2017-07-31 13:36:35 +00:00
#![crate_type = "cdylib"]
2016-05-13 13:35:48 +00:00
2016-12-25 11:16:12 +00:00
#[macro_use]
extern crate glib;
#[macro_use]
extern crate gstreamer as gst;
extern crate gstreamer_base as gst_base;
extern crate url;
#[macro_use]
extern crate lazy_static;
2016-05-13 15:02:19 +00:00
mod file_location;
mod filesink;
2018-04-05 08:35:34 +00:00
mod filesrc;
2018-11-04 18:46:07 +00:00
fn plugin_init(plugin: &gst::Plugin) -> Result<(), glib::BoolError> {
filesink::register(plugin)?;
filesrc::register(plugin)?;
2018-11-04 18:46:07 +00:00
Ok(())
}
gst_plugin_define!(
rsfile,
env!("CARGO_PKG_DESCRIPTION"),
2017-07-31 13:36:35 +00:00
plugin_init,
concat!(env!("CARGO_PKG_VERSION"), "-", env!("COMMIT_ID")),
"MIT/X11",
env!("CARGO_PKG_NAME"),
env!("CARGO_PKG_NAME"),
env!("CARGO_PKG_REPOSITORY"),
env!("BUILD_REL_DATE")
2017-07-31 13:36:35 +00:00
);