gst-plugins-rs/net/rtsp/src/rtspsrc/mod.rs

56 lines
1.5 KiB
Rust

// GStreamer RTSP Source v2
//
// Copyright (C) 2023 Tim-Philipp Müller <tim centricular com>
//
// 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
/**
* SECTION:element-rtspsrc2
*
* `rtspsrc2` is a from-scratch rewrite of the `rtspsrc` element to fix some fundamental
* architectural issues, with the aim of making the two functionally equivalent.
*
* Implemented features:
* * RTSP 1.0 support
* * Lower transports: TCP, UDP, UDP-Multicast
* * RTCP SR and RTCP RR
* * RTCP-based A/V sync
* * Lower transport selection and priority (NEW!)
* - Also supports different lower transports for each SETUP
*
* Some missing features:
* * SET_PARAMETER/GET_PARAMETER messages
* * SRTP support
* * VOD support: PAUSE, seeking, etc
* * ONVIF backchannel and trick mode support
* * and more
*
* Please see the [README](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/blob/main/net/rtsp/README.md)
* for a complete and up-to-date list.
*/
use gst::glib;
use gst::prelude::*;
mod body;
mod imp;
mod sdp;
mod tcp_message;
mod transport;
glib::wrapper! {
pub struct RtspSrc(ObjectSubclass<imp::RtspSrc>) @extends gst::Bin, gst::Element, gst::Object;
}
pub fn register(plugin: &gst::Plugin) -> Result<(), glib::BoolError> {
gst::Element::register(
Some(plugin),
"rtspsrc2",
gst::Rank::NONE,
RtspSrc::static_type(),
)
}