adder_codec_rs/utils/
mod.rs

1/// A module for simultaneously transcoding a video source to ADΔER and reconstructing a framed
2/// video from ADΔER
3pub mod simulproc;
4
5/// A module for migrating streams from one format to another
6pub mod stream_migration;
7
8/// Computer vision utilities
9pub mod cv;
10
11#[cfg(feature = "feature-logging")]
12pub mod logging;
13/// A module for visualizing streams
14pub mod viz;