From 70c7174bfea121653e4106a403a9b411730a115f Mon Sep 17 00:00:00 2001 From: Mike Welsh Date: Mon, 5 Sep 2022 13:46:02 -0700 Subject: [PATCH] audio: Switch to symphonia by default Deprecate minimp3 for MP3 decoding and switch to symphonia on desktop by default. Eventually the minimp3 feature will be removed. --- desktop/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop/Cargo.toml b/desktop/Cargo.toml index db7290346..33a04fa07 100644 --- a/desktop/Cargo.toml +++ b/desktop/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0" [dependencies] clap = { version = "3.2.20", features = ["derive"] } cpal = "0.14.0" -ruffle_core = { path = "../core", features = ["audio", "minimp3", "nellymoser"] } +ruffle_core = { path = "../core", features = ["audio", "symphonia", "nellymoser"] } ruffle_render_wgpu = { path = "../render/wgpu", features = ["clap"] } ruffle_video_software = { path = "../video/software", optional = true } env_logger = { version = "0.9", default-features = false, features = ["humantime"] }