-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathvcam-util.c
283 lines (246 loc) · 7.71 KB
/
vcam-util.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
#include <fcntl.h>
#include <getopt.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/ioctl.h>
#include <sys/stat.h>
#include <unistd.h>
#include "vcam.h"
static const char *short_options = "hcm:r:ls:p:d:";
const struct option long_options[] = {
{"help", 0, NULL, 'h'}, {"create", 0, NULL, 'c'},
{"modify", 1, NULL, 'm'}, {"list", 0, NULL, 'l'},
{"size", 1, NULL, 's'}, {"pixfmt", 1, NULL, 'p'},
{"device", 1, NULL, 'd'}, {"remove", 1, NULL, 'r'},
{NULL, 0, NULL, 0}};
const char *help =
" -h --help Print this informations.\n"
" -c --create Create a new device.\n"
" -m --modify idx Modify a device.\n"
" -r --remove idx Remove a device.\n"
" -l --list List devices.\n"
" -s --size WIDTHxHEIGHTxCROPRATIO Specify virtual resolution or crop "
"ratio.\n"
" Crop ratio will only be applied in "
"cropping mode.\n"
" For instance:\n"
" WxH: 640x480 Specify the virtual resolution.\n"
" CR: 5/6 Apply crop ratio to the current "
"resolution.\n"
" WxHxCR: 640x480x5/6 Specify the virtual resolution "
"and apply with crop ratio.\n"
"\n"
" -p --pixfmt pix_fmt Specify pixel format (rgb24,yuyv).\n"
" -d --device /dev/* Control device node.\n";
enum ACTION { ACTION_NONE, ACTION_CREATE, ACTION_DESTROY, ACTION_MODIFY };
struct vcam_device_spec device_template = {
.width = 640,
.height = 480,
.pix_fmt = VCAM_PIXFMT_RGB24,
.video_node = "",
.fb_node = "",
};
static char ctl_path[128] = "/dev/vcamctl";
static bool parse_cropratio(char *res_str, struct vcam_device_spec *dev)
{
struct crop_ratio cropratio;
char *tmp = strtok(res_str, "/:,");
if (!tmp)
return false;
cropratio.numerator = atoi(tmp);
tmp = strtok(NULL, "/:,");
if (!tmp)
return false;
cropratio.denominator = atoi(tmp);
if (cropratio.numerator > cropratio.denominator ||
cropratio.denominator == 0)
return false;
dev->cropratio = cropratio;
return true;
}
bool parse_resolution(char *res_str, struct vcam_device_spec *dev)
{
/* Check resolution format */
char *tmp = strtok(res_str, "x:,");
if (!tmp)
return false;
__u32 width = atoi(tmp);
tmp = strtok(NULL, "x:,");
/* Not comform to resolution format. Check crop ratio format */
if (!tmp)
return parse_cropratio(res_str, dev);
dev->width = width;
dev->height = atoi(tmp);
/* Check crop ratio format */
tmp = strtok(NULL, "x:,");
if (tmp) {
return parse_cropratio(tmp, dev);
}
return true;
}
int determine_pixfmt(char *pixfmt_str)
{
if (!strncmp(pixfmt_str, "rgb24", 5))
return VCAM_PIXFMT_RGB24;
if (!strncmp(pixfmt_str, "yuyv", 4))
return VCAM_PIXFMT_YUYV;
return -1;
}
int create_device(struct vcam_device_spec *dev)
{
int fd = open(ctl_path, O_RDWR);
if (fd == -1) {
fprintf(stderr, "Failed to open %s device.\n", ctl_path);
return -1;
}
if (!dev->width || !dev->height) {
dev->width = device_template.width;
dev->height = device_template.height;
}
if (!dev->pix_fmt)
dev->pix_fmt = device_template.pix_fmt;
int res = ioctl(fd, VCAM_IOCTL_CREATE_DEVICE, dev);
if (res) {
fprintf(stderr, "Failed to create a new device.\n");
}
close(fd);
return res;
}
int remove_device(struct vcam_device_spec *dev)
{
int fd = open(ctl_path, O_RDWR);
if (fd == -1) {
fprintf(stderr, "Failed to open %s device.\n", ctl_path);
return -1;
}
int res = ioctl(fd, VCAM_IOCTL_DESTROY_DEVICE, dev);
if (res) {
fprintf(stderr, "Failed to remove the device on index %d.\n",
dev->idx + 1);
}
close(fd);
return res;
}
int modify_device(struct vcam_device_spec *dev)
{
struct vcam_device_spec orig_dev = {.idx = dev->idx};
int fd = open(ctl_path, O_RDWR);
if (fd == -1) {
fprintf(stderr, "Failed to open %s device.\n", ctl_path);
return -1;
}
if (ioctl(fd, VCAM_IOCTL_GET_DEVICE, &orig_dev)) {
fprintf(stderr, "Failed to find device on index %d.\n",
orig_dev.idx + 1);
close(fd);
return -1;
}
if (!dev->width || !dev->height) {
dev->width = orig_dev.width;
dev->height = orig_dev.height;
}
if (!dev->pix_fmt)
dev->pix_fmt = orig_dev.pix_fmt;
if (!dev->cropratio.numerator || !dev->cropratio.denominator)
dev->cropratio = orig_dev.cropratio;
int res = ioctl(fd, VCAM_IOCTL_MODIFY_SETTING, dev);
if (res) {
fprintf(stderr, "Failed to modify the device.\n");
}
close(fd);
return res;
}
int list_devices()
{
struct vcam_device_spec dev = {.idx = 0};
int fd = open(ctl_path, O_RDWR);
if (fd == -1) {
fprintf(stderr, "Failed to open %s device.\n", ctl_path);
return -1;
}
printf("Available virtual V4L2 compatible devices:\n");
while (!ioctl(fd, VCAM_IOCTL_GET_DEVICE, &dev)) {
dev.idx++;
printf("%d. %s(%d,%d,%d/%d,%s) -> %s\n", dev.idx, dev.fb_node,
dev.width, dev.height, dev.cropratio.numerator,
dev.cropratio.denominator,
dev.pix_fmt == VCAM_PIXFMT_RGB24 ? "rgb24" : "yuyv",
dev.video_node);
}
close(fd);
return 0;
}
int main(int argc, char *argv[])
{
int next_option;
enum ACTION current_action = ACTION_NONE;
struct vcam_device_spec dev;
int ret = 0;
int tmp;
memset(&dev, 0x00, sizeof(struct vcam_device_spec));
/* Process command line options */
do {
next_option =
getopt_long(argc, argv, short_options, long_options, NULL);
switch (next_option) {
case 'h':
printf("%s", help);
exit(0);
case 'c':
current_action = ACTION_CREATE;
printf("Creating a new device.\n");
break;
case 'm':
current_action = ACTION_MODIFY;
dev.idx = atoi(optarg) - 1;
break;
case 'r':
current_action = ACTION_DESTROY;
dev.idx = atoi(optarg) - 1;
printf("Removing the device.\n");
break;
case 'l':
list_devices();
break;
case 's':
if (!parse_resolution(optarg, &dev)) {
fprintf(stderr, "Failed to parse resolution and crop ratio.\n");
exit(-1);
}
printf("Setting resolution to %dx%dx%d/%d.\n", dev.width,
dev.height, dev.cropratio.numerator,
dev.cropratio.denominator);
break;
case 'p':
tmp = determine_pixfmt(optarg);
if (tmp < 0) {
fprintf(stderr, "Failed to recognize pixel format %s.\n",
optarg);
exit(-1);
}
dev.pix_fmt = (char) tmp;
printf("Setting pixel format to %s.\n", optarg);
break;
case 'd':
printf("Using device %s.\n", optarg);
strncpy(ctl_path, optarg, sizeof(ctl_path) - 1);
break;
}
} while (next_option != -1);
switch (current_action) {
case ACTION_CREATE:
ret = create_device(&dev);
break;
case ACTION_DESTROY:
ret = remove_device(&dev);
break;
case ACTION_MODIFY:
ret = modify_device(&dev);
break;
case ACTION_NONE:
break;
}
return ret;
}