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