changeset 24128:1fc0b327dbfc

Remove unused function The only case which does not override mp_input_default_key_func in mp_input_add_key_fd() is fd 0, but that is later special-cased not to use the input function at all. Remove the useless default function.
author uau
date Sat, 25 Aug 2007 04:28:06 +0000
parents faf9baa673c0
children 50e1e79056b6
files input/input.c
diffstat 1 files changed, 1 insertions(+), 18 deletions(-) [+]
line wrap: on
line diff
--- a/input/input.c	Sat Aug 25 04:28:04 2007 +0000
+++ b/input/input.c	Sat Aug 25 04:28:06 2007 +0000
@@ -586,9 +586,6 @@
 };
 
 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 @@
 
   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 @@
   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