mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-13 22:01:19 +00:00
b401b2f243
Allows having a live input stream and falling back to another input stream after a configurable timeout without any buffers received on the main input.
33 lines
1.3 KiB
TOML
33 lines
1.3 KiB
TOML
[package]
|
|
name = "gst-plugin-fallbackswitch"
|
|
version = "0.6.0"
|
|
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
|
|
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
|
|
license = "LGPL-2.1+"
|
|
edition = "2018"
|
|
description = "Fallback Switcher Plugin"
|
|
|
|
[dependencies]
|
|
libc = "0.2"
|
|
glib = { git = "https://github.com/gtk-rs/glib", features = ["subclassing"] }
|
|
glib-sys = { git = "https://github.com/gtk-rs/sys" }
|
|
gobject-sys = { git = "https://github.com/gtk-rs/sys" }
|
|
gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_14", "subclassing"] }
|
|
gstreamer-base = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_16", "subclassing"], optional = true }
|
|
gstreamer-sys = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys" }
|
|
gstreamer-audio = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_14"] }
|
|
gstreamer-video = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_14"] }
|
|
|
|
[lib]
|
|
name = "gstfallbackswitch"
|
|
crate-type = ["cdylib", "rlib"]
|
|
path = "src/lib.rs"
|
|
|
|
[build-dependencies]
|
|
gst-plugin-version-helper = { path="../gst-plugin-version-helper" }
|
|
cc = "1.0"
|
|
pkg-config = "0.3"
|
|
|
|
[features]
|
|
default = []
|
|
#v1_18 = ["gstreamer/v1_18", "gstreamer-base"]
|