mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-13 05:41:05 +00:00
95ae67752f
This element allows wrapping an existing live "mpeg-ts source" (udpsrc, srtsrc,...) and providing a clock based on the actual PCR of the stream. Combined with `tsdemux ignore-pcr=True` downstream of it, this allows playing back the content at the same rate as the (remote) provider **and** not modify the original timestamps. Co-authored-by: Sebastian Dröge <slomo@coaxion.net> Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1640>
12 lines
362 B
Rust
12 lines
362 B
Rust
//
|
|
// Copyright (C) 2024 Edward Hervey <edward@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
|
|
|
|
fn main() {
|
|
gst_plugin_version_helper::info()
|
|
}
|