From 6663f69413cec4ac4e47d13dd8d3211776bb79fb Mon Sep 17 00:00:00 2001 From: Tim Date: Wed, 24 Sep 2025 19:03:31 +0200 Subject: [PATCH] refactor(player): remove overriding of vo prop --- src/stremio_app/stremio_player/player.rs | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/stremio_app/stremio_player/player.rs b/src/stremio_app/stremio_player/player.rs index 06501b5..5205876 100644 --- a/src/stremio_app/stremio_player/player.rs +++ b/src/stremio_app/stremio_player/player.rs @@ -229,16 +229,6 @@ fn create_message_thread( set_property(name, value, &mpv); } InMsg(InMsgFn::MpvSetProp, InMsgArgs::StProp(name, PropVal::Str(value))) => { - let value = if name.to_string() == "vo" { - let mut value = value; - if !value.is_empty() && !value.ends_with(',') { - value.push(','); - } - value.push_str("gpu-next,"); - value - } else { - value - }; set_property(name, value, &mpv); } InMsg(InMsgFn::MpvCommand, InMsgArgs::Cmd(cmd)) => {