1
mirror of https://github.com/mpv-player/mpv synced 2024-07-31 16:29:58 +02:00

input: remove unused key_down_event command

There's no real use-case for this, and is wasn't documented (didn't even
appear on the "undocumented commands" list).
This commit is contained in:
wm4 2013-11-06 00:08:38 +01:00
parent 9dc0dfbd54
commit 3cfbe81038
3 changed files with 0 additions and 6 deletions

View File

@ -208,7 +208,6 @@ static const mp_cmd_t mp_cmds[] = {
{ MP_CMD_PLAYLIST_MOVE, "playlist_move", { ARG_INT, ARG_INT } },
{ MP_CMD_RUN, "run", { ARG_STRING } },
{ MP_CMD_KEYDOWN_EVENTS, "key_down_event", { ARG_INT } },
{ MP_CMD_SET, "set", { ARG_STRING, ARG_STRING } },
{ MP_CMD_GET_PROPERTY, "get_property", { ARG_STRING } },
{ MP_CMD_ADD, "add", { ARG_STRING, OARG_DOUBLE(0) },

View File

@ -54,7 +54,6 @@ enum mp_command_type {
MP_CMD_SUB_ADD,
MP_CMD_SUB_REMOVE,
MP_CMD_SUB_RELOAD,
MP_CMD_KEYDOWN_EVENTS,
MP_CMD_SET,
MP_CMD_GET_PROPERTY,
MP_CMD_PRINT_TEXT,

View File

@ -2940,10 +2940,6 @@ void run_command(MPContext *mpctx, mp_cmd_t *cmd)
#endif
break;
case MP_CMD_KEYDOWN_EVENTS:
mp_input_put_key(mpctx->input, cmd->args[0].v.i);
break;
case MP_CMD_ENABLE_INPUT_SECTION:
mp_input_enable_section(mpctx->input, cmd->args[0].v.s,
cmd->args[1].v.i == 1 ? MP_INPUT_EXCLUSIVE : 0);