ezk 0.1.4

Types to build reusable media streaming components
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![warn(unreachable_pub)]

pub mod error;
mod media_type;
pub mod nodes;
mod source;
pub mod sync;
mod value_range;

pub use error::{Error, ErrorKind, Result};
pub use media_type::{ConfigRange, Frame, MediaType};
pub use source::{BoxedSource, BoxedSourceCancelSafe, NextEventIsCancelSafe, Source, SourceEvent};
pub use value_range::{Intersect, Range, ValueRange};