diff options
author | metamuffin <metamuffin@disroot.org> | 2024-01-28 03:21:03 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-01-28 03:21:03 +0100 |
commit | ce9eb140ab9243d1c87ace4727a82b7fa50f964b (patch) | |
tree | b64da94ba58f72a2371cdd8644dc48a178b7d260 /common | |
parent | b514ec8cea2c2143e0bd7a0eb377c96a6f091d0d (diff) | |
download | jellything-ce9eb140ab9243d1c87ace4727a82b7fa50f964b.tar jellything-ce9eb140ab9243d1c87ace4727a82b7fa50f964b.tar.bz2 jellything-ce9eb140ab9243d1c87ace4727a82b7fa50f964b.tar.zst |
fix yet another fundamental issue in the ebml reader and seekindex.
Diffstat (limited to 'common')
-rw-r--r-- | common/src/seek_index.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/src/seek_index.rs b/common/src/seek_index.rs index fb41b40..d58cd15 100644 --- a/common/src/seek_index.rs +++ b/common/src/seek_index.rs @@ -18,7 +18,7 @@ pub struct SeekIndex { pub struct BlockIndex { pub pts: u64, // pub duration: Option<u64>, - pub source_off: usize, + pub source_off: u64, // points to start of SimpleBlock or BlockGroup (not the Block inside it) pub size: usize, } |