aboutsummaryrefslogtreecommitdiff
path: root/remuxer/src/format.rs
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2023-01-25 07:42:27 +0100
committermetamuffin <metamuffin@disroot.org>2023-01-25 07:42:27 +0100
commit814896238c9b3928709f27606816ab6de60abdf3 (patch)
tree8134ed5213cf41f907f2af68ad9c8df245a937bd /remuxer/src/format.rs
parent4529d07cc3f2f86a9dbb0d4802875a81d5c4c495 (diff)
downloadjellything-814896238c9b3928709f27606816ab6de60abdf3.tar
jellything-814896238c9b3928709f27606816ab6de60abdf3.tar.bz2
jellything-814896238c9b3928709f27606816ab6de60abdf3.tar.zst
generate seek index
Diffstat (limited to 'remuxer/src/format.rs')
-rw-r--r--remuxer/src/format.rs25
1 files changed, 0 insertions, 25 deletions
diff --git a/remuxer/src/format.rs b/remuxer/src/format.rs
deleted file mode 100644
index 22527f7..0000000
--- a/remuxer/src/format.rs
+++ /dev/null
@@ -1,25 +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) 2023 metamuffin <metamuffin.org>
-*/
-use serde::{Deserialize, Serialize};
-
-#[derive(Debug, Clone, Serialize, Deserialize)]
-pub struct TrackIndex {
- pub clusters: Vec<ClusterIndex>,
-}
-
-#[derive(Debug, Clone, Serialize, Deserialize)]
-pub struct ClusterIndex {
- pub timestamp: usize,
- pub blocks: BlockIndex,
-}
-
-#[derive(Debug, Clone, Serialize, Deserialize)]
-pub struct BlockIndex {
- pub timestamp_off: usize,
- pub offset: usize,
-}
-
-pub struct FBlock {}