flowly-core 0.6.0

Flowly is a library of modular and reusable components for building robust pipelines processing audio, video and other.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod chunked;
mod codec;
mod either;
mod error;
mod fourcc;
mod frame;
mod memory;
mod void;

pub use chunked::Chunked;
pub use codec::{BytesDecoder, Decoder, Encoder, Reader, ReaderExt, Writer, WriterExt};
pub use either::Either;
pub use error::Error;
pub use fourcc::Fourcc;
pub use frame::*;
pub use memory::{CpuAllocator, MemAlloc, MemBlock, MemDevice, MemError};
pub use void::Void;