aboutsummaryrefslogtreecommitdiff
path: root/matroska/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'matroska/src/lib.rs')
-rw-r--r--matroska/src/lib.rs17
1 files changed, 17 insertions, 0 deletions
diff --git a/matroska/src/lib.rs b/matroska/src/lib.rs
new file mode 100644
index 0000000..d1e0fba
--- /dev/null
+++ b/matroska/src/lib.rs
@@ -0,0 +1,17 @@
+pub mod matroska;
+pub mod read;
+pub mod size;
+pub mod write;
+pub mod unflatten;
+pub mod block;
+
+use matroska::MatroskaTag;
+pub use read::ReadValue;
+pub use write::WriteValue;
+
+#[derive(Debug, Clone, PartialEq)]
+pub enum Master {
+ Collected(Vec<MatroskaTag>),
+ Start,
+ End,
+}