webmetro/src/lib.rs

22 lines
415 B
Rust
Raw Permalink Normal View History

#[macro_use] extern crate log;
2017-01-10 03:40:21 +00:00
2017-06-27 06:11:29 +00:00
pub mod ebml;
2018-04-13 23:01:40 +00:00
pub mod error;
2018-04-05 00:26:02 +00:00
pub mod iterator;
pub mod stream_parser;
2018-04-04 04:43:25 +00:00
2018-04-05 00:26:02 +00:00
pub mod chunk;
pub mod fixers;
2017-06-27 06:11:29 +00:00
pub mod webm;
2017-01-12 05:41:35 +00:00
pub mod channel;
2018-12-22 20:03:19 +00:00
pub use crate::ebml::{EbmlError, FromEbml};
2017-01-24 08:20:49 +00:00
2017-01-10 03:40:21 +00:00
#[cfg(test)]
mod tests {
2017-06-28 05:54:30 +00:00
pub const TEST_FILE: &'static [u8] = include_bytes!("data/test1.webm");
2018-04-12 02:45:53 +00:00
pub const ENCODE_WEBM_TEST_FILE: &'static [u8] = include_bytes!("data/encode_webm_test.webm");
2017-01-10 03:40:21 +00:00
}