chiark / gitweb /
logind: remove unused session->closing field
[elogind.git] / src / udev / v4l_id / v4l_id.c
1 /*
2  * Copyright (C) 2009 Kay Sievers <kay@vrfy.org>
3  * Copyright (c) 2009 Filippo Argiolas <filippo.argiolas@gmail.com>
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation; either version 2 of the
8  * License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details:
14  */
15
16 #include <stdio.h>
17 #include <errno.h>
18 #include <string.h>
19 #include <ctype.h>
20 #include <stdlib.h>
21 #include <unistd.h>
22 #include <fcntl.h>
23 #include <getopt.h>
24 #include <sys/types.h>
25 #include <sys/time.h>
26 #include <sys/ioctl.h>
27 #include <linux/videodev2.h>
28
29 int main (int argc, char *argv[])
30 {
31         static const struct option options[] = {
32                 { "help", no_argument, NULL, 'h' },
33                 {}
34         };
35         int fd;
36         char *device;
37         struct v4l2_capability v2cap;
38
39         while (1) {
40                 int option;
41
42                 option = getopt_long(argc, argv, "h", options, NULL);
43                 if (option == -1)
44                         break;
45
46                 switch (option) {
47                 case 'h':
48                         printf("Usage: v4l_id [--help] <device file>\n\n");
49                         return 0;
50                 default:
51                         return 1;
52                 }
53         }
54         device = argv[optind];
55
56         if (device == NULL)
57                 return 2;
58         fd = open (device, O_RDONLY);
59         if (fd < 0)
60                 return 3;
61
62         if (ioctl (fd, VIDIOC_QUERYCAP, &v2cap) == 0) {
63                 printf("ID_V4L_VERSION=2\n");
64                 printf("ID_V4L_PRODUCT=%s\n", v2cap.card);
65                 printf("ID_V4L_CAPABILITIES=:");
66                 if ((v2cap.capabilities & V4L2_CAP_VIDEO_CAPTURE) > 0)
67                         printf("capture:");
68                 if ((v2cap.capabilities & V4L2_CAP_VIDEO_OUTPUT) > 0)
69                         printf("video_output:");
70                 if ((v2cap.capabilities & V4L2_CAP_VIDEO_OVERLAY) > 0)
71                         printf("video_overlay:");
72                 if ((v2cap.capabilities & V4L2_CAP_AUDIO) > 0)
73                         printf("audio:");
74                 if ((v2cap.capabilities & V4L2_CAP_TUNER) > 0)
75                         printf("tuner:");
76                 if ((v2cap.capabilities & V4L2_CAP_RADIO) > 0)
77                         printf("radio:");
78                 printf("\n");
79         }
80
81         close (fd);
82         return 0;
83 }