This commit is contained in:
Tim 2025-12-21 06:04:29 +02:00 committed by GitHub
commit ea4810fbdf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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)) => {