summaryrefslogtreecommitdiffstats
path: root/player
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-06-08 23:58:40 +0200
committerwm4 <wm4@nowhere>2014-06-09 01:20:55 +0200
commitadea4386bceca56ce690ed94dcb22b6ed7bc3288 (patch)
tree7a58b8fd3ba444ff165dd8a1ec17ab2e10de2f66 /player
parent3e2f16a89e625d9798217f39cc5be6211059acf9 (diff)
downloadmpv-adea4386bceca56ce690ed94dcb22b6ed7bc3288.tar.bz2
mpv-adea4386bceca56ce690ed94dcb22b6ed7bc3288.tar.xz
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.
Diffstat (limited to 'player')
-rw-r--r--player/client.c1
1 files changed, 1 insertions, 0 deletions
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);
}