gstreamer_allocators/auto/
mod.rs

1// This file was generated by gir (https://github.com/gtk-rs/gir)
2// from gir-files (https://github.com/gtk-rs/gir-files)
3// from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git)
4// DO NOT EDIT
5
6#[cfg(target_os = "linux")]
7#[cfg_attr(docsrs, doc(cfg(target_os = "linux")))]
8#[cfg(feature = "v1_24")]
9#[cfg_attr(docsrs, doc(cfg(feature = "v1_24")))]
10mod drm_dumb_allocator;
11#[cfg(target_os = "linux")]
12#[cfg_attr(docsrs, doc(cfg(target_os = "linux")))]
13#[cfg(feature = "v1_24")]
14#[cfg_attr(docsrs, doc(cfg(feature = "v1_24")))]
15pub use self::drm_dumb_allocator::DRMDumbAllocator;
16
17#[cfg(target_os = "linux")]
18#[cfg_attr(docsrs, doc(cfg(target_os = "linux")))]
19mod dma_buf_allocator;
20#[cfg(target_os = "linux")]
21#[cfg_attr(docsrs, doc(cfg(target_os = "linux")))]
22pub use self::dma_buf_allocator::DmaBufAllocator;
23
24mod fd_allocator;
25pub use self::fd_allocator::FdAllocator;
26
27mod phys_memory_allocator;
28pub use self::phys_memory_allocator::PhysMemoryAllocator;
29
30#[cfg(unix)]
31#[cfg_attr(docsrs, doc(cfg(unix)))]
32#[cfg(feature = "v1_24")]
33#[cfg_attr(docsrs, doc(cfg(feature = "v1_24")))]
34mod shm_allocator;
35#[cfg(unix)]
36#[cfg_attr(docsrs, doc(cfg(unix)))]
37#[cfg(feature = "v1_24")]
38#[cfg_attr(docsrs, doc(cfg(feature = "v1_24")))]
39pub use self::shm_allocator::ShmAllocator;
40
41mod flags;
42pub use self::flags::FdMemoryFlags;
43
44pub(crate) mod functions;
45
46mod constants;
47pub use self::constants::ALLOCATOR_DMABUF;
48pub use self::constants::ALLOCATOR_FD;
49#[cfg(feature = "v1_24")]
50#[cfg_attr(docsrs, doc(cfg(feature = "v1_24")))]
51pub use self::constants::ALLOCATOR_SHM;
52pub use self::constants::CAPS_FEATURE_MEMORY_DMABUF;
53
54pub(crate) mod traits {
55    pub use super::phys_memory_allocator::PhysMemoryAllocatorExt;
56}