aboutsummaryrefslogtreecommitdiffstats
path: root/nihav-indeo/src/lib.rs
blob: 844b69fa4b326fa82ed2cd24c0ab6d90bd38641e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
extern crate nihav_core;
extern crate nihav_codec_support;

#[allow(clippy::collapsible_if)]
#[allow(clippy::identity_op)]
#[allow(clippy::needless_range_loop)]
#[allow(clippy::too_many_arguments)]
#[allow(clippy::useless_let_if_seq)]
#[allow(clippy::verbose_bit_mask)]
mod codecs;

pub use codecs::indeo_register_all_codecs;

#[cfg(test)]
extern crate nihav_commonfmt;