diff options
author | metamuffin <metamuffin@disroot.org> | 2025-09-13 16:08:42 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-09-13 16:08:42 +0200 |
commit | 044c7e1c75145f1ec9d002b4f6fc4433ff7f9540 (patch) | |
tree | db326c8f2327396ed443a1822936927e7c847494 /matroska/src/lib.rs | |
parent | e99bde7a00a161ff5dd91eaf1ce546a9d98cef05 (diff) | |
download | jellything-044c7e1c75145f1ec9d002b4f6fc4433ff7f9540.tar jellything-044c7e1c75145f1ec9d002b4f6fc4433ff7f9540.tar.bz2 jellything-044c7e1c75145f1ec9d002b4f6fc4433ff7f9540.tar.zst |
start remuxer crate rewrite; added matroska demuxer and format detection
Diffstat (limited to 'matroska/src/lib.rs')
-rw-r--r-- | matroska/src/lib.rs | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/matroska/src/lib.rs b/matroska/src/lib.rs deleted file mode 100644 index 1098ca6..0000000 --- a/matroska/src/lib.rs +++ /dev/null @@ -1,27 +0,0 @@ -/* - 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) 2025 metamuffin <metamuffin.org> -*/ -pub mod block; -pub mod error; -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, -} - -pub(crate) use block::Block; -pub(crate) use error::Error; -pub(crate) type Result<T> = core::result::Result<T, Error>; |