| 1 | // Take a look at the license at the top of the repository in the LICENSE file. |
|---|---|
| 2 | |
| 3 | use gst::CapsFeatures; |
| 4 | use once_cell::sync::Lazy; |
| 5 | |
| 6 | pub static CAPS_FEATURES_MEMORY_GL_MEMORY: Lazy<CapsFeatures> = |
| 7 | Lazy::new(|| CapsFeatures::new([crate::CAPS_FEATURE_MEMORY_GL_MEMORY])); |
| 8 |
