From 6e9cbdc10448203e7c8b2de41447442fcc9f7bae Mon Sep 17 00:00:00 2001 From: diego Date: Wed, 13 May 2009 02:58:57 +0000 Subject: whitespace cosmetics: Remove all trailing whitespace. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29305 b3059339-0415-0410-9bf9-f77b7e298cf2 --- input/appleir.c | 6 +++--- input/input.c | 52 ++++++++++++++++++++++++++-------------------------- input/input.h | 4 ++-- input/joystick.c | 22 +++++++++++----------- input/lirc.c | 4 ++-- input/lirc.h | 2 +- 6 files changed, 45 insertions(+), 45 deletions(-) (limited to 'input') diff --git a/input/appleir.c b/input/appleir.c index 2593f7cb5d..07a9c5b797 100644 --- a/input/appleir.c +++ b/input/appleir.c @@ -68,7 +68,7 @@ static const struct { { APPLE_IR_BACKWARD, 2, AR_PREV_HOLD }, { APPLE_IR_MENU, 1, AR_MENU }, { APPLE_IR_MENU, 2, AR_MENU_HOLD }, - { APPLE_IR_PLUS, 1, AR_VUP }, + { APPLE_IR_PLUS, 1, AR_VUP }, { APPLE_IR_MINUS, 1, AR_VDOWN }, { -1, -1, -1 } }; @@ -102,7 +102,7 @@ int mp_input_appleir_init (char *dev) fd = open (file, O_RDONLY | O_NONBLOCK); if (fd < 0) continue; - + ioctl (fd, EVIOCGID, &id); if (id.bustype == BUS_USB && id.vendor == USB_VENDOR_APPLE && @@ -147,6 +147,6 @@ int mp_input_appleir_read (int fd) if (apple_ir_mapping[i].linux_keycode == ev.code && apple_ir_mapping[i].value == ev.value) return apple_ir_mapping[i].mp_keycode; - + return MP_INPUT_NOTHING; } diff --git a/input/input.c b/input/input.c index ee5342fcb3..5fbc26b309 100644 --- a/input/input.c +++ b/input/input.c @@ -199,17 +199,17 @@ static const mp_cmd_t mp_cmds[] = { { MP_CMD_CEXIT, "exit", 0, { {-1,{0}} } }, { MP_CMD_CHIDE, "hide", 0, { {MP_CMD_ARG_INT,{3000}}, {-1,{0}} } }, #endif - + { MP_CMD_GET_VO_FULLSCREEN, "get_vo_fullscreen", 0, { {-1,{0}} } }, { MP_CMD_GET_SUB_VISIBILITY, "get_sub_visibility", 0, { {-1,{0}} } }, { MP_CMD_KEYDOWN_EVENTS, "key_down_event", 1, { {MP_CMD_ARG_INT,{0}}, {-1,{0}} } }, { MP_CMD_SET_PROPERTY, "set_property", 2, { {MP_CMD_ARG_STRING, {0}}, {MP_CMD_ARG_STRING, {0}}, {-1,{0}} } }, { MP_CMD_GET_PROPERTY, "get_property", 1, { {MP_CMD_ARG_STRING, {0}}, {-1,{0}} } }, { MP_CMD_STEP_PROPERTY, "step_property", 1, { {MP_CMD_ARG_STRING, {0}}, {MP_CMD_ARG_FLOAT,{0}}, {MP_CMD_ARG_INT,{0}}, {-1,{0}} } }, - + { MP_CMD_SEEK_CHAPTER, "seek_chapter", 1, { {MP_CMD_ARG_INT,{0}}, {MP_CMD_ARG_INT,{0}}, {-1,{0}} } }, { MP_CMD_SET_MOUSE_POS, "set_mouse_pos", 2, { {MP_CMD_ARG_INT,{0}}, {MP_CMD_ARG_INT,{0}}, {-1,{0}} } }, - + { 0, NULL, 0, {} } }; @@ -363,7 +363,7 @@ static const mp_cmd_bind_t def_cmd_binds[] = { { { MOUSE_BTN4, 0 }, "seek -10" }, { { MOUSE_BTN5, 0 }, "volume 1" }, { { MOUSE_BTN6, 0 }, "volume -1" }, - + #ifdef CONFIG_DVDNAV { { KEY_KP8, 0 }, "dvdnav up" }, // up { { KEY_KP2, 0 }, "dvdnav down" }, // down @@ -486,9 +486,9 @@ static const mp_cmd_bind_t def_cmd_binds[] = { { { KEY_VOLUME_UP, 0 }, "volume 1" }, { { KEY_VOLUME_DOWN, 0 }, "volume -1" }, { { KEY_MUTE, 0 }, "mute" }, - + { { KEY_CLOSE_WIN, 0 }, "quit" }, - + { { '!', 0 }, "seek_chapter -1" }, { { '@', 0 }, "seek_chapter 1" }, { { 'A', 0 }, "switch_angle 1" }, @@ -872,7 +872,7 @@ mp_input_parse_cmd(char* str) { if(e <= ptr2 || *(e - 1) != '\\') break; ptr2 = e + 1; } - + if(term != ' ' && (!e || e[0] == '\0')) { mp_msg(MSGT_INPUT,MSGL_ERR,MSGTR_INPUT_INPUT_ErrUnterminatedArg,cmd_def->name,i+1); ptr = NULL; @@ -930,8 +930,8 @@ mp_input_read_cmd(mp_input_fd_t* mp_fd, char** ret) { mp_fd->buffer = malloc(MP_CMD_MAX_SIZE); mp_fd->pos = 0; mp_fd->size = MP_CMD_MAX_SIZE; - } - + } + // Get some data if needed/possible while (!mp_fd->got_cmd && !mp_fd->eof && (mp_fd->size - mp_fd->pos > 1) ) { int r = ((mp_cmd_func_t)mp_fd->read_func)(mp_fd->fd,mp_fd->buffer+mp_fd->pos,mp_fd->size - 1 - mp_fd->pos); @@ -992,7 +992,7 @@ mp_input_read_cmd(mp_input_fd_t* mp_fd, char** ret) { memmove(mp_fd->buffer,end+1,mp_fd->pos-(l+1)); mp_fd->pos -= l+1; } - + if(*ret) return 1; else @@ -1028,7 +1028,7 @@ mp_input_add_cmd_filter(mp_input_cmd_filter func, void* ctx) { filter->next = cmd_filters; cmd_filters = filter; } - + static char* mp_input_find_bind_for_key(const mp_cmd_bind_t* binds, int n,int* keys) { @@ -1130,7 +1130,7 @@ interpret_key(int code, int paused) } code &= ~MP_KEY_DOWN; // Check if we don't already have this key as pushed - for(j = 0; j < num_key_down; j++) { + for(j = 0; j < num_key_down; j++) { if(key_down[j] == code) break; } @@ -1145,7 +1145,7 @@ interpret_key(int code, int paused) // key released // Check if the key is in the down key, driver which can't send push event // send only release event - for(j = 0; j < num_key_down; j++) { + for(j = 0; j < num_key_down; j++) { if(key_down[j] == code) break; } @@ -1157,7 +1157,7 @@ interpret_key(int code, int paused) key_down[num_key_down] = code; num_key_down++; last_key_down = 1; - } + } // We ignore key from last combination ret = last_key_down ? mp_input_get_cmd_from_keys(num_key_down,key_down,paused) : NULL; // Remove the key @@ -1180,7 +1180,7 @@ static mp_cmd_t *check_autorepeat(int paused) unsigned int t = GetTimer(); // First time : wait delay if(ar_state == 0 && (t - last_key_down) >= ar_delay*1000) { - ar_cmd = mp_input_get_cmd_from_keys(num_key_down,key_down,paused); + ar_cmd = mp_input_get_cmd_from_keys(num_key_down,key_down,paused); if(!ar_cmd) { ar_state = -1; return NULL; @@ -1340,14 +1340,14 @@ mp_input_get_queued_cmd(int peek_only) { return NULL; ret = cmd_queue[cmd_queue_start]; - - if (!peek_only) { + + if (!peek_only) { cmd_queue_length--; cmd_queue_start = (cmd_queue_start + 1) % CMD_QUEUE_SIZE; } - + return ret; -} +} /** * \param peek_only when set, the returned command stays in the queue. @@ -1401,7 +1401,7 @@ mp_cmd_free(mp_cmd_t* cmd) { if(cmd->name) free(cmd->name); - + for(i=0; i < MP_CMD_MAX_ARGS && cmd->args[i].type != -1; i++) { if(cmd->args[i].type == MP_CMD_ARG_STRING && cmd->args[i].v.s != NULL) free(cmd->args[i].v.s); @@ -1439,7 +1439,7 @@ mp_input_get_key_name(int key) { if(key_names[i].key == key) return key_names[i].name; } - + if(isascii(key)) { snprintf(key_str,12,"%c",(char)key); return key_str; @@ -1530,7 +1530,7 @@ mp_input_bind_keys(const int keys[MP_MAX_KEY_DOWN+1], char* cmd) { } } } - + if(!bind) { bind_section->cmd_binds = realloc(bind_section->cmd_binds,(i+2)*sizeof(mp_cmd_bind_t)); memset(&bind_section->cmd_binds[i],0,2*sizeof(mp_cmd_bind_t)); @@ -1562,7 +1562,7 @@ mp_input_free_binds(mp_cmd_bind_t* binds) { free(binds); } - + static int mp_input_parse_config(char *file) { int fd; @@ -1742,11 +1742,11 @@ mp_input_init(int use_gui) { if(use_gui) mp_input_add_binds(gui_def_cmd_binds); #endif - + file = config_file[0] != '/' ? get_path(config_file) : config_file; if(!file) return; - + if( !mp_input_parse_config(file)) { // free file if it was allocated by get_path(), // before it gets overwritten @@ -1810,7 +1810,7 @@ mp_input_init(int use_gui) { mp_input_add_key_fd(fd,1,mp_input_appleir_read,(mp_close_func_t)close); } #endif - + if(in_file) { struct stat st; if(stat(in_file,&st)) diff --git a/input/input.h b/input/input.h index 005d02b47c..12a56c8509 100644 --- a/input/input.h +++ b/input/input.h @@ -139,7 +139,7 @@ typedef enum { MP_CMD_DVDNAV_SELECT, MP_CMD_DVDNAV_PREVMENU, MP_CMD_DVDNAV_MOUSECLICK, - + /// GUI commands MP_CMD_GUI_EVENTS = 5000, MP_CMD_GUI_LOADFILE, @@ -183,7 +183,7 @@ typedef enum { #define MP_INPUT_RETRY -4 // For the key's drivers, if possible you can send key up and key down -// events. Key up is the default, to send a key down you must use the +// events. Key up is the default, to send a key down you must use the // OR operator between the key code and MP_KEY_DOWN. #define MP_KEY_DOWN (1<<29) // Use this when the key shouldn't be auto-repeated (like mouse buttons) diff --git a/input/joystick.c b/input/joystick.c index 772b097364..4549a1bd9c 100644 --- a/input/joystick.c +++ b/input/joystick.c @@ -50,7 +50,7 @@ int mp_input_joystick_init(char* dev) { int fd,l=0; int initialized = 0; struct js_event ev; - + mp_msg(MSGT_INPUT,MSGL_V,MSGTR_INPUT_JOYSTICK_Opening,dev ? dev : JS_DEV); fd = open( dev ? dev : JS_DEV , O_RDONLY | O_NONBLOCK ); @@ -58,7 +58,7 @@ int mp_input_joystick_init(char* dev) { mp_msg(MSGT_INPUT,MSGL_ERR,MSGTR_INPUT_JOYSTICK_CantOpen,dev ? dev : JS_DEV,strerror(errno)); return -1; } - + while(! initialized) { l = 0; while((unsigned int)l < sizeof(struct js_event)) { @@ -73,12 +73,12 @@ int mp_input_joystick_init(char* dev) { mp_msg(MSGT_INPUT,MSGL_ERR,MSGTR_INPUT_JOYSTICK_ErrReading,strerror(errno)); close(fd); return -1; - } + } l += r; } if((unsigned int)l < sizeof(struct js_event)) { if(l > 0) - mp_msg(MSGT_INPUT,MSGL_WARN,MSGTR_INPUT_JOYSTICK_LoosingBytes,l); + mp_msg(MSGT_INPUT,MSGL_WARN,MSGTR_INPUT_JOYSTICK_LoosingBytes,l); break; } if(ev.type == JS_EVENT_BUTTON) @@ -86,7 +86,7 @@ int mp_input_joystick_init(char* dev) { if(ev.type == JS_EVENT_AXIS) axis[ev.number] = ev.value; } - + return fd; } @@ -104,9 +104,9 @@ int mp_input_joystick_read(int fd) { if( r < 0) mp_msg(MSGT_INPUT,MSGL_ERR,MSGTR_INPUT_JOYSTICK_ErrReading,strerror(errno)); else - mp_msg(MSGT_INPUT,MSGL_ERR,MSGTR_INPUT_JOYSTICK_ErrReading,"EOF"); + mp_msg(MSGT_INPUT,MSGL_ERR,MSGTR_INPUT_JOYSTICK_ErrReading,"EOF"); return MP_INPUT_DEAD; - } + } l += r; } @@ -117,7 +117,7 @@ int mp_input_joystick_read(int fd) { } if(ev.type & JS_EVENT_INIT) { - mp_msg(MSGT_INPUT,MSGL_WARN,MSGTR_INPUT_JOYSTICK_WarnLostSync); + mp_msg(MSGT_INPUT,MSGL_WARN,MSGTR_INPUT_JOYSTICK_WarnLostSync); ev.type &= ~JS_EVENT_INIT; if(ev.type == JS_EVENT_BUTTON) { int s = (btns >> ev.number) & 1; @@ -130,9 +130,9 @@ int mp_input_joystick_read(int fd) { (axis[ev.number] == 0 && ev.value >= -JOY_AXIS_DELTA && ev.value <= JOY_AXIS_DELTA) ) // State is the same : ignore return MP_INPUT_NOTHING; - } + } } - + if(ev.type & JS_EVENT_BUTTON) { btns &= ~(1 << ev.number); btns |= (ev.value << ev.number); @@ -154,7 +154,7 @@ int mp_input_joystick_read(int fd) { } else return MP_INPUT_NOTHING; } else { - mp_msg(MSGT_INPUT,MSGL_WARN,MSGTR_INPUT_JOYSTICK_WarnUnknownEvent,ev.type); + mp_msg(MSGT_INPUT,MSGL_WARN,MSGTR_INPUT_JOYSTICK_WarnUnknownEvent,ev.type); return MP_INPUT_ERROR; } diff --git a/input/lirc.c b/input/lirc.c index 4e60f01182..d7fb95d7f8 100644 --- a/input/lirc.c +++ b/input/lirc.c @@ -35,7 +35,7 @@ char *lirc_configfile; static char* cmd_buf = NULL; -int +int mp_input_lirc_init(void) { int lirc_sock; int mode; @@ -81,7 +81,7 @@ int mp_input_lirc_read(int fd,char* dest, int s) { } return w; } - + // Nothing in the buffer, poll the lirc fd if(lirc_nextcode(&code) != 0) { mp_msg(MSGT_LIRC,MSGL_ERR,"Lirc error :(\n"); diff --git a/input/lirc.h b/input/lirc.h index 22ba92cc6c..d7b22fbb60 100644 --- a/input/lirc.h +++ b/input/lirc.h @@ -19,7 +19,7 @@ #ifndef MPLAYER_LIRC_H #define MPLAYER_LIRC_H -int +int mp_input_lirc_init(void); int -- cgit v1.2.3