From 5d57a338ce8e7b2a2ce2a8bd8886d3bb43a3c0dd Mon Sep 17 00:00:00 2001 From: wm4 Date: Sat, 4 Jan 2014 19:42:01 +0100 Subject: input: change mp_input_run_cmd signature I don't like this function at all, but it's basically a trick to get the input's mp_log instance in a case the mp_input_parse_cmd_strv() is almost certainly not going to output anything. But still make it somewhat more consistent with mp_input_parse_cmd_strv() - why force the caller to always use MP_ON_OSD_AUTO? --- input/input.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'input/input.c') diff --git a/input/input.c b/input/input.c index 620bd17396..42b45b842f 100644 --- a/input/input.c +++ b/input/input.c @@ -1661,11 +1661,9 @@ struct mp_cmd *mp_input_parse_cmd(struct input_ctx *ictx, bstr str, return mp_input_parse_cmd_(ictx->log, str, location); } -void mp_input_run_cmd(struct input_ctx *ictx, const char **cmd, +void mp_input_run_cmd(struct input_ctx *ictx, int def_flags, const char **cmd, const char *location) { - mp_cmd_t *cmdt = mp_input_parse_cmd_strv(ictx->log, - MP_ON_OSD_AUTO, - cmd, location); + mp_cmd_t *cmdt = mp_input_parse_cmd_strv(ictx->log, def_flags, cmd, location); mp_input_queue_cmd(ictx, cmdt); } -- cgit v1.2.3