mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-10-31 22:58:51 +00:00
15e7a63e7b
The goal is to be able to get back the original buffer after performing analysis on a transformed version. Then put the various GstMeta back on the original buffer. An example pipeline would be .. ! originalbuffersave ! videoscale ! analysis ! originalbufferestore ! draw_overlay ! sink Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1428>
150 lines
4.8 KiB
TOML
150 lines
4.8 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
|
|
members = [
|
|
"tutorial",
|
|
"version-helper",
|
|
|
|
"audio/audiofx",
|
|
"audio/claxon",
|
|
"audio/csound",
|
|
"audio/lewton",
|
|
"audio/spotify",
|
|
|
|
"generic/file",
|
|
"generic/originalbuffer",
|
|
"generic/sodium",
|
|
"generic/threadshare",
|
|
"generic/inter",
|
|
|
|
"mux/flavors",
|
|
"mux/fmp4",
|
|
"mux/mp4",
|
|
|
|
"net/aws",
|
|
"net/hlssink3",
|
|
"net/ndi",
|
|
"net/onvif",
|
|
"net/raptorq",
|
|
"net/reqwest",
|
|
"net/rtp",
|
|
"net/rtsp",
|
|
"net/webrtchttp",
|
|
"net/webrtc",
|
|
"net/webrtc/protocol",
|
|
"net/webrtc/signalling",
|
|
|
|
"text/ahead",
|
|
"text/json",
|
|
"text/regex",
|
|
"text/wrap",
|
|
|
|
"utils/fallbackswitch",
|
|
"utils/livesync",
|
|
"utils/togglerecord",
|
|
"utils/tracers",
|
|
"utils/uriplaylistbin",
|
|
|
|
"video/cdg",
|
|
"video/closedcaption",
|
|
"video/dav1d",
|
|
"video/ffv1",
|
|
"video/gif",
|
|
"video/gtk4",
|
|
"video/hsv",
|
|
"video/png",
|
|
"video/rav1e",
|
|
"video/videofx",
|
|
"video/webp",
|
|
]
|
|
|
|
# Only plugins without external dependencies
|
|
default-members = [
|
|
"version-helper",
|
|
|
|
"audio/audiofx",
|
|
"audio/claxon",
|
|
"audio/lewton",
|
|
|
|
"generic/originalbuffer",
|
|
"generic/threadshare",
|
|
"generic/inter",
|
|
|
|
"mux/fmp4",
|
|
"mux/mp4",
|
|
|
|
"net/aws",
|
|
"net/hlssink3",
|
|
"net/onvif",
|
|
"net/raptorq",
|
|
"net/reqwest",
|
|
"net/rtp",
|
|
"net/rtsp",
|
|
"net/webrtchttp",
|
|
"net/webrtc",
|
|
"net/webrtc/protocol",
|
|
"net/webrtc/signalling",
|
|
"net/ndi",
|
|
|
|
"text/ahead",
|
|
"text/json",
|
|
"text/regex",
|
|
"text/wrap",
|
|
|
|
"utils/fallbackswitch",
|
|
"utils/livesync",
|
|
"utils/togglerecord",
|
|
"utils/tracers",
|
|
"utils/uriplaylistbin",
|
|
|
|
"video/cdg",
|
|
"video/ffv1",
|
|
"video/gif",
|
|
"video/hsv",
|
|
"video/png",
|
|
"video/rav1e",
|
|
]
|
|
|
|
[profile.release]
|
|
lto = true
|
|
opt-level = 3
|
|
debug = true
|
|
panic = 'unwind'
|
|
|
|
[profile.dev]
|
|
opt-level = 1
|
|
|
|
[workspace.package]
|
|
version = "0.13.0-alpha.1"
|
|
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
|
|
edition = "2021"
|
|
rust-version = "1.70"
|
|
|
|
[workspace.dependencies]
|
|
once_cell = "1"
|
|
glib = { git = "https://github.com/gtk-rs/gtk-rs-core", branch = "master" }
|
|
gio = { git = "https://github.com/gtk-rs/gtk-rs-core", branch = "master" }
|
|
cairo-rs = { git = "https://github.com/gtk-rs/gtk-rs-core", branch = "master", features=["use_glib"] }
|
|
pango = { git = "https://github.com/gtk-rs/gtk-rs-core", branch = "master" }
|
|
pangocairo = { git = "https://github.com/gtk-rs/gtk-rs-core", branch = "master" }
|
|
gtk = { package = "gtk4", git = "https://github.com/gtk-rs/gtk4-rs", branch = "master"}
|
|
gdk-wayland = { package = "gdk4-wayland", git = "https://github.com/gtk-rs/gtk4-rs", branch = "master"}
|
|
gdk-x11 = { package = "gdk4-x11", git = "https://github.com/gtk-rs/gtk4-rs", branch = "master"}
|
|
gdk-win32 = { package = "gdk4-win32", git = "https://github.com/gtk-rs/gtk4-rs", branch = "master"}
|
|
gst = { package = "gstreamer", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", branch = "main" }
|
|
gst-app = { package = "gstreamer-app", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", branch = "main" }
|
|
gst-audio = { package = "gstreamer-audio", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", branch = "main" }
|
|
gst-base = { package = "gstreamer-base", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", branch = "main" }
|
|
gst-check = { package = "gstreamer-check", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", branch = "main" }
|
|
gst-gl = { package = "gstreamer-gl", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", branch = "main" }
|
|
gst-gl-egl = { package = "gstreamer-gl-egl", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", branch = "main" }
|
|
gst-gl-wayland = { package = "gstreamer-gl-wayland", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", branch = "main" }
|
|
gst-gl-x11 = { package = "gstreamer-gl-x11", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", branch = "main" }
|
|
gst-net = { package = "gstreamer-net", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", branch = "main" }
|
|
gst-pbutils = { package = "gstreamer-pbutils", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", branch = "main" }
|
|
gst-plugin-version-helper = { path="./version-helper" }
|
|
gst-rtp = { package = "gstreamer-rtp", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", branch = "main" }
|
|
gst-sdp = { package = "gstreamer-sdp", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", branch = "main" }
|
|
gst-utils = { package = "gstreamer-utils", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", branch = "main" }
|
|
gst-video = { package = "gstreamer-video", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", branch = "main" }
|
|
gst-webrtc = { package = "gstreamer-webrtc", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", branch = "main" }
|