aboutsummaryrefslogtreecommitdiffstats
path: root/nihav-core/src/lib.rs
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2020-04-13 13:33:34 +0200
committerKostya Shishkov <kostya.shishkov@gmail.com>2020-04-13 13:33:34 +0200
commit0443d0c5f73697d5eb59081be3cde9fb02dc3e70 (patch)
tree1481b5c5c8dcd0330b3a2bf9dff9a4d15b5f79fd /nihav-core/src/lib.rs
parentb2939bd867eda60d083199153fb9103fc54426bb (diff)
downloadnihav-0443d0c5f73697d5eb59081be3cde9fb02dc3e70.tar.gz
core: add a new (de)compression module
Diffstat (limited to 'nihav-core/src/lib.rs')
-rw-r--r--nihav-core/src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/nihav-core/src/lib.rs b/nihav-core/src/lib.rs
index cf97841..99ea57c 100644
--- a/nihav-core/src/lib.rs
+++ b/nihav-core/src/lib.rs
@@ -6,6 +6,9 @@
#[allow(clippy::unreadable_literal)]
pub mod codecs;
+#[cfg(feature="compr")]
+pub mod compr;
+
#[cfg(feature="demuxers")]
pub mod demuxers;