wmtv: Add new -c option to choose the video4linux device to use.

Patch by Nicolas Boullis <nboullis@debian.org>.  Introduced in Debian
package version 0.6.5-16.
This commit is contained in:
Doug Torrance 2016-02-01 00:45:16 -05:00 committed by Carlos R. Mafra
parent b831e66e9a
commit 417aaef3a7

View file

@ -77,7 +77,7 @@
#define SETSPD 3
#define MAXCHAN 99
#define OPTIONS "hvd:g:e:b:"
#define OPTIONS "hvd:g:e:b:c:"
#define TELEVISION 0
#define COMPOSITE 1
@ -288,6 +288,7 @@ main(int argc, char *argv[])
int pressed_button = -1;
/* pid_t pid; */
static struct option long_options[] = {
{"device", 1, 0, 'c'},
{"display", 1, 0, 'd'},
{"geometry", 1, 0, 'g'},
{"bpp", 1, 0, 'b'},
@ -338,6 +339,9 @@ main(int argc, char *argv[])
exe = strdup(optarg);
/* strcat(exe, " &"); */
break;
case 'c':
dev = strdup(optarg);
break;
case 'b':
fprintf(stderr, "wmtv: option not implemented yet\n");
Usage();
@ -1677,6 +1681,7 @@ Usage(void)
fprintf(stderr, "\n");
fprintf(stderr, "wmtv v%s, Copyright (c) 1999 Wee Liang <wliang@tartarus.uwa.edu.au>\n", VERSION);
fprintf(stderr, "usage: wmtv [%s]\n", OPTIONS);
fprintf(stderr, " -c, --device <file>\tsets video4linux device to use\n");
fprintf(stderr, " -d, --display <host:vs>\tsets display name\n");
fprintf(stderr, " -g, --geometry <{+-}XP{+-}YP>\tsets geometry\n");
fprintf(stderr, " -b, --bpp\t\t\tdisplay color depth\n");