diff options
author | metamuffin <metamuffin@disroot.org> | 2023-01-26 21:45:21 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-01-26 21:45:21 +0100 |
commit | c715d411f465ef742ba76866dfb177f71598b69c (patch) | |
tree | 8ae17b5cc9e6514f741a55cd5535139cf06c4192 | |
parent | 42e1c3003c671e9a08d180b84bfa8e00ba858660 (diff) | |
download | jellything-c715d411f465ef742ba76866dfb177f71598b69c.tar jellything-c715d411f465ef742ba76866dfb177f71598b69c.tar.bz2 jellything-c715d411f465ef742ba76866dfb177f71598b69c.tar.zst |
somehow its broken on mpv now
-rw-r--r-- | remuxer/src/import/mod.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/remuxer/src/import/mod.rs b/remuxer/src/import/mod.rs index 04fb88c..1ceca1e 100644 --- a/remuxer/src/import/mod.rs +++ b/remuxer/src/import/mod.rs @@ -15,7 +15,6 @@ use log::{debug, error, info, trace, warn}; use std::{collections::HashMap, fs::File, path::PathBuf}; pub fn import_read(path: &PathBuf, input: &mut EbmlReader, iteminfo: &mut ItemInfo) -> Result<()> { - // TODO dont traverse the entire file, if the tracks are listed at the end while let Some(item) = input.next() { let item = match item { Ok(item) => item, |