]> git.nihav.org Git - nihav.git/blame - nihav-codec-support/src/lib.rs
avimux: do not record palette change chunks in OpenDML index
[nihav.git] / nihav-codec-support / src / lib.rs
CommitLineData
b4d5b851 1//! Code and data for easier development of NihAV decoders.
b4d5b851
KS
2pub mod codecs;
3
4#[cfg(feature="dsp")]
b4d5b851
KS
5pub mod dsp;
6
7pub mod data;
8
03011b99 9#[allow(clippy::identity_op)]
8424ddfd
KS
10pub mod imgwrite;
11
03011b99
KS
12#[allow(clippy::too_many_arguments)]
13#[allow(clippy::type_complexity)]
b4d5b851
KS
14pub mod test;
15
971ae306
KS
16#[cfg(feature="vq")]
17pub mod vq;
18
b4d5b851 19extern crate nihav_core;