aboutsummaryrefslogtreecommitdiffstats
path: root/nihav-codec-support/src/lib.rs
blob: 076b0ae1fa86c05abd160ab362eee75113dbf30d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//! Code and data for easier development of NihAV decoders.
#[allow(clippy::cast_lossless)]
#[allow(clippy::identity_op)]
#[allow(clippy::too_many_arguments)]
#[allow(clippy::unreadable_literal)]
pub mod codecs;

#[cfg(feature="dsp")]
#[allow(clippy::excessive_precision)]
#[allow(clippy::identity_op)]
#[allow(clippy::manual_memcpy)]
#[allow(clippy::needless_range_loop)]
#[allow(clippy::unreadable_literal)]
pub mod dsp;

pub mod data;

#[allow(clippy::identity_op)]
#[allow(clippy::many_single_char_names)]
pub mod imgwrite;

#[allow(clippy::too_many_arguments)]
#[allow(clippy::type_complexity)]
pub mod test;

#[cfg(feature="vq")]
#[allow(clippy::needless_range_loop)]
pub mod vq;

extern crate nihav_core;