|
From: <lin...@us...> - 2002-10-13 18:44:13
|
Update of /cvsroot/dvbtools/dvbstream
In directory usw-pr-cvs1:/tmp/cvs-serv3492
Modified Files:
dvbstream.c
Log Message:
Rename 'record for n seconds' option -n
Index: dvbstream.c
===================================================================
RCS file: /cvsroot/dvbtools/dvbstream/dvbstream.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** dvbstream.c 13 Oct 2002 18:39:53 -0000 1.7
--- dvbstream.c 13 Oct 2002 18:44:09 -0000 1.8
***************
*** 452,455 ****
--- 452,456 ----
fprintf(stderr,"-r IP multicast port\n");
fprintf(stderr,"-o Stream to stdout instead of network\n");
+ fprintf(stderr,"-n secs Stop after secs seconds\n");
fprintf(stderr,"-ps Convert stream to Program Stream format (needs exactly 2 pids)\n");
fprintf(stderr,"-v vpid Decode video PID (full cards only)\n");
***************
*** 502,506 ****
} else if (strcmp(argv[i],"-o")==0) {
to_stdout = 1;
! } else if (strcmp(argv[i],"-t")==0) {
i++;
secs=atoi(argv[i]);
--- 503,507 ----
} else if (strcmp(argv[i],"-o")==0) {
to_stdout = 1;
! } else if (strcmp(argv[i],"-n")==0) {
i++;
secs=atoi(argv[i]);
|