2021-12-29 15:44:16 +00:00
|
|
|
// Copyright (C) 2021 Guillaume Desmottes <guillaume@desmottes.be>
|
|
|
|
//
|
2021-12-30 13:40:15 +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
|
2021-12-29 15:44:16 +00:00
|
|
|
|
|
|
|
use gst::glib;
|
|
|
|
use gst::prelude::*;
|
|
|
|
|
|
|
|
mod imp;
|
|
|
|
|
|
|
|
glib::wrapper! {
|
2022-10-17 15:09:16 +00:00
|
|
|
pub struct SpotifyAudioSrc(ObjectSubclass<imp::SpotifyAudioSrc>) @extends gst_base::BaseSrc, gst::Element, gst::Object, @implements gst::URIHandler;
|
2021-12-29 15:44:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn register(plugin: &gst::Plugin) -> Result<(), glib::BoolError> {
|
|
|
|
gst::Element::register(
|
|
|
|
Some(plugin),
|
|
|
|
"spotifyaudiosrc",
|
|
|
|
gst::Rank::Primary,
|
|
|
|
SpotifyAudioSrc::static_type(),
|
|
|
|
)
|
|
|
|
}
|