mirror of
https://github.com/mpv-player/mpv
synced 2024-12-14 19:05:33 +00:00
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. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24148 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
42b90fa1c3
commit
dcd9ee6d5a
@ -585,9 +585,6 @@ static m_option_t mp_input_opts[] = {
|
||||
{ NULL, NULL, 0, 0, 0, 0, NULL}
|
||||
};
|
||||
|
||||
static int
|
||||
mp_input_default_key_func(int fd);
|
||||
|
||||
static int
|
||||
mp_input_default_cmd_func(int fd,char* buf, int l);
|
||||
|
||||
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user