mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-27 05:51:01 +00:00
750b29b76c
- Implemented a simple gif encoder based on the rust crate "gif". - Currently supported input pixel formats are RGB and RGBA - The encoder dynamically changes frame delays to approximate the actual input framerate - For the moment, each frame uses its own local colorpalette, leading to good image quality, but big files - Every frame is currently a full frame. No incremental frames for now - The produced GIF is currently compressed (LZW)
31 lines
605 B
TOML
31 lines
605 B
TOML
[workspace]
|
|
|
|
members = [
|
|
"gst-plugin-dav1d",
|
|
"gst-plugin-file",
|
|
"gst-plugin-reqwest",
|
|
"gst-plugin-flv",
|
|
"gst-plugin-audiofx",
|
|
"gst-plugin-togglerecord",
|
|
"gst-plugin-threadshare",
|
|
"gst-plugin-tutorial",
|
|
"gst-plugin-closedcaption",
|
|
"gst-plugin-version-helper",
|
|
"gst-plugin-sodium",
|
|
"gst-plugin-cdg",
|
|
"gst-plugin-rav1e",
|
|
"gst-plugin-rusoto",
|
|
"gst-plugin-fallbackswitch",
|
|
"gst-plugin-lewton",
|
|
"gst-plugin-claxon",
|
|
"gst-plugin-gif",
|
|
]
|
|
|
|
[profile.release]
|
|
lto = true
|
|
opt-level = 3
|
|
debug = true
|
|
panic = 'unwind'
|
|
|
|
[profile.dev]
|
|
opt-level = 1
|