summaryrefslogtreecommitdiffstats
path: root/player/main.c
diff options
context:
space:
mode:
authorJames Ross-Gowan <rossymiles@gmail.com>2016-09-28 21:47:30 +1000
committerJames Ross-Gowan <rossymiles@gmail.com>2016-09-28 21:47:30 +1000
commitb712095d894c1ee8aba833e0263c40ce0a59e9c5 (patch)
treeb512d942a235317b69963e0ba59de7bfc3893e98 /player/main.c
parent3751065f9740244c95da963c0dd16a0bcd5b419c (diff)
downloadmpv-b712095d894c1ee8aba833e0263c40ce0a59e9c5.tar.bz2
mpv-b712095d894c1ee8aba833e0263c40ce0a59e9c5.tar.xz
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.
Diffstat (limited to 'player/main.c')
-rw-r--r--player/main.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/player/main.c b/player/main.c
index ad907e034a..7dcc266094 100644
--- a/player/main.c
+++ b/player/main.c
@@ -66,10 +66,6 @@ static const char def_config[] =
#include "player/builtin_conf.inc"
;
-#ifdef _WIN32
-#include <windows.h>
-#endif
-
#if HAVE_COCOA
#include "osdep/macosx_events.h"
#endif
@@ -472,11 +468,6 @@ int mp_initialize(struct MPContext *mpctx, char **options)
if (opts->force_vo == 2 && handle_force_window(mpctx, false) < 0)
return -1;
-#ifdef _WIN32
- if (opts->w32_priority > 0)
- SetPriorityClass(GetCurrentProcess(), opts->w32_priority);
-#endif
-
MP_STATS(mpctx, "end init");
return 0;