summaryrefslogtreecommitdiffstats
path: root/input
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-09-22 20:43:33 +0200
committerwm4 <wm4@nowhere>2016-09-22 20:57:06 +0200
commit2ac74977c5f6561e33ad37c68b9da47739c7fd6c (patch)
tree9c1ec9fc83be8ca0583d06692a36fa170232ae61 /input
parent01e95468f96ac14fead2ffe2d53ed11acfbe8a39 (diff)
downloadmpv-2ac74977c5f6561e33ad37c68b9da47739c7fd6c.tar.bz2
mpv-2ac74977c5f6561e33ad37c68b9da47739c7fd6c.tar.xz
command: add a load-script command
The intention is to give libmpv users as much flexibility to load scripts as using mpv from CLI, but without restricting libmpv users from having to decide everything on creation time, or having to go through hacks like recreating the libmpv context to update state.
Diffstat (limited to 'input')
-rw-r--r--input/cmd_list.c2
-rw-r--r--input/cmd_list.h2
2 files changed, 4 insertions, 0 deletions
diff --git a/input/cmd_list.c b/input/cmd_list.c
index f6db9cbba8..53cc375b3a 100644
--- a/input/cmd_list.c
+++ b/input/cmd_list.c
@@ -226,6 +226,8 @@ const struct mp_cmd_def mp_cmds[] = {
{ MP_CMD_APPLY_PROFILE, "apply-profile", {ARG_STRING } },
+ { MP_CMD_LOAD_SCRIPT, "load-script", {ARG_STRING} },
+
{0}
};
diff --git a/input/cmd_list.h b/input/cmd_list.h
index e0fd8fa2de..1c2330b589 100644
--- a/input/cmd_list.h
+++ b/input/cmd_list.h
@@ -116,6 +116,8 @@ enum mp_command_type {
MP_CMD_APPLY_PROFILE,
+ MP_CMD_LOAD_SCRIPT,
+
// Internal
MP_CMD_COMMAND_LIST, // list of sub-commands in args[0].v.p
};