aboutsummaryrefslogtreecommitdiffstats
path: root/nihav-qt/src/lib.rs
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2020-07-04 18:30:01 +0200
committerKostya Shishkov <kostya.shishkov@gmail.com>2020-07-06 13:30:44 +0200
commit4c1582cf2e275af7c0f4a2c1a397fed5b68d31d5 (patch)
tree60a7de2c96d038ac2e4346ec119aea3fba4cf20b /nihav-qt/src/lib.rs
parentd341f57a0caf409d7dcc258b396cdee2080be399 (diff)
downloadnihav-4c1582cf2e275af7c0f4a2c1a397fed5b68d31d5.tar.gz
add nihav_qt crate with some QuickTime codecs
Diffstat (limited to 'nihav-qt/src/lib.rs')
-rw-r--r--nihav-qt/src/lib.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/nihav-qt/src/lib.rs b/nihav-qt/src/lib.rs
new file mode 100644
index 0000000..1996c60
--- /dev/null
+++ b/nihav-qt/src/lib.rs
@@ -0,0 +1,6 @@
+extern crate nihav_core;
+extern crate nihav_codec_support;
+
+#[allow(clippy::single_match)]
+mod codecs;
+pub use crate::codecs::qt_register_all_codecs;