mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-12 05:11:32 +00:00
36f032ef15
And not in the source code, it's a build decision.
38 lines
1 KiB
Rust
38 lines
1 KiB
Rust
// Copyright (C) 2016-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.
|
|
|
|
#[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;
|
|
|
|
mod file_location;
|
|
mod filesink;
|
|
mod filesrc;
|
|
|
|
fn plugin_init(plugin: &gst::Plugin) -> Result<(), glib::BoolError> {
|
|
filesink::register(plugin)?;
|
|
filesrc::register(plugin)?;
|
|
Ok(())
|
|
}
|
|
|
|
gst_plugin_define!(
|
|
rsfile,
|
|
env!("CARGO_PKG_DESCRIPTION"),
|
|
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")
|
|
);
|