diff options
author | wm4 <wm4@nowhere> | 2014-07-23 00:20:53 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2014-07-23 00:20:53 +0200 |
commit | 843f5f47233956cfc03ea656c85771323bc7a1a2 (patch) | |
tree | da64a5bd0013eb97a45c0341faebfbec0addcbd7 /input | |
parent | 10debffc06d3a4ce923ac1062931f0afdf729824 (diff) |
command: add append-play loadfile mode
"loadfile filename append-play" will now always append the file to the
playlist, and if nothing is playing yet, start playback. I don't want to
change the semantics of "append" mode, so a new mode is needed.
Probably fixes issue #950.
Diffstat (limited to 'input')
-rw-r--r-- | input/cmd_list.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/input/cmd_list.c b/input/cmd_list.c index 1096e83d63..6f763c4b64 100644 --- a/input/cmd_list.c +++ b/input/cmd_list.c @@ -111,7 +111,8 @@ const struct mp_cmd_def mp_cmds[] = { { MP_CMD_LOADFILE, "loadfile", { ARG_STRING, OARG_CHOICE(0, ({"replace", 0}, {"0", 0}, - {"append", 1}, {"1", 1})), + {"append", 1}, {"1", 1}, + {"append-play", 2})), OPT_KEYVALUELIST(ARG(str_list), MP_CMD_OPT_ARG), }}, { MP_CMD_LOADLIST, "loadlist", { |