mirror of https://github.com/mpv-player/mpv
not all Windows version have ABOVE_NORMAL and BELOW_NORMAL priorities...
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15271 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
b348c9f8f9
commit
248ab71a93
|
@ -483,9 +483,13 @@ struct {
|
|||
} priority_presets_defs[] = {
|
||||
{ "realtime", REALTIME_PRIORITY_CLASS},
|
||||
{ "high", HIGH_PRIORITY_CLASS},
|
||||
#ifdef ABOVE_NORMAL_PRIORITY_CLASS
|
||||
{ "abovenormal", ABOVE_NORMAL_PRIORITY_CLASS},
|
||||
#endif
|
||||
{ "normal", NORMAL_PRIORITY_CLASS},
|
||||
#ifdef BELOW_NORMAL_PRIORITY_CLASS
|
||||
{ "belownormal", BELOW_NORMAL_PRIORITY_CLASS},
|
||||
#endif
|
||||
{ "idle", IDLE_PRIORITY_CLASS},
|
||||
{ NULL, NORMAL_PRIORITY_CLASS} /* default */
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue