codec_support: add module for generic vector quantisation
[nihav.git] / nihav-codec-support / src / lib.rs
CommitLineData
b4d5b851
KS
1//! Code and data for easier development of NihAV decoders.
2#[allow(clippy::cast_lossless)]
3#[allow(clippy::identity_op)]
4#[allow(clippy::too_many_arguments)]
5#[allow(clippy::unreadable_literal)]
6pub mod codecs;
7
8#[cfg(feature="dsp")]
9#[allow(clippy::excessive_precision)]
10#[allow(clippy::identity_op)]
11#[allow(clippy::needless_range_loop)]
12#[allow(clippy::unreadable_literal)]
13pub mod dsp;
14
15pub mod data;
16
8424ddfd
KS
17pub mod imgwrite;
18
b4d5b851
KS
19pub mod test;
20
971ae306
KS
21#[cfg(feature="vq")]
22pub mod vq;
23
b4d5b851 24extern crate nihav_core;