summaryrefslogtreecommitdiffstats
path: root/input
diff options
context:
space:
mode:
Diffstat (limited to 'input')
-rw-r--r--input/input.c19
1 files changed, 1 insertions, 18 deletions
diff --git a/input/input.c b/input/input.c
index 2e9bbc97f2..40cc34ed6b 100644
--- a/input/input.c
+++ b/input/input.c
@@ -586,9 +586,6 @@ static m_option_t mp_input_opts[] = {
};
static int
-mp_input_default_key_func(int fd);
-
-static int
mp_input_default_cmd_func(int fd,char* buf, int l);
static char*
@@ -659,7 +656,7 @@ mp_input_add_key_fd(int fd, int select, mp_key_func_t read_func, mp_close_func_t
memset(&key_fds[num_key_fd],0,sizeof(mp_input_fd_t));
key_fds[num_key_fd].fd = fd;
- key_fds[num_key_fd].read_func = read_func ? read_func : mp_input_default_key_func;
+ key_fds[num_key_fd].read_func = read_func;
key_fds[num_key_fd].close_func = close_func;
key_fds[num_key_fd].no_select = !select;
num_key_fd++;
@@ -803,20 +800,6 @@ mp_input_parse_cmd(char* str) {
return cmd;
}
-static int
-mp_input_default_key_func(int fd) {
- int r,code=0;
- unsigned int l;
- l = 0;
- while(l < sizeof(int)) {
- r = read(fd,((char *)&code)+l,sizeof(int)-l);
- if(r <= 0)
- break;
- l +=r;
- }
- return code;
-}
-
#define MP_CMD_MAX_SIZE 256
static int