From b712095d894c1ee8aba833e0263c40ce0a59e9c5 Mon Sep 17 00:00:00 2001 From: James Ross-Gowan Date: Wed, 28 Sep 2016 21:47:30 +1000 Subject: win32: make --priority runtime-settable I'm not sure if this option affects anything or if it's a placebo, especially since the VO thread is now registered with MMCSS. Still, I think --priority=high may have helped back when I used mplayer2 on a netbook. It's also possible that encoding-mode users would want to set --priority=idle. Anyway, it was one of the last M_OPT_FIXED options, so fix that. --- player/command.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'player/command.c') diff --git a/player/command.c b/player/command.c index be6b31d1b3..9b771a2e1d 100644 --- a/player/command.c +++ b/player/command.c @@ -68,6 +68,10 @@ #include "core.h" +#ifdef _WIN32 +#include +#endif + struct command_ctx { // All properties, terminated with a {0} item. struct m_property *properties; @@ -5649,6 +5653,15 @@ void mp_notify(struct MPContext *mpctx, int event, void *arg) mp_client_broadcast_event(mpctx, event, arg); } +static void update_priority(struct MPContext *mpctx) +{ +#ifdef _WIN32 + struct MPOpts *opts = mpctx->opts; + if (opts->w32_priority > 0) + SetPriorityClass(GetCurrentProcess(), opts->w32_priority); +#endif +} + void mp_option_change_callback(void *ctx, struct m_config_option *co, int flags) { struct MPContext *mpctx = ctx; @@ -5704,6 +5717,9 @@ void mp_option_change_callback(void *ctx, struct m_config_option *co, int flags) uninit_audio_out(mpctx); mp_wakeup_core(mpctx); } + + if (flags & UPDATE_PRIORITY) + update_priority(mpctx); } void mp_notify_property(struct MPContext *mpctx, const char *property) -- cgit v1.2.3