summaryrefslogtreecommitdiffstats
path: root/input
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2012-10-11 02:24:13 +0200
committerwm4 <wm4@nowhere>2012-10-12 10:13:43 +0200
commit32fe890cc1f9c90699fb9cd9eb5f42e597d9665a (patch)
tree4e6ee9cc47cb8d42f41579809db10d520208561f /input
parentc9df2c8bd83b31375a79ab2bc4f854a53ff019c1 (diff)
downloadmpv-32fe890cc1f9c90699fb9cd9eb5f42e597d9665a.tar.bz2
mpv-32fe890cc1f9c90699fb9cd9eb5f42e597d9665a.tar.xz
commands: add print_text input command to print text on the terminal
In theory, this could take over the role of the get_property slave command, and is more general.
Diffstat (limited to 'input')
-rw-r--r--input/input.c1
-rw-r--r--input/input.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/input/input.c b/input/input.c
index 1a8f7e94e4..28a5af2112 100644
--- a/input/input.c
+++ b/input/input.c
@@ -132,6 +132,7 @@ static const mp_cmd_t mp_cmds[] = {
}},
{ MP_CMD_SUB_STEP, "sub_step", { ARG_INT } },
{ MP_CMD_OSD, "osd", { OARG_INT(-1) } },
+ { MP_CMD_PRINT_TEXT, "print_text", { ARG_STRING } },
{ MP_CMD_SHOW_TEXT, "show_text", { ARG_STRING, OARG_INT(-1), OARG_INT(0) } },
{ MP_CMD_SHOW_PROGRESS, "show_progress", },
{ MP_CMD_SUB_LOAD, "sub_load", { ARG_STRING } },
diff --git a/input/input.h b/input/input.h
index a523020f43..988565cb40 100644
--- a/input/input.h
+++ b/input/input.h
@@ -51,6 +51,7 @@ enum mp_command_type {
MP_CMD_KEYDOWN_EVENTS,
MP_CMD_SET,
MP_CMD_GET_PROPERTY,
+ MP_CMD_PRINT_TEXT,
MP_CMD_SHOW_TEXT,
MP_CMD_SHOW_PROGRESS,
MP_CMD_RADIO_STEP_CHANNEL,