mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-10-31 22:58:51 +00:00
b423febfbe
This new video filter is able to detect the dominant color in a video frame. When the color has changed from the previous frame the filter posts an Element message on the bus, the associated structure is named `colordetect` and has two fields: * a string field named `dominant-color` * a list field containing the whole color palette, stored as uint values, sorted by dominance, with more dominant colors first
61 lines
1.6 KiB
TOML
61 lines
1.6 KiB
TOML
[package]
|
|
name = "gst-plugin-videofx"
|
|
version = "0.9.0"
|
|
authors = ["Sanchayan Maity <sanchayan@asymptotic.io>"]
|
|
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
|
|
license = "MPL-2.0"
|
|
description = "Video Effects Plugin"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
cairo-rs = { git = "https://github.com/gtk-rs/gtk-rs-core", features=["use_glib"] }
|
|
atomic_refcell = "0.1"
|
|
once_cell = "1.0"
|
|
# color-thief = "0.2"
|
|
# https://github.com/RazrFalcon/color-thief-rs/pull/4
|
|
color-thief = { git = "https://github.com/philn/color-thief-rs", branch = "max-colors-respect" }
|
|
color-name = "1.0.0"
|
|
|
|
[dependencies.gst]
|
|
git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs"
|
|
features = ["v1_16"]
|
|
package = "gstreamer"
|
|
|
|
[dependencies.gst-base]
|
|
git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs"
|
|
features = ["v1_16"]
|
|
package = "gstreamer-base"
|
|
|
|
[dependencies.gst-video]
|
|
git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs"
|
|
features = ["v1_16"]
|
|
package = "gstreamer-video"
|
|
|
|
[dev-dependencies.gst-check]
|
|
git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs"
|
|
package = "gstreamer-check"
|
|
|
|
[lib]
|
|
name = "gstvideofx"
|
|
crate-type = ["cdylib", "rlib"]
|
|
path = "src/lib.rs"
|
|
|
|
[build-dependencies]
|
|
gst-plugin-version-helper = { path="../../version-helper" }
|
|
|
|
[features]
|
|
static = []
|
|
capi = []
|
|
|
|
[package.metadata.capi]
|
|
min_version = "0.8.0"
|
|
|
|
[package.metadata.capi.header]
|
|
enabled = false
|
|
|
|
[package.metadata.capi.library]
|
|
install_subdir = "gstreamer-1.0"
|
|
versioning = false
|
|
|
|
[package.metadata.capi.pkg_config]
|
|
requires_private = "gstreamer-1.0, gstreamer-base-1.0, gstreamer-video-1.0, gobject-2.0, glib-2.0, cairo-gobject"
|