summaryrefslogtreecommitdiffstats
path: root/input
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-09-02 16:11:26 +0200
committerwm4 <wm4@nowhere>2016-09-02 21:21:47 +0200
commitcd7c7d0841e047db4a0369fe60fe2331dd59e39a (patch)
treebc3ce746d7ce05f383d6011fccae8d3cc0b407c7 /input
parentb2c84a91b69e58df10d6ea966078a03b096712bd (diff)
downloadmpv-cd7c7d0841e047db4a0369fe60fe2331dd59e39a.tar.bz2
mpv-cd7c7d0841e047db4a0369fe60fe2331dd59e39a.tar.xz
command: remove vo-cmdline
With the recent vo_opengl changes it doesn't do anything anymore. I don't think a deprecation period is necessary, because the command was always marked as experimental.
Diffstat (limited to 'input')
-rw-r--r--input/cmd_list.c2
-rw-r--r--input/cmd_list.h3
2 files changed, 0 insertions, 5 deletions
diff --git a/input/cmd_list.c b/input/cmd_list.c
index 8cc6210a91..bc3c622075 100644
--- a/input/cmd_list.c
+++ b/input/cmd_list.c
@@ -186,8 +186,6 @@ const struct mp_cmd_def mp_cmds[] = {
{ MP_CMD_VF, "vf", { ARG_STRING, ARG_STRING } },
{ MP_CMD_VF_COMMAND, "vf-command", { ARG_STRING, ARG_STRING, ARG_STRING } },
- { MP_CMD_VO_CMDLINE, "vo-cmdline", { ARG_STRING } },
-
{ MP_CMD_SCRIPT_BINDING, "script-binding", { ARG_STRING },
.allow_auto_repeat = true, .on_updown = true},
diff --git a/input/cmd_list.h b/input/cmd_list.h
index 4e324bf01c..e1018c38aa 100644
--- a/input/cmd_list.h
+++ b/input/cmd_list.h
@@ -99,9 +99,6 @@ enum mp_command_type {
MP_CMD_VF,
MP_CMD_VF_COMMAND,
- /// Video output commands
- MP_CMD_VO_CMDLINE,
-
/// Internal for Lua scripts
MP_CMD_SCRIPT_BINDING,
MP_CMD_SCRIPT_MESSAGE,