GstPipelineStudio/src/gps/mod.rs
Stéphane Cerveau 25d856a360 pipeline: rename to player
To avoid confusion with GStreamer pipeline and
GPS pipeline, renamed it player.
2022-02-07 12:19:15 +01:00

8 lines
128 B
Rust

mod element;
mod pad;
mod player;
pub use element::ElementInfo;
pub use pad::PadInfo;
pub use player::{PipelineState, Player};