From be516022b60e85daa1e7faa28a6d9ca656968bb3 Mon Sep 17 00:00:00 2001 From: Alexander Preisinger Date: Fri, 19 Sep 2014 17:36:37 +0200 Subject: input: add function for setting repeat info Let us set a different rate and delay. Needed for the following commit where we set rate and delay reported by weston. But only if the option native-keyrepeat is set. --- input/input.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'input/input.c') diff --git a/input/input.c b/input/input.c index ea0a4c375a..13acc9e994 100644 --- a/input/input.c +++ b/input/input.c @@ -1508,3 +1508,9 @@ void mp_input_src_feed_cmd_text(struct mp_input_src *src, char *buf, size_t len) } } } + +void mp_input_set_repeat_info(struct input_ctx *ictx, int rate, int delay) +{ + ictx->ar_rate = rate; + ictx->ar_delay = delay; +} -- cgit v1.2.3