diff --git a/src/source/mod.rs b/src/source/mod.rs index bec9a72..789f169 100644 --- a/src/source/mod.rs +++ b/src/source/mod.rs @@ -423,7 +423,9 @@ impl SeekError { pub fn source_intact(&self) -> bool { match self { SeekError::NotSupported { .. } => true, + #[cfg(feature = "symphonia")] SeekError::SymphoniaDecoder(_) => false, + #[cfg(feature = "wav")] SeekError::HoundDecoder(_) => false, SeekError::Other(_) => false, }