gstreamer-rs/gstreamer-utils/src/lib.rs
Guillaume Desmottes 5349822962 utils/streamproducer: add ConsumptionLink
Having an explicit link object makes it much easier to build complex
producers/consumers dynamics graphs.
It provides helper to switch producers and prevent accidentally keeping
broken links around as they are disconnected on Drop.
2022-05-17 11:04:35 +03:00

4 lines
87 B
Rust

mod streamproducer;
pub use crate::streamproducer::{ConsumptionLink, StreamProducer};