[MPlayer-cvslog] CVS: main/input input.c,1.128,1.129
Oded Shimon CVS
syncmail at mplayerhq.hu
Sun Dec 25 20:22:50 CET 2005
CVS change done by Oded Shimon CVS
Update of /cvsroot/mplayer/main/input
In directory mail:/var2/tmp/cvs-serv911/input
Modified Files:
input.c
Log Message:
add "pausing_keep" and "pausing_toggle" input cmd prefixes
Index: input.c
===================================================================
RCS file: /cvsroot/mplayer/main/input/input.c,v
retrieving revision 1.128
retrieving revision 1.129
diff -u -r1.128 -r1.129
--- input.c 11 Nov 2005 13:25:48 -0000 1.128
+++ input.c 25 Dec 2005 19:22:48 -0000 1.129
@@ -600,6 +600,12 @@
if (strncmp(str, "pausing ", 8) == 0) {
pausing = 1;
str = &str[8];
+ } else if (strncmp(str, "pausing_keep ", 13) == 0) {
+ pausing = 2;
+ str = &str[13];
+ } else if (strncmp(str, "pausing_toggle ", 15) == 0) {
+ pausing = 3;
+ str = &str[15];
}
for(ptr = str ; ptr[0] != '\0' && ptr[0] != '\t' && ptr[0] != ' ' ; ptr++)
More information about the MPlayer-cvslog
mailing list