summaryrefslogtreecommitdiffstats
path: root/mpvcore/input/input.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-12-16 20:21:25 +0100
committerwm4 <wm4@nowhere>2013-12-16 20:21:25 +0100
commit3e6cd3ef19aca7c79dfc73412f98b70b7de011b4 (patch)
treed210fab2e4539f0f68082dfec5592259a96b6a53 /mpvcore/input/input.c
parent9662e3e50922d2cef486a657655bdc5c8786d033 (diff)
downloadmpv-3e6cd3ef19aca7c79dfc73412f98b70b7de011b4.tar.bz2
mpv-3e6cd3ef19aca7c79dfc73412f98b70b7de011b4.tar.xz
input: remove LIRCCD support
This removes support for the "LIRC Client Daemon", which is separate from LIRC, and hasn't been maintained for 10 years. See github issue #413.
Diffstat (limited to 'mpvcore/input/input.c')
-rw-r--r--mpvcore/input/input.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/mpvcore/input/input.c b/mpvcore/input/input.c
index c5d23396af..18b254d17b 100644
--- a/mpvcore/input/input.c
+++ b/mpvcore/input/input.c
@@ -58,10 +58,6 @@
#include "lirc.h"
#endif
-#if HAVE_LIRCC
-#include <lirc/lircc.h>
-#endif
-
#if HAVE_COCOA
#include "osdep/macosx_events.h"
#endif
@@ -638,7 +634,6 @@ const m_option_t mp_input_opts[] = {
OPT_INTRANGE("doubleclick-time", input.doubleclick_time, 0, 0, 1000),
OPT_FLAG("joystick", input.use_joystick, CONF_GLOBAL),
OPT_FLAG("lirc", input.use_lirc, CONF_GLOBAL),
- OPT_FLAG("lircc", input.use_lircc, CONF_GLOBAL),
OPT_FLAG("right-alt-gr", input.use_alt_gr, CONF_GLOBAL),
#if HAVE_COCOA
OPT_FLAG("ar", input.use_ar, CONF_GLOBAL),
@@ -2409,14 +2404,6 @@ struct input_ctx *mp_input_init(struct mpv_global *global)
}
#endif
-#if HAVE_LIRCC
- if (input_conf->use_lircc) {
- int fd = lircc_init("mpv", NULL);
- if (fd >= 0)
- mp_input_add_cmd_fd(ictx, fd, 1, NULL, lircc_cleanup);
- }
-#endif
-
if (input_conf->use_alt_gr) {
ictx->using_alt_gr = true;
}