I tried to read the following mp3 file: [silence.zip](https://github.com/RustAudio/rodio/files/7969043/silence.zip). With `rodio` 0.14 it works as expected but `rodio` 0.15 panics when calling `Decoder::new_mp3`. I used the following code to read it: ```rust fn main() { let data = std::io::Cursor::new(include_bytes!("silence.mp3")); assert!(rodio::decoder::Decoder::new_mp3(data).is_ok()); } ```