]> git.nihav.org Git - nihav.git/blame_incremental - nihav-core/src/lib.rs
avimux: do not record palette change chunks in OpenDML index
[nihav.git] / nihav-core / src / lib.rs
... / ...
CommitLineData
1//! Core functionality of NihAV intended to be used by both crates implementing format support and users.
2#[cfg(feature="decoders")]
3#[allow(clippy::upper_case_acronyms)]
4#[allow(clippy::too_many_arguments)]
5pub mod codecs;
6
7#[cfg(feature="compr")]
8pub mod compr;
9
10#[cfg(feature="muxers")]
11pub mod muxers;
12
13#[cfg(feature="demuxers")]
14pub mod demuxers;
15
16#[allow(clippy::too_many_arguments)]
17pub mod formats;
18pub mod frame;
19#[allow(clippy::too_many_arguments)]
20pub mod io;
21pub mod options;
22pub mod refs;
23pub mod reorder;
24#[allow(clippy::upper_case_acronyms)]
25pub mod scale;
26pub mod soundcvt;