From adea4386bceca56ce690ed94dcb22b6ed7bc3288 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sun, 8 Jun 2014 23:58:40 +0200 Subject: client API: disable LIRC input by default Not only should using libmpv hog such global resources; it's also very unlikely an application embedding mpv will ever want to make use of this. --- player/client.c | 1 + 1 file changed, 1 insertion(+) diff --git a/player/client.c b/player/client.c index 56b7029a42..ed99f6f34e 100644 --- a/player/client.c +++ b/player/client.c @@ -364,6 +364,7 @@ mpv_handle *mpv_create(void) mpv_set_option_string(ctx, "terminal", "no"); mpv_set_option_string(ctx, "osc", "no"); mpv_set_option_string(ctx, "input-default-bindings", "no"); + mpv_set_option_string(ctx, "input-lirc", "no"); } else { mp_destroy(mpctx); } -- cgit v1.2.3