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. --- options/m_option.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'options/m_option.h') diff --git a/options/m_option.h b/options/m_option.h index 6a7b4accc9..69113bbd8c 100644 --- a/options/m_option.h +++ b/options/m_option.h @@ -389,7 +389,8 @@ struct m_option { #define UPDATE_IMGPAR (1 << 12) // video image params overrides #define UPDATE_INPUT (1 << 13) // mostly --input-* options #define UPDATE_AUDIO (1 << 14) // --audio-channels etc. -#define UPDATE_OPT_LAST (1 << 14) +#define UPDATE_PRIORITY (1 << 15) // --priority (Windows-only) +#define UPDATE_OPT_LAST (1 << 15) // All bits between _FIRST and _LAST (inclusive) #define UPDATE_OPTS_MASK \ -- cgit v1.2.3