summaryrefslogtreecommitdiffstats
path: root/input/keycodes.c
diff options
context:
space:
mode:
authorder richter <der.richter@gmx.de>2020-01-21 19:15:51 +0100
committerder richter <der.richter@gmx.de>2020-01-26 12:09:55 +0100
commit77d42d5532c2f411da1b1e054b1a867498c7187d (patch)
tree036e436e418b45ace9c5b058e4d0d6a9fc43fad2 /input/keycodes.c
parentae0520cafc6bb0487b2021aa51c36438b99689c3 (diff)
downloadmpv-77d42d5532c2f411da1b1e054b1a867498c7187d.tar.bz2
mpv-77d42d5532c2f411da1b1e054b1a867498c7187d.tar.xz
input: add new PLAYONLY and PAUSEONLY MP_KEY key codes
since the old PLAY and PAUSE key codes cycle through the pause property, the new key codes only explicitly set the pause property.
Diffstat (limited to 'input/keycodes.c')
-rw-r--r--input/keycodes.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/input/keycodes.c b/input/keycodes.c
index bcf59c74a1..bb92994479 100644
--- a/input/keycodes.c
+++ b/input/keycodes.c
@@ -151,6 +151,8 @@ static const struct key_name key_names[] = {
{ MP_KEY_RECORD, "RECORD" },
{ MP_KEY_CHANNEL_UP, "CHANNEL_UP" },
{ MP_KEY_CHANNEL_DOWN,"CHANNEL_DOWN" },
+ { MP_KEY_PLAYONLY, "PLAYONLY" },
+ { MP_KEY_PAUSEONLY, "PAUSEONLY" },
// These are kept for backward compatibility
{ MP_KEY_PAUSE, "XF86_PAUSE" },