mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2025-01-10 01:05:28 +00:00
7 lines
273 B
Rust
7 lines
273 B
Rust
// Take a look at the license at the top of the repository in the LICENSE file.
|
|
|
|
use glib::once_cell::sync::Lazy;
|
|
use gst::CapsFeatures;
|
|
|
|
pub static CAPS_FEATURES_MEMORY_DMABUF: Lazy<CapsFeatures> =
|
|
Lazy::new(|| CapsFeatures::new([crate::CAPS_FEATURE_MEMORY_DMABUF]));
|