aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2017-05-13 12:39:05 +0200
committerKostya Shishkov <kostya.shishkov@gmail.com>2017-05-13 12:39:05 +0200
commitfba6f8e46fbe906f5c7b372becc14c4400533eeb (patch)
tree9179bf7713abfcf9444e9547671ba75037c135bd /src/lib.rs
parent5a5a3ecbefb7c7d5274c4a76ade76d650f3e4d0c (diff)
downloadnihav-fba6f8e46fbe906f5c7b372becc14c4400533eeb.tar.gz
Split formats into separate file and extend their functionality
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 28f47d1..a8ba225 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,4 +1,8 @@
+#[macro_use]
+extern crate bitflags;
+
pub mod demuxers;
+pub mod formats;
pub mod frame;
pub mod io;