gstreamer-rs/gstreamer/src/tracer_factory.rs
Sebastian Dröge 4651c9db4d Update minimum supported version to 1.14
This is the version that is available in Ubuntu 18.04.
2022-04-07 12:45:47 +03:00

15 lines
432 B
Rust

// Take a look at the license at the top of the repository in the LICENSE file.
use crate::TracerFactory;
use glib::translate::*;
impl TracerFactory {
#[doc(alias = "gst_tracer_factory_get_list")]
#[doc(alias = "get_list")]
pub fn factories() -> glib::List<TracerFactory> {
assert_initialized_main_thread!();
unsafe { FromGlibPtrContainer::from_glib_full(ffi::gst_tracer_factory_get_list()) }
}
}