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.
This commit is contained in:
wm4 2014-06-08 23:58:40 +02:00
parent 3e2f16a89e
commit adea4386bc
1 changed files with 1 additions and 0 deletions

View File

@ -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);
}