blob: 9139a2ae0b4fc10eeec9fd3c083829ed26e42eb9 (
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
|
//! 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::needless_range_loop)]
#[allow(clippy::unreadable_literal)]
pub mod dsp;
pub mod data;
pub mod imgwrite;
pub mod test;
#[cfg(feature="vq")]
pub mod vq;
extern crate nihav_core;
|