]> git.nihav.org Git - nihav.git/blobdiff - src/lib.rs
demuxer: use new interface
[nihav.git] / src / lib.rs
index f039bdf4a283e714424501be128c629bb2d6bba0..07c451e150004a94aa83212da02cceaa7331682c 100644 (file)
@@ -1,2 +1,17 @@
+#[cfg(feature="decoders")]
+pub mod codecs;
+
+#[cfg(feature="demuxers")]
+pub mod demuxers;
+
+pub mod formats;
+pub mod frame;
 pub mod io;
+pub mod register;
+pub mod detect;
+
+#[cfg(feature="dsp")]
+pub mod dsp;
 
+#[cfg(test)]
+mod test;