blob: 2c2e792793713a7ff62caedb4f949b9999fa5956 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
//! Crate for providing support for various QuickTime formats.
extern crate nihav_core;
extern crate nihav_codec_support;
#[allow(clippy::comparison_chain)]
#[allow(clippy::single_match)]
mod codecs;
pub use crate::codecs::qt_register_all_decoders;
|