summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Ross-Gowan <rossymiles@gmail.com>2014-06-22 15:57:27 +1000
committerwm4 <wm4@nowhere>2014-06-22 18:59:24 +0200
commit082fbe39e8b67043f4a5aec1b7396eca14403791 (patch)
tree47161b7d061f6082e0d1b2eecba6afccc932f764
parent5b8298376b3ea548b21b652c495b5fcf3d4b5e78 (diff)
downloadmpv-082fbe39e8b67043f4a5aec1b7396eca14403791.tar.bz2
mpv-082fbe39e8b67043f4a5aec1b7396eca14403791.tar.xz
win32: add missing priority classes
-rw-r--r--options/options.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/options/options.c b/options/options.c
index c6f758a647..45accce0de 100644
--- a/options/options.c
+++ b/options/options.c
@@ -113,6 +113,8 @@ const m_option_t mp_opts[] = {
#if HAVE_PRIORITY
OPT_CHOICE("priority", w32_priority, 0,
({"no", 0},
+ {"realtime", REALTIME_PRIORITY_CLASS},
+ {"high", HIGH_PRIORITY_CLASS},
{"abovenormal", ABOVE_NORMAL_PRIORITY_CLASS},
{"normal", NORMAL_PRIORITY_CLASS},
{"belownormal", BELOW_NORMAL_PRIORITY_CLASS},