From 7c6f8904c8673d7e331d5ae833114a5fbedb1341 Mon Sep 17 00:00:00 2001 From: dvdsk Date: Wed, 4 Oct 2023 16:53:06 +0200 Subject: [PATCH] add todo about can_seek to mix --- src/source/mix.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/source/mix.rs b/src/source/mix.rs index c9df4c03..3c011b88 100644 --- a/src/source/mix.rs +++ b/src/source/mix.rs @@ -123,6 +123,7 @@ where #[inline] fn try_seek(&mut self, pos: Duration) -> Result<(), SeekNotSupported> { + todo!("should check if both inputs support seeking"); self.input1.try_seek(pos)?; self.input2.try_seek(pos) }