summaryrefslogtreecommitdiffstats
path: root/core/cfg-mplayer.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-04-04 01:13:56 +0200
committerwm4 <wm4@nowhere>2013-04-24 18:07:01 +0200
commitd853abafc3e0f3de06e6cf86908f5bf2aba8f7c0 (patch)
treedf7cd78ebaddfe158cd64bc2fcf5e8225004cb87 /core/cfg-mplayer.h
parent97be5ead1401f48571a073d63a75fad7d29b4d56 (diff)
downloadmpv-d853abafc3e0f3de06e6cf86908f5bf2aba8f7c0.tar.bz2
mpv-d853abafc3e0f3de06e6cf86908f5bf2aba8f7c0.tar.xz
x11: use mpv internal key auto-repeat handling if possible
Block X11's native key repeat, and use mpv's key repeat handling in input.c instead. No configure check for XKB. Even though it's an extension, it has been part of most (all?) xlibs since 1996. If XKB appears to be missing, just refuse enabling x11. This is a potentially controversial change. mpv will use its own key repeat rate, instead of X11's. This should be better, because seeking will have a standardized "speed" (seek events per seconds when keeping a seek key held down). It will also allow disabling key repears for certain commands, though this is not done anywhere yet. The new behavior can be disabled with the --native-keyrepeat option.
Diffstat (limited to 'core/cfg-mplayer.h')
-rw-r--r--core/cfg-mplayer.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/cfg-mplayer.h b/core/cfg-mplayer.h
index 8e0563e380..156835fd07 100644
--- a/core/cfg-mplayer.h
+++ b/core/cfg-mplayer.h
@@ -574,6 +574,7 @@ const m_option_t mplayer_opts[]={
OPT_INTRANGE("fsmode-dontuse", vo.fsmode, 0, 31, 4096),
OPT_INT("colorkey", vo.colorkey, 0),
OPT_FLAG_STORE("no-colorkey", vo.colorkey, 0, 0x1000000),
+ OPT_FLAG("native-keyrepeat", vo.native_keyrepeat, 0),
OPT_FLOATRANGE("panscan", vo.panscan, 0, 0.0, 1.0),
OPT_FLOATRANGE("panscanrange", vo.panscanrange, 0, -19.0, 99.0),
OPT_FLAG("force-rgba-osd-rendering", force_rgba_osd, 0),