diff --git a/src/decoder/mp3.rs b/src/decoder/mp3.rs index 7e14e2cb..b40118cc 100644 --- a/src/decoder/mp3.rs +++ b/src/decoder/mp3.rs @@ -3,7 +3,7 @@ use std::time::Duration; use crate::Source; -use minimp3::{Decoder, Frame}; +use minimp3_fixed::{Decoder, Frame}; pub struct Mp3Decoder where