fix(seek) conditional compilation

This commit is contained in:
dvdsk 2024-04-06 12:07:31 +02:00
parent 34366fe656
commit a4d167f9ec
No known key found for this signature in database
GPG key ID: 6CF9D20C5709A836

View file

@ -412,7 +412,7 @@ pub enum SeekError {
#[cfg(feature = "symphonia")] #[cfg(feature = "symphonia")]
#[error("Error seeking: {0}")] #[error("Error seeking: {0}")]
SymphoniaDecoder(#[from] crate::decoder::symphonia::SeekError), SymphoniaDecoder(#[from] crate::decoder::symphonia::SeekError),
#[cfg(all(feature = "wav", not(feature = "symphonia-wav")))] #[cfg(feature = "wav")]
#[error("Error seeking in wav source: {0}")] #[error("Error seeking in wav source: {0}")]
HoundDecoder(std::io::Error), HoundDecoder(std::io::Error),
#[error("An error occurred")] #[error("An error occurred")]