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
|
#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 "v4l2-ctl.h"
static unsigned set_fmts_out;
static __u32 width, height, pixfmt, field, colorspace, xfer_func, ycbcr, quantization, flags;
static __u32 bytesperline[VIDEO_MAX_PLANES];
static __u32 sizeimage[VIDEO_MAX_PLANES];
void vidout_usage(void)
{
printf("\nVideo Output Formats options:\n"
" --list-formats-out display supported video output formats [VIDIOC_ENUM_FMT]\n"
" --list-formats-out-ext\n"
" display supported video output formats including frame sizes\n"
" and intervals\n"
" --list-fields-out list supported fields for the current output format\n"
" -X, --get-fmt-video-out\n"
" query the video output format [VIDIOC_G_FMT]\n"
" -x, --set-fmt-video-out\n"
" --try-fmt-video-out 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 output format [VIDIOC_S/TRY_FMT]\n"
" pixelformat is either the format index as reported by\n"
" --list-formats-out, or the fourcc value as a string.\n"
" premul-alpha sets V4L2_PIX_FMT_FLAG_PREMUL_ALPHA.\n"
" The bytesperline and sizeimage options can be used multiple times,\n"
" once for each plane.\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_out_fields(int fd)
{
struct v4l2_format fmt;
struct v4l2_format tmp;
memset(&fmt, 0, sizeof(fmt));
fmt.fmt.pix.priv = priv_magic;
fmt.type = vidout_buftype;
if (test_ioctl(fd, VIDIOC_G_FMT, &fmt) < 0)
return;
printf("Supported Video Output 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 vidout_cmd(int ch, char *optarg)
{
switch (ch) {
case OptSetVideoOutFormat:
case OptTryVideoOutFormat:
set_fmts_out = parse_fmt(optarg, width, height, pixfmt, field,
colorspace, xfer_func, ycbcr, quantization, flags, bytesperline,
sizeimage);
if (!set_fmts_out) {
vidcap_usage();
exit(1);
}
break;
}
}
void vidout_set(cv4l_fd &_fd)
{
int fd = _fd.g_fd();
int ret;
if (options[OptSetVideoOutFormat] || options[OptTryVideoOutFormat]) {
struct v4l2_format vfmt;
memset(&vfmt, 0, sizeof(vfmt));
vfmt.fmt.pix.priv = priv_magic;
vfmt.type = vidout_buftype;
if (doioctl(fd, VIDIOC_G_FMT, &vfmt) == 0) {
if (is_multiplanar) {
if (set_fmts_out & FmtWidth)
vfmt.fmt.pix_mp.width = width;
if (set_fmts_out & FmtHeight)
vfmt.fmt.pix_mp.height = height;
if (set_fmts_out & 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,
true, true);
}
}
if (set_fmts_out & FmtField)
vfmt.fmt.pix_mp.field = field;
if (set_fmts_out & FmtColorspace)
vfmt.fmt.pix_mp.colorspace = colorspace;
if (set_fmts_out & FmtXferFunc)
vfmt.fmt.pix_mp.xfer_func = xfer_func;
if (set_fmts_out & FmtYCbCr)
vfmt.fmt.pix_mp.ycbcr_enc = ycbcr;
if (set_fmts_out & FmtQuantization)
vfmt.fmt.pix_mp.quantization = quantization;
if (set_fmts_out & FmtFlags)
vfmt.fmt.pix_mp.flags = flags;
if (set_fmts_out & 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_out & FmtSizeImage) {
for (unsigned i = 0; i < VIDEO_MAX_PLANES; i++)
vfmt.fmt.pix_mp.plane_fmt[i].sizeimage =
sizeimage[i];
}
} else {
if (set_fmts_out & FmtWidth)
vfmt.fmt.pix.width = width;
if (set_fmts_out & FmtHeight)
vfmt.fmt.pix.height = height;
if (set_fmts_out & 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,
true, false);
}
}
if (set_fmts_out & FmtField)
vfmt.fmt.pix.field = field;
if (set_fmts_out & FmtColorspace)
vfmt.fmt.pix.colorspace = colorspace;
if (set_fmts_out & FmtXferFunc)
vfmt.fmt.pix.xfer_func = xfer_func;
if (set_fmts_out & FmtYCbCr)
vfmt.fmt.pix.ycbcr_enc = ycbcr;
if (set_fmts_out & FmtQuantization)
vfmt.fmt.pix.quantization = quantization;
if (set_fmts_out & FmtFlags)
vfmt.fmt.pix.flags = flags;
if (set_fmts_out & 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_out & FmtSizeImage)
vfmt.fmt.pix.sizeimage = sizeimage[0];
}
if ((set_fmts_out & FmtPixelFormat) &&
!valid_pixel_format(fd, pixfmt, true, 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");
exit(1);
}
if (options[OptSetVideoOutFormat])
ret = doioctl(fd, VIDIOC_S_FMT, &vfmt);
else
ret = doioctl(fd, VIDIOC_TRY_FMT, &vfmt);
if (ret == 0 && (verbose || options[OptTryVideoOutFormat]))
printfmt(fd, vfmt);
}
}
}
void vidout_get(cv4l_fd &fd)
{
if (options[OptGetVideoOutFormat]) {
struct v4l2_format vfmt;
memset(&vfmt, 0, sizeof(vfmt));
vfmt.fmt.pix.priv = priv_magic;
vfmt.type = vidout_buftype;
if (doioctl(fd.g_fd(), VIDIOC_G_FMT, &vfmt) == 0)
printfmt(fd.g_fd(), vfmt);
}
}
void vidout_list(cv4l_fd &fd)
{
if (options[OptListOutFormats]) {
printf("ioctl: VIDIOC_ENUM_FMT\n");
print_video_formats(fd, vidout_buftype);
}
if (options[OptListOutFormatsExt]) {
printf("ioctl: VIDIOC_ENUM_FMT\n");
print_video_formats_ext(fd, vidout_buftype);
}
if (options[OptListOutFields]) {
print_video_out_fields(fd.g_fd());
}
}
|