mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-11-15 22:11:01 +00:00
14 lines
432 B
Rust
14 lines
432 B
Rust
// Take a look at the license at the top of the repository in the LICENSE file.
|
|
|
|
use glib::translate::*;
|
|
|
|
use crate::TracerFactory;
|
|
|
|
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()) }
|
|
}
|
|
}
|