pub trait AudioDecoder {
    fn seek(&mut self, absgp: u64) -> DecoderResult<()>;
    fn next_packet(&mut self) -> DecoderResult<Option<AudioPacket>>;
}

Required Methods

Implementors