#[cfg(feature = "with-tremor")] extern crate librespot_tremor as vorbis; #[cfg(not(feature = "with-tremor"))] extern crate vorbis; use std::error; use std::fmt; use std::io::{Read, Seek}; pub struct VorbisDecoder(vorbis::Decoder); pub struct VorbisPacket(vorbis::Packet); pub struct VorbisError(vorbis::VorbisError); impl VorbisDecoder where R: Read + Seek, { pub fn new(input: R) -> Result, VorbisError> { Ok(VorbisDecoder(vorbis::Decoder::new(input)?)) } #[cfg(not(feature = "with-tremor"))] pub fn seek(&mut self, ms: i64) -> Result<(), VorbisError> { self.0.time_seek(ms as f64 / 1000f64)?; Ok(()) } #[cfg(feature = "with-tremor")] pub fn seek(&mut self, ms: i64) -> Result<(), VorbisError> { self.0.time_seek(ms)?; Ok(()) } pub fn next_packet(&mut self) -> Result, VorbisError> { loop { match self.0.packets().next() { Some(Ok(packet)) => return Ok(Some(VorbisPacket(packet))), None => return Ok(None), Some(Err(vorbis::VorbisError::Hole)) => (), Some(Err(err)) => return Err(err.into()), } } } } impl VorbisPacket { pub fn data(&self) -> &[i16] { &self.0.data } pub fn data_mut(&mut self) -> &mut [i16] { &mut self.0.data } } impl From for VorbisError { fn from(err: vorbis::VorbisError) -> VorbisError { VorbisError(err) } } impl fmt::Debug for VorbisError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { fmt::Debug::fmt(&self.0, f) } } impl fmt::Display for VorbisError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { fmt::Display::fmt(&self.0, f) } } impl error::Error for VorbisError { fn description(&self) -> &str { error::Error::description(&self.0) } fn source(&self) -> Option<&(dyn error::Error + 'static)> { error::Error::source(&self.0) } }