41 #define V4L_ALLFORMATS 3
42 #define V4L_RAWFORMATS 1
43 #define V4L_COMPFORMATS 2
48 #define V4L_TS_DEFAULT 0
58 #define V4L_TS_MONO2ABS 2
65 #define V4L_TS_CONVERT_READY V4L_TS_DEFAULT
92 int (*
open_f)(
const char *file,
int oflag, ...);
95 int (*
ioctl_f)(
int fd,
unsigned long int request, ...);
109 struct v4l2_capability cap;
114 #define SET_WRAPPERS(prefix) do { \
115 s->open_f = prefix ## open; \
116 s->close_f = prefix ## close; \
117 s->dup_f = prefix ## dup; \
118 s->ioctl_f = prefix ## ioctl; \
119 s->read_f = prefix ## read; \
120 s->mmap_f = prefix ## mmap; \
121 s->munmap_f = prefix ## munmap; \
135 #define v4l2_open s->open_f
136 #define v4l2_close s->close_f
137 #define v4l2_dup s->dup_f
138 #define v4l2_ioctl s->ioctl_f
139 #define v4l2_read s->read_f
140 #define v4l2_mmap s->mmap_f
141 #define v4l2_munmap s->munmap_f
155 if (
v4l2_ioctl(fd, VIDIOC_QUERYCAP, &cap) < 0) {
163 fd, cap.capabilities);
165 if (!(cap.capabilities & V4L2_CAP_VIDEO_CAPTURE)) {
171 if (!(cap.capabilities & V4L2_CAP_STREAMING)) {
173 "The device does not support the streaming I/O method.\n");
190 struct v4l2_format fmt = { .type = V4L2_BUF_TYPE_VIDEO_CAPTURE };
191 struct v4l2_pix_format *pix = &fmt.fmt.pix;
198 pix->field = V4L2_FIELD_ANY;
203 if ((*width != fmt.fmt.pix.width) || (*height != fmt.fmt.pix.height)) {
205 "The V4L2 driver changed the video from %dx%d to %dx%d\n",
206 *width, *height, fmt.fmt.pix.width, fmt.fmt.pix.height);
207 *width = fmt.fmt.pix.width;
208 *height = fmt.fmt.pix.height;
211 if (pix_fmt != fmt.fmt.pix.pixelformat) {
213 "The V4L2 driver changed the pixel format "
214 "from 0x%08X to 0x%08X\n",
215 pix_fmt, fmt.fmt.pix.pixelformat);
219 if (fmt.fmt.pix.field == V4L2_FIELD_INTERLACED) {
221 "The V4L2 driver is using the interlaced mode\n");
237 if (std & V4L2_STD_NTSC) {
244 #if HAVE_STRUCT_V4L2_FRMIVALENUM_DISCRETE
245 static void list_framesizes(
AVFormatContext *ctx,
int fd, uint32_t pixelformat)
248 struct v4l2_frmsizeenum vfse = { .pixel_format = pixelformat };
250 while(!
v4l2_ioctl(fd, VIDIOC_ENUM_FRAMESIZES, &vfse)) {
252 case V4L2_FRMSIZE_TYPE_DISCRETE:
254 vfse.discrete.width, vfse.discrete.height);
256 case V4L2_FRMSIZE_TYPE_CONTINUOUS:
257 case V4L2_FRMSIZE_TYPE_STEPWISE:
259 vfse.stepwise.min_width,
260 vfse.stepwise.max_width,
261 vfse.stepwise.step_width,
262 vfse.stepwise.min_height,
263 vfse.stepwise.max_height,
264 vfse.stepwise.step_height);
274 struct v4l2_fmtdesc vfd = { .type = V4L2_BUF_TYPE_VIDEO_CAPTURE };
276 while(!
v4l2_ioctl(fd, VIDIOC_ENUM_FMT, &vfd)) {
282 if (!(vfd.flags & V4L2_FMT_FLAG_COMPRESSED) &&
286 fmt_name ? fmt_name :
"Unsupported",
288 }
else if (vfd.flags & V4L2_FMT_FLAG_COMPRESSED &&
292 codec ? codec->
name :
"Unsupported",
298 #ifdef V4L2_FMT_FLAG_EMULATED
299 if (vfd.flags & V4L2_FMT_FLAG_EMULATED)
302 #if HAVE_STRUCT_V4L2_FRMIVALENUM_DISCRETE
303 list_framesizes(ctx, fd, vfd.pixelformat);
313 struct v4l2_standard standard;
318 for (standard.index = 0; ; standard.index++) {
329 standard.index, (uint64_t)standard.id, standard.name);
337 struct v4l2_requestbuffers req = {
338 .type = V4L2_BUF_TYPE_VIDEO_CAPTURE,
340 .memory = V4L2_MEMORY_MMAP
366 for (i = 0; i < req.count; i++) {
367 struct v4l2_buffer buf = {
368 .type = V4L2_BUF_TYPE_VIDEO_CAPTURE,
370 .memory = V4L2_MEMORY_MMAP
381 "buf_len[%d] = %d < expected frame size %d\n",
386 PROT_READ | PROT_WRITE, MAP_SHARED,
387 s->
fd, buf.m.offset);
399 #if FF_API_DESTRUCT_PACKET
408 struct v4l2_buffer buf = { 0 };
410 struct buff_data *buf_descriptor = opaque;
413 buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
414 buf.memory = V4L2_MEMORY_MMAP;
415 buf.index = buf_descriptor->
index;
427 #if HAVE_CLOCK_GETTIME && defined(CLOCK_MONOTONIC)
428 static int64_t av_gettime_monotonic(
void)
432 clock_gettime(CLOCK_MONOTONIC, &tv);
433 return (int64_t)tv.tv_sec * 1000000 + tv.tv_nsec / 1000;
444 ts <= now + 1 * AV_TIME_BASE && ts >= now - 10 *
AV_TIME_BASE) {
449 #if HAVE_CLOCK_GETTIME && defined(CLOCK_MONOTONIC)
450 now = av_gettime_monotonic();
452 (ts <= now + 1 * AV_TIME_BASE && ts >= now - 10 *
AV_TIME_BASE)) {
477 #if HAVE_CLOCK_GETTIME && defined(CLOCK_MONOTONIC)
480 int64_t nowm = av_gettime_monotonic();
492 struct v4l2_buffer buf = {
493 .type = V4L2_BUF_TYPE_VIDEO_CAPTURE,
494 .memory = V4L2_MEMORY_MMAP
499 while ((res =
v4l2_ioctl(s->
fd, VIDIOC_DQBUF, &buf)) < 0 && (errno == EINTR));
501 if (errno == EAGAIN) {
526 "The v4l2 frame is %d bytes, but %d bytes are expected\n",
554 pkt->
size = buf.bytesused;
555 #if FF_API_DESTRUCT_PACKET
557 pkt->destruct = dummy_release_buffer;
562 if (buf_descriptor == NULL) {
572 buf_descriptor->index = buf.index;
573 buf_descriptor->s =
s;
585 pkt->
pts = buf.timestamp.tv_sec * INT64_C(1000000) + buf.timestamp.tv_usec;
594 enum v4l2_buf_type
type;
597 for (i = 0; i < s->
buffers; i++) {
598 struct v4l2_buffer buf = {
599 .type = V4L2_BUF_TYPE_VIDEO_CAPTURE,
601 .memory = V4L2_MEMORY_MMAP
612 type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
624 enum v4l2_buf_type
type;
627 type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
632 for (i = 0; i < s->
buffers; i++) {
642 struct v4l2_standard standard = { 0 };
643 struct v4l2_streamparm streamparm = { 0 };
644 struct v4l2_fract *tpf;
674 if (
v4l2_ioctl(s->
fd, VIDIOC_S_STD, &standard.id) < 0) {
681 "This device does not support any standard\n");
687 tpf = &standard.frameperiod;
693 tpf = &streamparm.parm.capture.timeperframe;
699 if (standard.id == s->
std_id) {
701 "Current standard: %s, id: %"PRIx64
", frameperiod: %d/%d\n",
702 standard.name, (uint64_t)standard.id, tpf->numerator, tpf->denominator);
707 tpf = &streamparm.parm.capture.timeperframe;
710 streamparm.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
711 if (
v4l2_ioctl(s->
fd, VIDIOC_G_PARM, &streamparm) < 0) {
717 if (framerate_q.
num && framerate_q.
den) {
718 if (streamparm.parm.capture.capability & V4L2_CAP_TIMEPERFRAME) {
719 tpf = &streamparm.parm.capture.timeperframe;
722 framerate_q.
den, framerate_q.
num);
723 tpf->numerator = framerate_q.
den;
724 tpf->denominator = framerate_q.
num;
726 if (
v4l2_ioctl(s->
fd, VIDIOC_S_PARM, &streamparm) < 0) {
732 if (framerate_q.
num != tpf->denominator ||
733 framerate_q.
den != tpf->numerator) {
735 "The driver changed the time per frame from "
737 framerate_q.
den, framerate_q.
num,
738 tpf->numerator, tpf->denominator);
742 "The driver does not allow to change time per frame\n");
756 uint32_t *desired_format,
763 if (*desired_format) {
764 ret =
device_init(s1, width, height, *desired_format);
772 if (!*desired_format) {
781 ret =
device_init(s1, width, height, *desired_format);
784 else if (ret !=
AVERROR(EINVAL))
790 if (*desired_format == 0) {
792 "codec '%s' (id %d), pixel format '%s' (id %d)\n",
809 uint32_t desired_format;
812 struct v4l2_input input = { 0 };
822 v4l2_log_file = fopen(
"/dev/null",
"w");
854 av_log(s1,
AV_LOG_DEBUG,
"Current input_channel: %d, input_name: %s, input_std: %"PRIx64
"\n",
855 s->
channel, input.name, (uint64_t)input.std);
886 struct v4l2_format fmt = { .type = V4L2_BUF_TYPE_VIDEO_CAPTURE };
889 "Querying the device for the current frame size\n");
896 s->
width = fmt.fmt.pix.width;
897 s->
height = fmt.fmt.pix.height;
899 "Setting frame size to %dx%d\n", s->
width, s->
height);
943 if (desired_format == V4L2_PIX_FMT_YVU420)
945 else if (desired_format == V4L2_PIX_FMT_YVU410)
987 #define OFFSET(x) offsetof(struct video_data, x)
988 #define DEC AV_OPT_FLAG_DECODING_PARAM
1023 .
name =
"video4linux2,v4l2",