[MPlayer-cvslog] CVS: main/input input.c, 1.104, 1.105 input.h, 1.50, 1.51
Reimar Döffinger CVS
syncmail at mplayerhq.hu
Sat Nov 20 11:51:15 CET 2004
CVS change done by Reimar Döffinger CVS
Update of /cvsroot/mplayer/main/input
In directory mail:/var2/tmp/cvs-serv28437/input
Modified Files:
input.c input.h
Log Message:
add "pausing" prefix for MPlayer commands
Index: input.c
===================================================================
RCS file: /cvsroot/mplayer/main/input/input.c,v
retrieving revision 1.104
retrieving revision 1.105
diff -u -r1.104 -r1.105
--- input.c 15 Nov 2004 09:09:28 -0000 1.104
+++ input.c 20 Nov 2004 10:51:13 -0000 1.105
@@ -542,6 +542,7 @@
mp_cmd_t*
mp_input_parse_cmd(char* str) {
int i,l;
+ int pausing = 0;
char *ptr,*e;
mp_cmd_t *cmd, *cmd_def;
@@ -549,6 +550,11 @@
assert(str != NULL);
#endif
+ if (strncmp(str, "pausing ", 8) == 0) {
+ pausing = 1;
+ str = &str[8];
+ }
+
for(ptr = str ; ptr[0] != '\0' && ptr[0] != '\t' && ptr[0] != ' ' ; ptr++)
/* NOTHING */;
if(ptr[0] != '\0')
@@ -572,6 +578,7 @@
cmd = (mp_cmd_t*)malloc(sizeof(mp_cmd_t));
cmd->id = cmd_def->id;
cmd->name = strdup(cmd_def->name);
+ cmd->pausing = pausing;
ptr = str;
Index: input.h
===================================================================
RCS file: /cvsroot/mplayer/main/input/input.h,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -r1.50 -r1.51
--- input.h 20 Oct 2004 20:07:50 -0000 1.50
+++ input.h 20 Nov 2004 10:51:13 -0000 1.51
@@ -139,6 +139,7 @@
char* name;
int nargs;
mp_cmd_arg_t args[MP_CMD_MAX_ARGS];
+ int pausing;
} mp_cmd_t;
More information about the MPlayer-cvslog
mailing list