2020-11-14 17:24:01 +00:00
|
|
|
// Copyright (C) 2017 Author: Arun Raghavan <arun@arunraghavan.net>
|
|
|
|
//
|
2022-01-15 18:40:12 +00:00
|
|
|
// This Source Code Form is subject to the terms of the Mozilla Public License, v2.0.
|
|
|
|
// If a copy of the MPL was not distributed with this file, You can obtain one at
|
|
|
|
// <https://mozilla.org/MPL/2.0/>.
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
2020-11-14 17:24:01 +00:00
|
|
|
|
2021-06-03 18:20:54 +00:00
|
|
|
use gst::glib;
|
|
|
|
use gst::prelude::*;
|
2020-11-14 17:24:01 +00:00
|
|
|
|
|
|
|
mod imp;
|
|
|
|
|
2020-12-17 22:44:49 +00:00
|
|
|
glib::wrapper! {
|
2024-10-20 18:13:43 +00:00
|
|
|
pub struct S3Src(ObjectSubclass<imp::S3Src>) @extends gst_base::BaseSrc, gst::Element, gst::Object, @implements gst::URIHandler;
|
2020-11-14 17:24:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn register(plugin: &gst::Plugin) -> Result<(), glib::BoolError> {
|
2022-08-25 22:30:08 +00:00
|
|
|
#[cfg(not(feature = "doc"))]
|
2020-11-14 17:24:01 +00:00
|
|
|
gst::Element::register(
|
|
|
|
Some(plugin),
|
|
|
|
"rusotos3src",
|
2023-11-02 12:10:59 +00:00
|
|
|
gst::Rank::PRIMARY,
|
2020-11-14 17:24:01 +00:00
|
|
|
S3Src::static_type(),
|
2022-05-26 09:52:42 +00:00
|
|
|
)?;
|
|
|
|
gst::Element::register(
|
|
|
|
Some(plugin),
|
|
|
|
"awss3src",
|
2023-11-02 12:10:59 +00:00
|
|
|
gst::Rank::PRIMARY,
|
2022-05-26 09:52:42 +00:00
|
|
|
S3Src::static_type(),
|
2020-11-14 17:24:01 +00:00
|
|
|
)
|
|
|
|
}
|