summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--input/input.c1
-rw-r--r--input/input.h1
-rw-r--r--mplayer.c4
3 files changed, 5 insertions, 1 deletions
diff --git a/input/input.c b/input/input.c
index ea667e4794..e37decaeca 100644
--- a/input/input.c
+++ b/input/input.c
@@ -141,6 +141,7 @@ static mp_cmd_t mp_cmds[] = {
{ MP_CMD_GET_VO_FULLSCREEN, "get_vo_fullscreen", 0, { {-1,{0}} } },
{ MP_CMD_GET_SUB_VISIBILITY, "get_sub_visibility", 0, { {-1,{0}} } },
+ { MP_CMD_KEYDOWN_EVENTS, "key_down_event", 1, { {MP_CMD_ARG_INT,{0}}, {-1,{0}} } },
{ 0, NULL, 0, {} }
};
diff --git a/input/input.h b/input/input.h
index a4751e788b..60c70a6ca1 100644
--- a/input/input.h
+++ b/input/input.h
@@ -67,6 +67,7 @@
#define MP_CMD_GET_TIME_POS 63
#define MP_CMD_SUB_LOAD 64
#define MP_CMD_SUB_REMOVE 65
+#define MP_CMD_KEYDOWN_EVENTS 66
#define MP_CMD_GUI_EVENTS 5000
#define MP_CMD_GUI_LOADFILE 5001
diff --git a/mplayer.c b/mplayer.c
index 77f79c5964..45da221613 100644
--- a/mplayer.c
+++ b/mplayer.c
@@ -3642,7 +3642,9 @@ if (stream->type==STREAMTYPE_DVDNAV && dvd_nav_still)
}
#endif
} break;
-
+ case MP_CMD_KEYDOWN_EVENTS : {
+ mplayer_put_key(cmd->args[0].v.i);
+ } break;
#ifdef USE_DVDNAV
case MP_CMD_DVDNAV_EVENT: {
dvdnav_priv_t * dvdnav_priv = (dvdnav_priv_t*)(stream->priv);