blob: b86af4435e8b4c058342f382153f33572e68bdcb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*
This file is part of jellything (https://codeberg.org/metamuffin/jellything)
which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
Copyright (C) 2023 metamuffin <metamuffin.org>
*/
pub mod block;
pub mod matroska;
pub mod read;
pub mod size;
pub mod unflatten;
pub mod write;
pub use matroska::MatroskaTag;
pub use read::ReadValue;
pub use write::WriteValue;
#[derive(Debug, Clone, PartialEq)]
pub enum Master {
Collected(Vec<MatroskaTag>),
Start,
End,
}
|