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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
|
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <inttypes.h>
#include <getopt.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <ctype.h>
#include <errno.h>
#include <sys/ioctl.h>
#include <sys/time.h>
#include <dirent.h>
#include <math.h>
#include <cstdlib>
#include "v4l2-ctl.h"
static struct v4l2_frmsizeenum frmsize; /* list frame sizes */
static struct v4l2_frmivalenum frmival; /* list frame intervals */
static unsigned set_fmts;
static __u32 width, height, pixfmt, field, flags;
static __u32 bytesperline[VIDEO_MAX_PLANES];
static __u32 sizeimage[VIDEO_MAX_PLANES];
void vidcap_usage()
{
printf("\nVideo Capture Formats options:\n"
" --list-formats display supported video formats [VIDIOC_ENUM_FMT]\n"
" --list-formats-ext display supported video formats including frame sizes\n"
" and intervals\n"
" --list-framesizes <f>\n"
" list supported framesizes for pixelformat <f>\n"
" [VIDIOC_ENUM_FRAMESIZES]\n"
" pixelformat is the fourcc value as a string\n"
" --list-frameintervals width=<w>,height=<h>,pixelformat=<f>\n"
" list supported frame intervals for pixelformat <f> and\n"
" the given width and height [VIDIOC_ENUM_FRAMEINTERVALS]\n"
" pixelformat is the fourcc value as a string\n"
" --list-fields list supported fields for the current format\n"
" -V, --get-fmt-video\n"
" query the video capture format [VIDIOC_G_FMT]\n"
" -v, --set-fmt-video\n"
" --try-fmt-video width=<w>,height=<h>,pixelformat=<pf>,field=<f>,colorspace=<c>,\n"
" xfer=<xf>,ycbcr=<y>,hsv=<hsv>,quantization=<q>,\n"
" premul-alpha,bytesperline=<bpl>,sizeimage=<sz>\n"
" set/try the video capture format [VIDIOC_S/TRY_FMT]\n"
" pixelformat is either the format index as reported by\n"
" --list-formats, or the fourcc value as a string.\n"
" The bytesperline and sizeimage options can be used multiple times,\n"
" once for each plane.\n"
" premul-alpha sets V4L2_PIX_FMT_FLAG_PREMUL_ALPHA.\n"
" <f> can be one of the following field layouts:\n"
" any, none, top, bottom, interlaced, seq_tb, seq_bt,\n"
" alternate, interlaced_tb, interlaced_bt\n"
" <c> can be one of the following colorspaces:\n"
" smpte170m, smpte240m, rec709, 470m, 470bg, jpeg, srgb,\n"
" oprgb, bt2020, dcip3\n"
" <xf> can be one of the following transfer functions:\n"
" default, 709, srgb, oprgb, smpte240m, smpte2084, dcip3, none\n"
" <y> can be one of the following Y'CbCr encodings:\n"
" default, 601, 709, xv601, xv709, bt2020, bt2020c, smpte240m\n"
" <hsv> can be one of the following HSV encodings:\n"
" default, 180, 256\n"
" <q> can be one of the following quantization methods:\n"
" default, full-range, lim-range\n"
);
}
static void print_video_fields(int fd)
{
struct v4l2_format fmt;
struct v4l2_format tmp;
memset(&fmt, 0, sizeof(fmt));
fmt.fmt.pix.priv = priv_magic;
fmt.type = vidcap_buftype;
if (test_ioctl(fd, VIDIOC_G_FMT, &fmt) < 0)
return;
printf("Supported Video Fields:\n");
for (__u32 f = V4L2_FIELD_NONE; f <= V4L2_FIELD_INTERLACED_BT; f++) {
bool ok;
tmp = fmt;
if (is_multiplanar)
tmp.fmt.pix_mp.field = f;
else
tmp.fmt.pix.field = f;
if (test_ioctl(fd, VIDIOC_TRY_FMT, &tmp) < 0)
continue;
if (is_multiplanar)
ok = tmp.fmt.pix_mp.field == f;
else
ok = tmp.fmt.pix.field == f;
if (ok)
printf("\t%s\n", field2s(f).c_str());
}
}
void vidcap_cmd(int ch, char *optarg)
{
__u32 colorspace, xfer_func, ycbcr, quantization;
char *value, *subs;
bool be_pixfmt;
switch (ch) {
case OptSetVideoFormat:
case OptTryVideoFormat:
set_fmts = parse_fmt(optarg, width, height, pixfmt, field, colorspace,
xfer_func, ycbcr, quantization, flags, bytesperline,
sizeimage);
if (!set_fmts ||
(set_fmts & (FmtColorspace | FmtYCbCr | FmtQuantization | FmtXferFunc))) {
vidcap_usage();
std::exit(EXIT_FAILURE);
}
break;
case OptListFrameSizes:
be_pixfmt = strlen(optarg) == 7 && !memcmp(optarg + 4, "-BE", 3);
if (be_pixfmt || strlen(optarg) == 4) {
frmsize.pixel_format = v4l2_fourcc(optarg[0], optarg[1],
optarg[2], optarg[3]);
if (be_pixfmt)
frmsize.pixel_format |= 1U << 31;
} else if (isdigit(optarg[0])) {
frmsize.pixel_format = strtol(optarg, 0L, 0);
} else {
fprintf(stderr, "The pixelformat '%s' is invalid\n", optarg);
std::exit(EXIT_FAILURE);
}
break;
case OptListFrameIntervals:
subs = optarg;
while (*subs != '\0') {
static const char *const subopts[] = {
"width",
"height",
"pixelformat",
NULL
};
switch (parse_subopt(&subs, subopts, &value)) {
case 0:
frmival.width = strtol(value, 0L, 0);
break;
case 1:
frmival.height = strtol(value, 0L, 0);
break;
case 2:
be_pixfmt = strlen(value) == 7 && !memcmp(value + 4, "-BE", 3);
if (be_pixfmt || strlen(value) == 4) {
frmival.pixel_format =
v4l2_fourcc(value[0], value[1],
value[2], value[3]);
if (be_pixfmt)
frmival.pixel_format |= 1U << 31;
} else if (isdigit(optarg[0])) {
frmival.pixel_format = strtol(value, 0L, 0);
} else {
fprintf(stderr, "The pixelformat '%s' is invalid\n", optarg);
std::exit(EXIT_FAILURE);
}
break;
default:
vidcap_usage();
std::exit(EXIT_FAILURE);
}
}
break;
}
}
int vidcap_get_and_update_fmt(cv4l_fd &_fd, struct v4l2_format &vfmt)
{
int fd = _fd.g_fd();
int ret;
memset(&vfmt, 0, sizeof(vfmt));
vfmt.fmt.pix.priv = priv_magic;
vfmt.type = vidcap_buftype;
ret = doioctl(fd, VIDIOC_G_FMT, &vfmt);
if (ret)
return ret;
if (is_multiplanar) {
if (set_fmts & FmtWidth)
vfmt.fmt.pix_mp.width = width;
if (set_fmts & FmtHeight)
vfmt.fmt.pix_mp.height = height;
if (set_fmts & FmtPixelFormat) {
vfmt.fmt.pix_mp.pixelformat = pixfmt;
if (vfmt.fmt.pix_mp.pixelformat < 256) {
vfmt.fmt.pix_mp.pixelformat = pixfmt =
find_pixel_format(fd, vfmt.fmt.pix_mp.pixelformat,
false, true);
}
}
if (set_fmts & FmtField)
vfmt.fmt.pix_mp.field = field;
if (set_fmts & FmtFlags)
vfmt.fmt.pix_mp.flags = flags;
if (set_fmts & FmtBytesPerLine) {
for (unsigned i = 0; i < VIDEO_MAX_PLANES; i++)
vfmt.fmt.pix_mp.plane_fmt[i].bytesperline =
bytesperline[i];
} else {
/*
* G_FMT might return bytesperline values > width,
* reset them to 0 to force the driver to update them
* to the closest value for the new width.
*/
for (unsigned i = 0; i < vfmt.fmt.pix_mp.num_planes; i++)
vfmt.fmt.pix_mp.plane_fmt[i].bytesperline = 0;
}
if (set_fmts & FmtSizeImage) {
for (unsigned i = 0; i < VIDEO_MAX_PLANES; i++)
vfmt.fmt.pix_mp.plane_fmt[i].sizeimage =
sizeimage[i];
}
} else {
if (set_fmts & FmtWidth)
vfmt.fmt.pix.width = width;
if (set_fmts & FmtHeight)
vfmt.fmt.pix.height = height;
if (set_fmts & FmtPixelFormat) {
vfmt.fmt.pix.pixelformat = pixfmt;
if (vfmt.fmt.pix.pixelformat < 256) {
vfmt.fmt.pix.pixelformat = pixfmt =
find_pixel_format(fd, vfmt.fmt.pix.pixelformat,
false, false);
}
}
if (set_fmts & FmtField)
vfmt.fmt.pix.field = field;
if (set_fmts & FmtFlags)
vfmt.fmt.pix.flags = flags;
if (set_fmts & FmtBytesPerLine) {
vfmt.fmt.pix.bytesperline = bytesperline[0];
} else {
/*
* G_FMT might return a bytesperline value > width,
* reset this to 0 to force the driver to update it
* to the closest value for the new width.
*/
vfmt.fmt.pix.bytesperline = 0;
}
if (set_fmts & FmtSizeImage)
vfmt.fmt.pix.sizeimage = sizeimage[0];
}
if ((set_fmts & FmtPixelFormat) &&
!valid_pixel_format(fd, pixfmt, false, is_multiplanar)) {
if (pixfmt)
fprintf(stderr, "The pixelformat '%s' is invalid\n",
fcc2s(pixfmt).c_str());
else
fprintf(stderr, "The pixelformat index was invalid\n");
return -EINVAL;
}
return 0;
}
void vidcap_set(cv4l_fd &_fd)
{
if (options[OptSetVideoFormat] || options[OptTryVideoFormat]) {
int fd = _fd.g_fd();
int ret;
struct v4l2_format vfmt;
if (vidcap_get_and_update_fmt(_fd, vfmt) == 0) {
if (options[OptSetVideoFormat])
ret = doioctl(fd, VIDIOC_S_FMT, &vfmt);
else
ret = doioctl(fd, VIDIOC_TRY_FMT, &vfmt);
if (ret == 0 && (verbose || options[OptTryVideoFormat]))
printfmt(fd, vfmt);
}
}
}
void vidcap_get(cv4l_fd &fd)
{
if (options[OptGetVideoFormat]) {
struct v4l2_format vfmt;
memset(&vfmt, 0, sizeof(vfmt));
vfmt.fmt.pix.priv = priv_magic;
vfmt.type = vidcap_buftype;
if (doioctl(fd.g_fd(), VIDIOC_G_FMT, &vfmt) == 0)
printfmt(fd.g_fd(), vfmt);
}
}
void vidcap_list(cv4l_fd &fd)
{
if (options[OptListFormats]) {
printf("ioctl: VIDIOC_ENUM_FMT\n");
print_video_formats(fd, vidcap_buftype);
}
if (options[OptListFormatsExt]) {
printf("ioctl: VIDIOC_ENUM_FMT\n");
print_video_formats_ext(fd, vidcap_buftype);
}
if (options[OptListFields]) {
print_video_fields(fd.g_fd());
}
if (options[OptListFrameSizes]) {
frmsize.index = 0;
if (frmsize.pixel_format < 256) {
frmsize.pixel_format =
find_pixel_format(fd.g_fd(), frmsize.pixel_format,
false, is_multiplanar);
if (!frmsize.pixel_format) {
fprintf(stderr, "The pixelformat index was invalid\n");
std::exit(EXIT_FAILURE);
}
}
if (!valid_pixel_format(fd.g_fd(), frmsize.pixel_format, false, is_multiplanar) &&
!valid_pixel_format(fd.g_fd(), frmsize.pixel_format, true, is_multiplanar)) {
fprintf(stderr, "The pixelformat '%s' is invalid\n",
fcc2s(frmsize.pixel_format).c_str());
std::exit(EXIT_FAILURE);
}
printf("ioctl: VIDIOC_ENUM_FRAMESIZES\n");
while (test_ioctl(fd.g_fd(), VIDIOC_ENUM_FRAMESIZES, &frmsize) >= 0) {
print_frmsize(frmsize, "");
frmsize.index++;
}
}
if (options[OptListFrameIntervals]) {
frmival.index = 0;
if (frmival.pixel_format < 256) {
frmival.pixel_format =
find_pixel_format(fd.g_fd(), frmival.pixel_format,
false, is_multiplanar);
if (!frmival.pixel_format) {
fprintf(stderr, "The pixelformat index was invalid\n");
std::exit(EXIT_FAILURE);
}
}
if (!valid_pixel_format(fd.g_fd(), frmival.pixel_format, false, is_multiplanar)) {
fprintf(stderr, "The pixelformat '%s' is invalid\n",
fcc2s(frmival.pixel_format).c_str());
std::exit(EXIT_FAILURE);
}
printf("ioctl: VIDIOC_ENUM_FRAMEINTERVALS\n");
while (test_ioctl(fd.g_fd(), VIDIOC_ENUM_FRAMEINTERVALS, &frmival) >= 0) {
print_frmival(frmival, "");
frmival.index++;
}
}
}
void print_touch_buffer(FILE *f, cv4l_buffer &buf, cv4l_fmt &fmt, cv4l_queue &q)
{
static const char img[16] = {
'.', ',', ':', ';', '!', '|', 'i', 'c',
'n', 'o', 'm', 'I', 'C', 'N', 'O', 'M',
};
__s16 *vbuf = static_cast<__s16 *>(q.g_dataptr(buf.g_index(), 0));
__u32 x, y;
switch (fmt.g_pixelformat()) {
case V4L2_TCH_FMT_DELTA_TD16:
for (y = 0; y < fmt.g_height(); y++) {
fprintf(f, "TD16: ");
for (x = 0; x < fmt.g_width(); x++, vbuf++) {
__s16 v = static_cast<__s16>(le16toh(*vbuf));
if (!options[OptConcise])
fprintf(f, "% 4d", v);
else if (v > 255)
fprintf(f, "*");
else if (v < -32)
fprintf(f, "-");
else if (v < 0)
fprintf(f, "%c", img[0]);
else
fprintf(f, "%c", img[v / 16]);
}
fprintf(f, "\n");
}
break;
}
}
|