]> git.nihav.org Git - nihav.git/blame_incremental - src/lib.rs
avi: fix handling of multiple palette changes in single 'pc' chunk
[nihav.git] / src / lib.rs
... / ...
CommitLineData
1//! Crate for providing support for ITU codecs.
2extern crate nihav_core;
3extern crate nihav_codec_support;
4
5#[allow(clippy::collapsible_if)]
6#[allow(clippy::comparison_chain)]
7#[allow(clippy::needless_range_loop)]
8#[allow(clippy::useless_let_if_seq)]
9mod codecs;
10pub use crate::codecs::itu_register_all_decoders;
11
12#[cfg(test)]
13extern crate nihav_commonfmt;