gst-plugins-rs/Cargo.toml
Sanchayan Maity 2c2cd8c2be Implement rounded corners
This plugin takes I420/YUV and appends an alpha plane to give YUVA/A420
to round the corners analogous to the border-radius in CSS. Other video
formats like NV12 not supported yet. Support for other planar formats
will follow.

Not all ways of specifying border-radius as in CSS are implemented at
the moment. Currently, we only support specifying it in pixels and it
gets applied uniformly to all corners.
2021-11-22 17:04:07 +05:30

69 lines
1.2 KiB
TOML

[workspace]
members = [
"tutorial",
"version-helper",
"audio/audiofx",
"audio/claxon",
"audio/csound",
"audio/lewton",
"generic/fmp4",
"generic/file",
"generic/sodium",
"generic/threadshare",
"net/hlssink3",
"net/reqwest",
"net/rusoto",
"utils/fallbackswitch",
"utils/togglerecord",
"video/cdg",
"video/closedcaption",
"video/videofx",
"video/dav1d",
"video/ffv1",
"video/flavors",
"video/gif",
"video/gtk4",
"video/rav1e",
"video/rspng",
"video/hsv",
"video/webp",
"text/wrap",
"text/json",
"text/regex",
]
# Only plugins without external dependencies
default-members = [
"tutorial",
"version-helper",
"audio/audiofx",
"audio/claxon",
"audio/lewton",
"generic/file",
"generic/threadshare",
"net/reqwest",
"net/rusoto",
"utils/fallbackswitch",
"utils/togglerecord",
"video/cdg",
"video/ffv1",
"video/flavors",
"video/gif",
"video/rav1e",
"video/rspng",
"video/hsv",
"text/wrap",
"text/json",
"text/regex",
]
[profile.release]
lto = true
opt-level = 3
debug = true
panic = 'unwind'
[profile.dev]
opt-level = 1