GstPipelineStudio/src/gps/mod.rs
Stéphane Cerveau 0f0f9d6fc0 app: port support update
Connect the port to the element pad
capabilities.
Can now create a port only if the element
supports the request pad
Can only delete a port which is a "sometimes"
port/pad.

Introduce GPS module.
2022-01-18 17:43:01 +01:00

8 lines
134 B
Rust

mod element;
mod pad;
mod pipeline;
pub use element::ElementInfo;
pub use pad::PadInfo;
pub use pipeline::{Pipeline, PipelineState};