codec_support/h263: allocate more space in MV predictor
[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
17pub mod test;
18
19extern crate nihav_core;