2017-02-16 15:52:27 +00:00
|
|
|
// Copyright (C) 2016-2017 Sebastian Dröge <sebastian@centricular.com>
|
2016-12-23 17:04:32 +00:00
|
|
|
//
|
2017-02-16 15:52:27 +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.
|
2022-01-15 19:18:47 +00:00
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: MIT/Apache-2.0
|
2022-01-14 09:25:49 +00:00
|
|
|
#![allow(clippy::non_send_fields_in_send_ty)]
|
2016-12-23 17:04:32 +00:00
|
|
|
|
2021-06-03 18:20:54 +00:00
|
|
|
use gst::glib;
|
|
|
|
|
2019-01-03 21:53:06 +00:00
|
|
|
mod bytes;
|
2016-12-23 17:04:32 +00:00
|
|
|
mod flvdemux;
|
|
|
|
|
2018-11-04 18:46:07 +00:00
|
|
|
fn plugin_init(plugin: &gst::Plugin) -> Result<(), glib::BoolError> {
|
2019-01-03 21:53:06 +00:00
|
|
|
flvdemux::register(plugin)
|
2016-12-23 17:04:32 +00:00
|
|
|
}
|
|
|
|
|
2020-12-20 18:43:45 +00:00
|
|
|
gst::plugin_define!(
|
2019-05-27 20:21:22 +00:00
|
|
|
rsflv,
|
2019-06-03 10:53:58 +00:00
|
|
|
env!("CARGO_PKG_DESCRIPTION"),
|
2017-07-31 13:36:35 +00:00
|
|
|
plugin_init,
|
2019-06-03 10:53:58 +00:00
|
|
|
concat!(env!("CARGO_PKG_VERSION"), "-", env!("COMMIT_ID")),
|
2019-01-03 21:53:06 +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")
|
2017-07-31 13:36:35 +00:00
|
|
|
);
|