aboutsummaryrefslogtreecommitdiff
path: root/remuxer/src
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2023-08-03 01:10:23 +0200
committermetamuffin <metamuffin@disroot.org>2023-08-03 01:10:23 +0200
commit9b04719d09937a112b1ac6bbe64402006f9fb261 (patch)
treefd67983fd6aa043ace204036c13225618fcb4486 /remuxer/src
parent9aa0cceedb52ddea5b08af7372f4c87f60e401d4 (diff)
downloadjellything-9b04719d09937a112b1ac6bbe64402006f9fb261.tar
jellything-9b04719d09937a112b1ac6bbe64402006f9fb261.tar.bz2
jellything-9b04719d09937a112b1ac6bbe64402006f9fb261.tar.zst
small cleanup and some custom video controls
Diffstat (limited to 'remuxer/src')
-rw-r--r--remuxer/src/lib.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/remuxer/src/lib.rs b/remuxer/src/lib.rs
index 382f850..21b7fd6 100644
--- a/remuxer/src/lib.rs
+++ b/remuxer/src/lib.rs
@@ -78,10 +78,6 @@ impl RemuxerContext {
info!("\t- {sel} {source_path:?} ({} => {mapped})", private.track);
info!("\t {}", info);
let file = File::open(&source_path).context("opening source file")?;
- eprintln!(
- "{:?}",
- source_path.with_extension(format!("si.{}", private.track))
- );
let mut index =
File::open(source_path.with_extension(format!("si.{}", private.track)))
.context("opening seek index file")?;