libavdevice/v4l2.c
0a7b514f
 /*
406792e7
  * Copyright (c) 2000,2001 Fabrice Bellard
  * Copyright (c) 2006 Luca Abeni
0a7b514f
  *
b78e7197
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
0a7b514f
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
b78e7197
  * version 2.1 of the License, or (at your option) any later version.
0a7b514f
  *
b78e7197
  * FFmpeg is distributed in the hope that it will be useful,
0a7b514f
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
b78e7197
  * License along with FFmpeg; if not, write to the Free Software
0a7b514f
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
b0067549
 
895e4de8
 /**
  * @file
  * Video4Linux2 grab interface
  *
  * Part of this file is based on the V4L2 video capture example
f245a208
  * (http://linuxtv.org/downloads/v4l-dvb-apis/capture-example.html)
895e4de8
  *
  * Thanks to Michael Niedermayer for providing the mapping between
ac627b3d
  * V4L2_PIX_FMT_* and AV_PIX_FMT_*
895e4de8
  */
 
3a165c18
 #include <stdatomic.h>
b7336faa
 
8eec6553
 #include "v4l2-common.h"
ea0ac11f
 #include <dirent.h>
0a7b514f
 
1054ab35
 #if CONFIG_LIBV4L2
 #include <libv4l2.h>
 #endif
 
0a7b514f
 static const int desired_video_buffers = 256;
 
a6a4793d
 #define V4L_ALLFORMATS  3
 #define V4L_RAWFORMATS  1
 #define V4L_COMPFORMATS 2
0a7b514f
 
12292f35
 /**
  * Return timestamps to the user exactly as returned by the kernel
  */
 #define V4L_TS_DEFAULT  0
 /**
  * Autodetect the kind of timestamps returned by the kernel and convert to
  * absolute (wall clock) timestamps.
  */
 #define V4L_TS_ABS      1
 /**
  * Assume kernel timestamps are from the monotonic clock and convert to
  * absolute timestamps.
  */
 #define V4L_TS_MONO2ABS 2
 
 /**
  * Once the kind of timestamps returned by the kernel have been detected,
  * the value of the timefilter (NULL or not) determines whether a conversion
  * takes place.
  */
 #define V4L_TS_CONVERT_READY V4L_TS_DEFAULT
 
0a7b514f
 struct video_data {
b3da2692
     AVClass *class;
0a7b514f
     int fd;
be0356ca
     int pixelformat; /* V4L2_PIX_FMT_* */
0a7b514f
     int width, height;
     int frame_size;
af7123b2
     int interlaced;
0a7b514f
     int top_field_first;
12292f35
     int ts_mode;
     TimeFilter *timefilter;
     int64_t last_time_m;
0a7b514f
 
     int buffers;
3a165c18
     atomic_int buffers_queued;
0a7b514f
     void **buf_start;
     unsigned int *buf_len;
b3da2692
     char *standard;
93d319a5
     v4l2_std_id std_id;
a02fd06a
     int channel;
d576bbf3
     char *pixel_format; /**< Set by a private option. */
a6a4793d
     int list_format;    /**< Set by a private option. */
ff23b768
     int list_standard;  /**< Set by a private option. */
c21324ee
     char *framerate;    /**< Set by a private option. */
165bc9ca
 
     int use_libv4l2;
     int (*open_f)(const char *file, int oflag, ...);
     int (*close_f)(int fd);
     int (*dup_f)(int fd);
     int (*ioctl_f)(int fd, unsigned long int request, ...);
     ssize_t (*read_f)(int fd, void *buffer, size_t n);
     void *(*mmap_f)(void *start, size_t length, int prot, int flags, int fd, int64_t offset);
     int (*munmap_f)(void *_start, size_t length);
0a7b514f
 };
 
41536a60
 struct buff_data {
1afddbe5
     struct video_data *s;
41536a60
     int index;
 };
 
eb89b4fc
 static int device_open(AVFormatContext *ctx)
0a7b514f
 {
165bc9ca
     struct video_data *s = ctx->priv_data;
0a7b514f
     struct v4l2_capability cap;
     int fd;
715ccc2b
     int err;
653387d8
     int flags = O_RDWR;
0a7b514f
 
165bc9ca
 #define SET_WRAPPERS(prefix) do {       \
     s->open_f   = prefix ## open;       \
     s->close_f  = prefix ## close;      \
     s->dup_f    = prefix ## dup;        \
     s->ioctl_f  = prefix ## ioctl;      \
     s->read_f   = prefix ## read;       \
     s->mmap_f   = prefix ## mmap;       \
     s->munmap_f = prefix ## munmap;     \
 } while (0)
 
     if (s->use_libv4l2) {
 #if CONFIG_LIBV4L2
         SET_WRAPPERS(v4l2_);
 #else
d64d6edf
         av_log(ctx, AV_LOG_ERROR, "libavdevice is not built with libv4l2 support.\n");
165bc9ca
         return AVERROR(EINVAL);
 #endif
     } else {
         SET_WRAPPERS();
     }
 
 #define v4l2_open   s->open_f
 #define v4l2_close  s->close_f
 #define v4l2_dup    s->dup_f
 #define v4l2_ioctl  s->ioctl_f
 #define v4l2_read   s->read_f
 #define v4l2_mmap   s->mmap_f
 #define v4l2_munmap s->munmap_f
 
653387d8
     if (ctx->flags & AVFMT_FLAG_NONBLOCK) {
         flags |= O_NONBLOCK;
     }
a896d7f4
 
1054ab35
     fd = v4l2_open(ctx->filename, flags, 0);
0a7b514f
     if (fd < 0) {
a1a25988
         err = AVERROR(errno);
fce16502
         av_log(ctx, AV_LOG_ERROR, "Cannot open video device %s: %s\n",
715ccc2b
                ctx->filename, av_err2str(err));
a1a25988
         return err;
0a7b514f
     }
 
60950adc
     if (v4l2_ioctl(fd, VIDIOC_QUERYCAP, &cap) < 0) {
09f25533
         err = AVERROR(errno);
c7238c72
         av_log(ctx, AV_LOG_ERROR, "ioctl(VIDIOC_QUERYCAP): %s\n",
715ccc2b
                av_err2str(err));
eb89b4fc
         goto fail;
0a7b514f
     }
a896d7f4
 
fce16502
     av_log(ctx, AV_LOG_VERBOSE, "fd:%d capabilities:%x\n",
eb89b4fc
            fd, cap.capabilities);
 
     if (!(cap.capabilities & V4L2_CAP_VIDEO_CAPTURE)) {
         av_log(ctx, AV_LOG_ERROR, "Not a video capture device.\n");
09f25533
         err = AVERROR(ENODEV);
eb89b4fc
         goto fail;
0a7b514f
     }
a896d7f4
 
eb89b4fc
     if (!(cap.capabilities & V4L2_CAP_STREAMING)) {
         av_log(ctx, AV_LOG_ERROR,
                "The device does not support the streaming I/O method.\n");
09f25533
         err = AVERROR(ENOSYS);
eb89b4fc
         goto fail;
0a7b514f
     }
 
     return fd;
eb89b4fc
 
 fail:
7f83db31
     v4l2_close(fd);
09f25533
     return err;
0a7b514f
 }
 
a896d7f4
 static int device_init(AVFormatContext *ctx, int *width, int *height,
be0356ca
                        uint32_t pixelformat)
0a7b514f
 {
c7238c72
     struct video_data *s = ctx->priv_data;
b6db3859
     struct v4l2_format fmt = { .type = V4L2_BUF_TYPE_VIDEO_CAPTURE };
0e79fe37
     int res = 0;
0a7b514f
 
be0356ca
     fmt.fmt.pix.width = *width;
     fmt.fmt.pix.height = *height;
     fmt.fmt.pix.pixelformat = pixelformat;
     fmt.fmt.pix.field = V4L2_FIELD_ANY;
a896d7f4
 
be0356ca
     /* Some drivers will fail and return EINVAL when the pixelformat
        is not supported (even if type field is valid and supported) */
55cf7d97
     if (v4l2_ioctl(s->fd, VIDIOC_S_FMT, &fmt) < 0)
aa359d38
         res = AVERROR(errno);
a896d7f4
 
24300af4
     if ((*width != fmt.fmt.pix.width) || (*height != fmt.fmt.pix.height)) {
a896d7f4
         av_log(ctx, AV_LOG_INFO,
                "The V4L2 driver changed the video from %dx%d to %dx%d\n",
                *width, *height, fmt.fmt.pix.width, fmt.fmt.pix.height);
24300af4
         *width = fmt.fmt.pix.width;
         *height = fmt.fmt.pix.height;
     }
 
be0356ca
     if (pixelformat != fmt.fmt.pix.pixelformat) {
a896d7f4
         av_log(ctx, AV_LOG_DEBUG,
                "The V4L2 driver changed the pixel format "
                "from 0x%08X to 0x%08X\n",
be0356ca
                pixelformat, fmt.fmt.pix.pixelformat);
aa359d38
         res = AVERROR(EINVAL);
3d0d9a5e
     }
 
af7123b2
     if (fmt.fmt.pix.field == V4L2_FIELD_INTERLACED) {
36810215
         av_log(ctx, AV_LOG_DEBUG,
                "The V4L2 driver is using the interlaced mode\n");
af7123b2
         s->interlaced = 1;
     }
 
24300af4
     return res;
0a7b514f
 }
 
3da359c1
 static int first_field(const struct video_data *s)
0a7b514f
 {
     int res;
     v4l2_std_id std;
 
3da359c1
     res = v4l2_ioctl(s->fd, VIDIOC_G_STD, &std);
     if (res < 0)
0a7b514f
         return 0;
3da359c1
     if (std & V4L2_STD_NTSC)
0a7b514f
         return 0;
 
     return 1;
 }
 
a6a4793d
 #if HAVE_STRUCT_V4L2_FRMIVALENUM_DISCRETE
7865cafe
 static void list_framesizes(AVFormatContext *ctx, uint32_t pixelformat)
a6a4793d
 {
165bc9ca
     const struct video_data *s = ctx->priv_data;
a6a4793d
     struct v4l2_frmsizeenum vfse = { .pixel_format = pixelformat };
 
7865cafe
     while(!v4l2_ioctl(s->fd, VIDIOC_ENUM_FRAMESIZES, &vfse)) {
a6a4793d
         switch (vfse.type) {
         case V4L2_FRMSIZE_TYPE_DISCRETE:
             av_log(ctx, AV_LOG_INFO, " %ux%u",
                    vfse.discrete.width, vfse.discrete.height);
         break;
         case V4L2_FRMSIZE_TYPE_CONTINUOUS:
         case V4L2_FRMSIZE_TYPE_STEPWISE:
             av_log(ctx, AV_LOG_INFO, " {%u-%u, %u}x{%u-%u, %u}",
                    vfse.stepwise.min_width,
                    vfse.stepwise.max_width,
                    vfse.stepwise.step_width,
                    vfse.stepwise.min_height,
                    vfse.stepwise.max_height,
                    vfse.stepwise.step_height);
         }
         vfse.index++;
     }
 }
 #endif
 
0b890425
 static void list_formats(AVFormatContext *ctx, int type)
a6a4793d
 {
165bc9ca
     const struct video_data *s = ctx->priv_data;
a6a4793d
     struct v4l2_fmtdesc vfd = { .type = V4L2_BUF_TYPE_VIDEO_CAPTURE };
 
0b890425
     while(!v4l2_ioctl(s->fd, VIDIOC_ENUM_FMT, &vfd)) {
931da6a5
         enum AVCodecID codec_id = ff_fmt_v4l2codec(vfd.pixelformat);
         enum AVPixelFormat pix_fmt = ff_fmt_v4l2ff(vfd.pixelformat, codec_id);
a6a4793d
 
         vfd.index++;
 
         if (!(vfd.flags & V4L2_FMT_FLAG_COMPRESSED) &&
             type & V4L_RAWFORMATS) {
             const char *fmt_name = av_get_pix_fmt_name(pix_fmt);
f8598cef
             av_log(ctx, AV_LOG_INFO, "Raw       : %11s : %20s :",
a6a4793d
                    fmt_name ? fmt_name : "Unsupported",
                    vfd.description);
         } else if (vfd.flags & V4L2_FMT_FLAG_COMPRESSED &&
                    type & V4L_COMPFORMATS) {
619d5e7d
             const AVCodecDescriptor *desc = avcodec_descriptor_get(codec_id);
f8598cef
             av_log(ctx, AV_LOG_INFO, "Compressed: %11s : %20s :",
619d5e7d
                    desc ? desc->name : "Unsupported",
a6a4793d
                    vfd.description);
         } else {
             continue;
         }
 
f13a9ca9
 #ifdef V4L2_FMT_FLAG_EMULATED
5009863a
         if (vfd.flags & V4L2_FMT_FLAG_EMULATED)
             av_log(ctx, AV_LOG_INFO, " Emulated :");
f13a9ca9
 #endif
a6a4793d
 #if HAVE_STRUCT_V4L2_FRMIVALENUM_DISCRETE
7865cafe
         list_framesizes(ctx, vfd.pixelformat);
a6a4793d
 #endif
         av_log(ctx, AV_LOG_INFO, "\n");
     }
 }
 
ff23b768
 static void list_standards(AVFormatContext *ctx)
 {
     int ret;
     struct video_data *s = ctx->priv_data;
     struct v4l2_standard standard;
 
     if (s->std_id == 0)
         return;
 
     for (standard.index = 0; ; standard.index++) {
60950adc
         if (v4l2_ioctl(s->fd, VIDIOC_ENUMSTD, &standard) < 0) {
             ret = AVERROR(errno);
             if (ret == AVERROR(EINVAL)) {
ff23b768
                 break;
60950adc
             } else {
                 av_log(ctx, AV_LOG_ERROR, "ioctl(VIDIOC_ENUMSTD): %s\n", av_err2str(ret));
ff23b768
                 return;
             }
         }
7f6ec05f
         av_log(ctx, AV_LOG_INFO, "%2d, %16"PRIx64", %s\n",
                standard.index, (uint64_t)standard.id, standard.name);
ff23b768
     }
 }
 
c7238c72
 static int mmap_init(AVFormatContext *ctx)
0a7b514f
 {
     int i, res;
b6db3859
     struct video_data *s = ctx->priv_data;
     struct v4l2_requestbuffers req = {
         .type   = V4L2_BUF_TYPE_VIDEO_CAPTURE,
         .count  = desired_video_buffers,
         .memory = V4L2_MEMORY_MMAP
     };
0a7b514f
 
60950adc
     if (v4l2_ioctl(s->fd, VIDIOC_REQBUFS, &req) < 0) {
         res = AVERROR(errno);
         av_log(ctx, AV_LOG_ERROR, "ioctl(VIDIOC_REQBUFS): %s\n", av_err2str(res));
         return res;
0a7b514f
     }
 
     if (req.count < 2) {
c7238c72
         av_log(ctx, AV_LOG_ERROR, "Insufficient buffer memory\n");
c57a8fef
         return AVERROR(ENOMEM);
0a7b514f
     }
     s->buffers = req.count;
124c94a1
     s->buf_start = av_malloc_array(s->buffers, sizeof(void *));
f929ab05
     if (!s->buf_start) {
c7238c72
         av_log(ctx, AV_LOG_ERROR, "Cannot allocate buffer pointers\n");
c57a8fef
         return AVERROR(ENOMEM);
0a7b514f
     }
124c94a1
     s->buf_len = av_malloc_array(s->buffers, sizeof(unsigned int));
f929ab05
     if (!s->buf_len) {
c7238c72
         av_log(ctx, AV_LOG_ERROR, "Cannot allocate buffer sizes\n");
eb725235
         av_freep(&s->buf_start);
c57a8fef
         return AVERROR(ENOMEM);
0a7b514f
     }
 
     for (i = 0; i < req.count; i++) {
b6db3859
         struct v4l2_buffer buf = {
             .type   = V4L2_BUF_TYPE_VIDEO_CAPTURE,
             .index  = i,
             .memory = V4L2_MEMORY_MMAP
         };
60950adc
         if (v4l2_ioctl(s->fd, VIDIOC_QUERYBUF, &buf) < 0) {
             res = AVERROR(errno);
             av_log(ctx, AV_LOG_ERROR, "ioctl(VIDIOC_QUERYBUF): %s\n", av_err2str(res));
             return res;
0a7b514f
         }
 
         s->buf_len[i] = buf.length;
3db77ccf
         if (s->frame_size > 0 && s->buf_len[i] < s->frame_size) {
a896d7f4
             av_log(ctx, AV_LOG_ERROR,
60950adc
                    "buf_len[%d] = %d < expected frame size %d\n",
a896d7f4
                    i, s->buf_len[i], s->frame_size);
60950adc
             return AVERROR(ENOMEM);
0a7b514f
         }
1054ab35
         s->buf_start[i] = v4l2_mmap(NULL, buf.length,
a896d7f4
                                PROT_READ | PROT_WRITE, MAP_SHARED,
                                s->fd, buf.m.offset);
 
0a7b514f
         if (s->buf_start[i] == MAP_FAILED) {
60950adc
             res = AVERROR(errno);
             av_log(ctx, AV_LOG_ERROR, "mmap: %s\n", av_err2str(res));
             return res;
0a7b514f
         }
     }
 
     return 0;
 }
 
d7e08884
 static int enqueue_buffer(struct video_data *s, struct v4l2_buffer *buf)
 {
     int res = 0;
 
     if (v4l2_ioctl(s->fd, VIDIOC_QBUF, buf) < 0) {
         res = AVERROR(errno);
         av_log(NULL, AV_LOG_ERROR, "ioctl(VIDIOC_QBUF): %s\n", av_err2str(res));
     } else {
b7336faa
         atomic_fetch_add(&s->buffers_queued, 1);
d7e08884
     }
 
     return res;
 }
 
1afddbe5
 static void mmap_release_buffer(void *opaque, uint8_t *data)
41536a60
 {
b6db3859
     struct v4l2_buffer buf = { 0 };
1afddbe5
     struct buff_data *buf_descriptor = opaque;
     struct video_data *s = buf_descriptor->s;
5449a787
 
41536a60
     buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
     buf.memory = V4L2_MEMORY_MMAP;
     buf.index = buf_descriptor->index;
     av_free(buf_descriptor);
 
d7e08884
     enqueue_buffer(s, &buf);
41536a60
 }
 
12292f35
 #if HAVE_CLOCK_GETTIME && defined(CLOCK_MONOTONIC)
 static int64_t av_gettime_monotonic(void)
 {
0a150670
     return av_gettime_relative();
12292f35
 }
 #endif
 
 static int init_convert_timestamp(AVFormatContext *ctx, int64_t ts)
 {
     struct video_data *s = ctx->priv_data;
     int64_t now;
 
     now = av_gettime();
     if (s->ts_mode == V4L_TS_ABS &&
         ts <= now + 1 * AV_TIME_BASE && ts >= now - 10 * AV_TIME_BASE) {
         av_log(ctx, AV_LOG_INFO, "Detected absolute timestamps\n");
         s->ts_mode = V4L_TS_CONVERT_READY;
         return 0;
     }
 #if HAVE_CLOCK_GETTIME && defined(CLOCK_MONOTONIC)
0997c250
     if (ctx->streams[0]->avg_frame_rate.num) {
         now = av_gettime_monotonic();
         if (s->ts_mode == V4L_TS_MONO2ABS ||
             (ts <= now + 1 * AV_TIME_BASE && ts >= now - 10 * AV_TIME_BASE)) {
             AVRational tb = {AV_TIME_BASE, 1};
             int64_t period = av_rescale_q(1, tb, ctx->streams[0]->avg_frame_rate);
             av_log(ctx, AV_LOG_INFO, "Detected monotonic timestamps, converting\n");
             /* microseconds instead of seconds, MHz instead of Hz */
             s->timefilter = ff_timefilter_new(1, period, 1.0E-6);
             if (!s->timefilter)
                 return AVERROR(ENOMEM);
             s->ts_mode = V4L_TS_CONVERT_READY;
             return 0;
         }
12292f35
     }
 #endif
     av_log(ctx, AV_LOG_ERROR, "Unknown timestamps\n");
     return AVERROR(EIO);
 }
 
 static int convert_timestamp(AVFormatContext *ctx, int64_t *ts)
 {
     struct video_data *s = ctx->priv_data;
 
     if (s->ts_mode) {
         int r = init_convert_timestamp(ctx, *ts);
         if (r < 0)
             return r;
     }
 #if HAVE_CLOCK_GETTIME && defined(CLOCK_MONOTONIC)
     if (s->timefilter) {
         int64_t nowa = av_gettime();
         int64_t nowm = av_gettime_monotonic();
         ff_timefilter_update(s->timefilter, nowa, nowm - s->last_time_m);
         s->last_time_m = nowm;
         *ts = ff_timefilter_eval(s->timefilter, *ts - nowm);
     }
 #endif
     return 0;
 }
 
41536a60
 static int mmap_read_frame(AVFormatContext *ctx, AVPacket *pkt)
0a7b514f
 {
c7238c72
     struct video_data *s = ctx->priv_data;
b6db3859
     struct v4l2_buffer buf = {
         .type   = V4L2_BUF_TYPE_VIDEO_CAPTURE,
         .memory = V4L2_MEMORY_MMAP
     };
00a1e133
     struct timeval buf_ts;
0a7b514f
     int res;
 
28f20d2f
     pkt->size = 0;
 
0a7b514f
     /* FIXME: Some special treatment might be needed in case of loss of signal... */
1054ab35
     while ((res = v4l2_ioctl(s->fd, VIDIOC_DQBUF, &buf)) < 0 && (errno == EINTR));
0a7b514f
     if (res < 0) {
28f20d2f
         if (errno == EAGAIN)
653387d8
             return AVERROR(EAGAIN);
28f20d2f
 
60950adc
         res = AVERROR(errno);
a896d7f4
         av_log(ctx, AV_LOG_ERROR, "ioctl(VIDIOC_DQBUF): %s\n",
d99653c9
                av_err2str(res));
60950adc
         return res;
0a7b514f
     }
49dc82ee
 
00a1e133
     buf_ts = buf.timestamp;
 
49dc82ee
     if (buf.index >= s->buffers) {
         av_log(ctx, AV_LOG_ERROR, "Invalid buffer index received.\n");
         return AVERROR(EINVAL);
     }
3a165c18
     atomic_fetch_add(&s->buffers_queued, -1);
1afddbe5
     // always keep at least one buffer queued
3a165c18
     av_assert0(atomic_load(&s->buffers_queued) >= 1);
6eac5546
 
d1d8ee5e
 #ifdef V4L2_BUF_FLAG_ERROR
28f20d2f
     if (buf.flags & V4L2_BUF_FLAG_ERROR) {
         av_log(ctx, AV_LOG_WARNING,
                "Dequeued v4l2 buffer contains corrupted data (%d bytes).\n",
                buf.bytesused);
         buf.bytesused = 0;
d1d8ee5e
     } else
 #endif
     {
28f20d2f
         /* CPIA is a compressed format and we don't know the exact number of bytes
          * used by a frame, so set it here as the driver announces it. */
         if (ctx->video_codec_id == AV_CODEC_ID_CPIA)
             s->frame_size = buf.bytesused;
6eac5546
 
28f20d2f
         if (s->frame_size > 0 && buf.bytesused != s->frame_size) {
             av_log(ctx, AV_LOG_ERROR,
                    "Dequeued v4l2 buffer contains %d bytes, but %d were expected. Flags: 0x%08X.\n",
                    buf.bytesused, s->frame_size, buf.flags);
             enqueue_buffer(s, &buf);
             return AVERROR_INVALIDDATA;
         }
7c7e7464
     }
 
0a7b514f
     /* Image is at s->buff_start[buf.index] */
3a165c18
     if (atomic_load(&s->buffers_queued) == FFMAX(s->buffers / 8, 1)) {
a5f88736
         /* when we start getting low on queued buffers, fall back on copying data */
1afddbe5
         res = av_new_packet(pkt, buf.bytesused);
         if (res < 0) {
             av_log(ctx, AV_LOG_ERROR, "Error allocating a packet.\n");
d7e08884
             enqueue_buffer(s, &buf);
0d66268e
             return res;
         }
         memcpy(pkt->data, s->buf_start[buf.index], buf.bytesused);
1afddbe5
 
d7e08884
         res = enqueue_buffer(s, &buf);
         if (res) {
ce70f28a
             av_packet_unref(pkt);
0286b425
             return res;
1afddbe5
         }
0d66268e
     } else {
1afddbe5
         struct buff_data *buf_descriptor;
0a7b514f
 
1afddbe5
         pkt->data     = s->buf_start[buf.index];
         pkt->size     = buf.bytesused;
 
         buf_descriptor = av_malloc(sizeof(struct buff_data));
f929ab05
         if (!buf_descriptor) {
1afddbe5
             /* Something went wrong... Since av_malloc() failed, we cannot even
              * allocate a buffer for memcpying into it
              */
             av_log(ctx, AV_LOG_ERROR, "Failed to allocate a buffer descriptor\n");
d7e08884
             enqueue_buffer(s, &buf);
1afddbe5
 
             return AVERROR(ENOMEM);
         }
0d66268e
         buf_descriptor->index = buf.index;
1afddbe5
         buf_descriptor->s     = s;
 
         pkt->buf = av_buffer_create(pkt->data, pkt->size, mmap_release_buffer,
                                     buf_descriptor, 0);
         if (!pkt->buf) {
0286b425
             av_log(ctx, AV_LOG_ERROR, "Failed to create a buffer\n");
d7e08884
             enqueue_buffer(s, &buf);
1afddbe5
             av_freep(&buf_descriptor);
             return AVERROR(ENOMEM);
         }
0d66268e
     }
00a1e133
     pkt->pts = buf_ts.tv_sec * INT64_C(1000000) + buf_ts.tv_usec;
2653e125
     convert_timestamp(ctx, &pkt->pts);
0a7b514f
 
28f20d2f
     return pkt->size;
0a7b514f
 }
 
c7238c72
 static int mmap_start(AVFormatContext *ctx)
0a7b514f
 {
c7238c72
     struct video_data *s = ctx->priv_data;
0a7b514f
     enum v4l2_buf_type type;
     int i, res;
 
     for (i = 0; i < s->buffers; i++) {
b6db3859
         struct v4l2_buffer buf = {
             .type   = V4L2_BUF_TYPE_VIDEO_CAPTURE,
             .index  = i,
             .memory = V4L2_MEMORY_MMAP
         };
0a7b514f
 
60950adc
         if (v4l2_ioctl(s->fd, VIDIOC_QBUF, &buf) < 0) {
             res = AVERROR(errno);
a896d7f4
             av_log(ctx, AV_LOG_ERROR, "ioctl(VIDIOC_QBUF): %s\n",
d99653c9
                    av_err2str(res));
60950adc
             return res;
0a7b514f
         }
     }
3a165c18
     atomic_store(&s->buffers_queued, s->buffers);
0a7b514f
 
     type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
60950adc
     if (v4l2_ioctl(s->fd, VIDIOC_STREAMON, &type) < 0) {
         res = AVERROR(errno);
a896d7f4
         av_log(ctx, AV_LOG_ERROR, "ioctl(VIDIOC_STREAMON): %s\n",
d99653c9
                av_err2str(res));
60950adc
         return res;
0a7b514f
     }
 
     return 0;
 }
 
 static void mmap_close(struct video_data *s)
 {
     enum v4l2_buf_type type;
     int i;
 
     type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
     /* We do not check for the result, because we could
      * not do anything about it anyway...
      */
1054ab35
     v4l2_ioctl(s->fd, VIDIOC_STREAMOFF, &type);
0a7b514f
     for (i = 0; i < s->buffers; i++) {
1054ab35
         v4l2_munmap(s->buf_start[i], s->buf_len[i]);
0a7b514f
     }
eb725235
     av_freep(&s->buf_start);
     av_freep(&s->buf_len);
0a7b514f
 }
 
39750b73
 static int v4l2_set_parameters(AVFormatContext *ctx)
f5ad81f5
 {
39750b73
     struct video_data *s = ctx->priv_data;
b6db3859
     struct v4l2_standard standard = { 0 };
5d3d238f
     struct v4l2_streamparm streamparm = { 0 };
514216d8
     struct v4l2_fract *tpf;
b6db3859
     AVRational framerate_q = { 0 };
7533a727
     int i, ret;
f5ad81f5
 
a896d7f4
     if (s->framerate &&
         (ret = av_parse_video_rate(&framerate_q, s->framerate)) < 0) {
39750b73
         av_log(ctx, AV_LOG_ERROR, "Could not parse framerate '%s'.\n",
a896d7f4
                s->framerate);
c21324ee
         return ret;
     }
f5ad81f5
 
b3da2692
     if (s->standard) {
514216d8
         if (s->std_id) {
f0703b6c
             ret = 0;
39750b73
             av_log(ctx, AV_LOG_DEBUG, "Setting standard: %s\n", s->standard);
514216d8
             /* set tv standard */
             for (i = 0; ; i++) {
                 standard.index = i;
f0703b6c
                 if (v4l2_ioctl(s->fd, VIDIOC_ENUMSTD, &standard) < 0) {
60950adc
                     ret = AVERROR(errno);
f0703b6c
                     break;
                 }
                 if (!av_strcasecmp(standard.name, s->standard))
514216d8
                     break;
             }
             if (ret < 0) {
39750b73
                 av_log(ctx, AV_LOG_ERROR, "Unknown or unsupported standard '%s'\n", s->standard);
60950adc
                 return ret;
514216d8
             }
 
             if (v4l2_ioctl(s->fd, VIDIOC_S_STD, &standard.id) < 0) {
60950adc
                 ret = AVERROR(errno);
39750b73
                 av_log(ctx, AV_LOG_ERROR, "ioctl(VIDIOC_S_STD): %s\n", av_err2str(ret));
60950adc
                 return ret;
514216d8
             }
         } else {
39750b73
             av_log(ctx, AV_LOG_WARNING,
514216d8
                    "This device does not support any standard\n");
         }
     }
 
     /* get standard */
     if (v4l2_ioctl(s->fd, VIDIOC_G_STD, &s->std_id) == 0) {
         tpf = &standard.frameperiod;
         for (i = 0; ; i++) {
e4dd03f3
             standard.index = i;
60950adc
             if (v4l2_ioctl(s->fd, VIDIOC_ENUMSTD, &standard) < 0) {
                 ret = AVERROR(errno);
c5f43c88
                 if (ret == AVERROR(EINVAL)
 #ifdef ENODATA
                     || ret == AVERROR(ENODATA)
 #endif
                 ) {
ed725425
                     tpf = &streamparm.parm.capture.timeperframe;
                     break;
                 }
39750b73
                 av_log(ctx, AV_LOG_ERROR, "ioctl(VIDIOC_ENUMSTD): %s\n", av_err2str(ret));
60950adc
                 return ret;
514216d8
             }
             if (standard.id == s->std_id) {
39750b73
                 av_log(ctx, AV_LOG_DEBUG,
7f6ec05f
                        "Current standard: %s, id: %"PRIx64", frameperiod: %d/%d\n",
514216d8
                        standard.name, (uint64_t)standard.id, tpf->numerator, tpf->denominator);
e4dd03f3
                 break;
514216d8
             }
7533a727
         }
514216d8
     } else {
         tpf = &streamparm.parm.capture.timeperframe;
     }
e4dd03f3
 
514216d8
     streamparm.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
     if (v4l2_ioctl(s->fd, VIDIOC_G_PARM, &streamparm) < 0) {
60950adc
         ret = AVERROR(errno);
6fd4145a
         av_log(ctx, AV_LOG_WARNING, "ioctl(VIDIOC_G_PARM): %s\n", av_err2str(ret));
     } else if (framerate_q.num && framerate_q.den) {
514216d8
         if (streamparm.parm.capture.capability & V4L2_CAP_TIMEPERFRAME) {
             tpf = &streamparm.parm.capture.timeperframe;
 
39750b73
             av_log(ctx, AV_LOG_DEBUG, "Setting time per frame to %d/%d\n",
e60068ba
                    framerate_q.den, framerate_q.num);
514216d8
             tpf->numerator   = framerate_q.den;
             tpf->denominator = framerate_q.num;
70f77361
 
514216d8
             if (v4l2_ioctl(s->fd, VIDIOC_S_PARM, &streamparm) < 0) {
60950adc
                 ret = AVERROR(errno);
d99653c9
                 av_log(ctx, AV_LOG_ERROR, "ioctl(VIDIOC_S_PARM): %s\n",
                        av_err2str(ret));
60950adc
                 return ret;
514216d8
             }
 
             if (framerate_q.num != tpf->denominator ||
                 framerate_q.den != tpf->numerator) {
39750b73
                 av_log(ctx, AV_LOG_INFO,
514216d8
                        "The driver changed the time per frame from "
                        "%d/%d to %d/%d\n",
                        framerate_q.den, framerate_q.num,
                        tpf->numerator, tpf->denominator);
             }
         } else {
39750b73
             av_log(ctx, AV_LOG_WARNING,
482c86f2
                    "The driver does not permit changing the time per frame\n");
8621a37d
         }
70f77361
     }
4aa4533e
     if (tpf->denominator > 0 && tpf->numerator > 0) {
39750b73
         ctx->streams[0]->avg_frame_rate.num = tpf->denominator;
         ctx->streams[0]->avg_frame_rate.den = tpf->numerator;
         ctx->streams[0]->r_frame_rate = ctx->streams[0]->avg_frame_rate;
4aa4533e
     } else
39750b73
         av_log(ctx, AV_LOG_WARNING, "Time per frame unknown\n");
70f77361
 
f5ad81f5
     return 0;
 }
 
39750b73
 static int device_try_init(AVFormatContext *ctx,
5306976b
                            enum AVPixelFormat pix_fmt,
                            int *width,
                            int *height,
                            uint32_t *desired_format,
                            enum AVCodecID *codec_id)
3db77ccf
 {
5306976b
     int ret, i;
3db77ccf
 
931da6a5
     *desired_format = ff_fmt_ff2v4l(pix_fmt, ctx->video_codec_id);
3db77ccf
 
5306976b
     if (*desired_format) {
39750b73
         ret = device_init(ctx, width, height, *desired_format);
5306976b
         if (ret < 0) {
             *desired_format = 0;
             if (ret != AVERROR(EINVAL))
                 return ret;
         }
     }
 
     if (!*desired_format) {
931da6a5
         for (i = 0; ff_fmt_conversion_table[i].codec_id != AV_CODEC_ID_NONE; i++) {
39750b73
             if (ctx->video_codec_id == AV_CODEC_ID_NONE ||
931da6a5
                 ff_fmt_conversion_table[i].codec_id == ctx->video_codec_id) {
39750b73
                 av_log(ctx, AV_LOG_DEBUG, "Trying to set codec:%s pix_fmt:%s\n",
931da6a5
                        avcodec_get_name(ff_fmt_conversion_table[i].codec_id),
                        (char *)av_x_if_null(av_get_pix_fmt_name(ff_fmt_conversion_table[i].ff_fmt), "none"));
1b325ce9
 
931da6a5
                 *desired_format = ff_fmt_conversion_table[i].v4l2_fmt;
39750b73
                 ret = device_init(ctx, width, height, *desired_format);
5306976b
                 if (ret >= 0)
3db77ccf
                     break;
5306976b
                 else if (ret != AVERROR(EINVAL))
                     return ret;
                 *desired_format = 0;
3db77ccf
             }
         }
a896d7f4
 
5306976b
         if (*desired_format == 0) {
39750b73
             av_log(ctx, AV_LOG_ERROR, "Cannot find a proper format for "
5306976b
                    "codec '%s' (id %d), pixel format '%s' (id %d)\n",
39750b73
                    avcodec_get_name(ctx->video_codec_id), ctx->video_codec_id,
5306976b
                    (char *)av_x_if_null(av_get_pix_fmt_name(pix_fmt), "none"), pix_fmt);
             ret = AVERROR(EINVAL);
         }
3db77ccf
     }
 
931da6a5
     *codec_id = ff_fmt_v4l2codec(*desired_format);
5306976b
     av_assert0(*codec_id != AV_CODEC_ID_NONE);
     return ret;
3db77ccf
 }
 
b608fba6
 static int v4l2_read_probe(AVProbeData *p)
 {
     if (av_strstart(p->filename, "/dev/video", NULL))
         return AVPROBE_SCORE_MAX - 1;
     return 0;
 }
 
39750b73
 static int v4l2_read_header(AVFormatContext *ctx)
0a7b514f
 {
39750b73
     struct video_data *s = ctx->priv_data;
0a7b514f
     AVStream *st;
82b5aa0a
     int res = 0;
eb89b4fc
     uint32_t desired_format;
6eac5546
     enum AVCodecID codec_id = AV_CODEC_ID_NONE;
716d413c
     enum AVPixelFormat pix_fmt = AV_PIX_FMT_NONE;
93d319a5
     struct v4l2_input input = { 0 };
0a7b514f
 
39750b73
     st = avformat_new_stream(ctx, NULL);
246da0b1
     if (!st)
         return AVERROR(ENOMEM);
0a7b514f
 
bcd3eb3e
 #if CONFIG_LIBV4L2
     /* silence libv4l2 logging. if fopen() fails v4l2_log_file will be NULL
        and errors will get sent to stderr */
165bc9ca
     if (s->use_libv4l2)
         v4l2_log_file = fopen("/dev/null", "w");
bcd3eb3e
 #endif
 
39750b73
     s->fd = device_open(ctx);
246da0b1
     if (s->fd < 0)
         return s->fd;
eb89b4fc
 
785b849f
     if (s->channel != -1) {
         /* set video input */
39750b73
         av_log(ctx, AV_LOG_DEBUG, "Selecting input_channel: %d\n", s->channel);
785b849f
         if (v4l2_ioctl(s->fd, VIDIOC_S_INPUT, &s->channel) < 0) {
             res = AVERROR(errno);
39750b73
             av_log(ctx, AV_LOG_ERROR, "ioctl(VIDIOC_S_INPUT): %s\n", av_err2str(res));
fe8f4c71
             goto fail;
785b849f
         }
     } else {
         /* get current video input */
         if (v4l2_ioctl(s->fd, VIDIOC_G_INPUT, &s->channel) < 0) {
             res = AVERROR(errno);
39750b73
             av_log(ctx, AV_LOG_ERROR, "ioctl(VIDIOC_G_INPUT): %s\n", av_err2str(res));
fe8f4c71
             goto fail;
785b849f
         }
93d319a5
     }
 
785b849f
     /* enum input */
93d319a5
     input.index = s->channel;
     if (v4l2_ioctl(s->fd, VIDIOC_ENUMINPUT, &input) < 0) {
60950adc
         res = AVERROR(errno);
39750b73
         av_log(ctx, AV_LOG_ERROR, "ioctl(VIDIOC_ENUMINPUT): %s\n", av_err2str(res));
fe8f4c71
         goto fail;
93d319a5
     }
     s->std_id = input.std;
39750b73
     av_log(ctx, AV_LOG_DEBUG, "Current input_channel: %d, input_name: %s, input_std: %"PRIx64"\n",
7f6ec05f
            s->channel, input.name, (uint64_t)input.std);
93d319a5
 
a6a4793d
     if (s->list_format) {
0b890425
         list_formats(ctx, s->list_format);
fe8f4c71
         res = AVERROR_EXIT;
         goto fail;
d576bbf3
     }
0a7b514f
 
ff23b768
     if (s->list_standard) {
39750b73
         list_standards(ctx);
fe8f4c71
         res = AVERROR_EXIT;
         goto fail;
ff23b768
     }
 
c3f9ebf7
     avpriv_set_pts_info(st, 64, 1, 1000000); /* 64 bits pts in us */
0a7b514f
 
a6a4793d
     if (s->pixel_format) {
0fea8555
         const AVCodecDescriptor *desc = avcodec_descriptor_get_by_name(s->pixel_format);
b8c310cb
 
a0ffd66c
         if (desc)
             ctx->video_codec_id = desc->id;
a6a4793d
 
         pix_fmt = av_get_pix_fmt(s->pixel_format);
 
0fea8555
         if (pix_fmt == AV_PIX_FMT_NONE && !desc) {
39750b73
             av_log(ctx, AV_LOG_ERROR, "No such input format: %s.\n",
a6a4793d
                    s->pixel_format);
 
fe8f4c71
             res = AVERROR(EINVAL);
             goto fail;
a6a4793d
         }
d576bbf3
     }
0a7b514f
 
932d775f
     if (!s->width && !s->height) {
9dd54d74
         struct v4l2_format fmt = { .type = V4L2_BUF_TYPE_VIDEO_CAPTURE };
932d775f
 
39750b73
         av_log(ctx, AV_LOG_VERBOSE,
a896d7f4
                "Querying the device for the current frame size\n");
1054ab35
         if (v4l2_ioctl(s->fd, VIDIOC_G_FMT, &fmt) < 0) {
60950adc
             res = AVERROR(errno);
715ccc2b
             av_log(ctx, AV_LOG_ERROR, "ioctl(VIDIOC_G_FMT): %s\n",
                    av_err2str(res));
fe8f4c71
             goto fail;
932d775f
         }
a896d7f4
 
932d775f
         s->width  = fmt.fmt.pix.width;
         s->height = fmt.fmt.pix.height;
39750b73
         av_log(ctx, AV_LOG_VERBOSE,
a896d7f4
                "Setting frame size to %dx%d\n", s->width, s->height);
932d775f
     }
 
39750b73
     res = device_try_init(ctx, pix_fmt, &s->width, &s->height, &desired_format, &codec_id);
fe8f4c71
     if (res < 0)
         goto fail;
6eac5546
 
     /* If no pixel_format was specified, the codec_id was not known up
      * until now. Set video_codec_id in the context, as codec_id will
      * not be available outside this function
      */
39750b73
     if (codec_id != AV_CODEC_ID_NONE && ctx->video_codec_id == AV_CODEC_ID_NONE)
         ctx->video_codec_id = codec_id;
6eac5546
 
39750b73
     if ((res = av_image_check_size(s->width, s->height, 0, ctx)) < 0)
fe8f4c71
         goto fail;
a896d7f4
 
be0356ca
     s->pixelformat = desired_format;
0a7b514f
 
6f21fb79
     if ((res = v4l2_set_parameters(ctx)) < 0)
         goto fail;
 
6f69f7a8
     st->codecpar->format = ff_fmt_v4l2ff(desired_format, codec_id);
9d5141d1
     if (st->codecpar->format != AV_PIX_FMT_NONE)
0b607228
         s->frame_size = av_image_get_buffer_size(st->codecpar->format,
                                                  s->width, s->height, 1);
a896d7f4
 
39750b73
     if ((res = mmap_init(ctx)) ||
         (res = mmap_start(ctx)) < 0)
fe8f4c71
             goto fail;
eb89b4fc
 
3da359c1
     s->top_field_first = first_field(s);
0a7b514f
 
9200514a
     st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
     st->codecpar->codec_id = codec_id;
36ef5369
     if (codec_id == AV_CODEC_ID_RAWVIDEO)
9200514a
         st->codecpar->codec_tag =
             avcodec_pix_fmt_to_codec_tag(st->codecpar->format);
e337c9d5
     else if (codec_id == AV_CODEC_ID_H264) {
4c4f14c7
         st->need_parsing = AVSTREAM_PARSE_FULL_ONCE;
e337c9d5
     }
5fa1a1d8
     if (desired_format == V4L2_PIX_FMT_YVU420)
6f69f7a8
         st->codecpar->codec_tag = MKTAG('Y', 'V', '1', '2');
fdbe7628
     else if (desired_format == V4L2_PIX_FMT_YVU410)
6f69f7a8
         st->codecpar->codec_tag = MKTAG('Y', 'V', 'U', '9');
9200514a
     st->codecpar->width = s->width;
     st->codecpar->height = s->height;
0997c250
     if (st->avg_frame_rate.den)
6f69f7a8
         st->codecpar->bit_rate = s->frame_size * av_q2d(st->avg_frame_rate) * 8;
0a7b514f
 
246da0b1
     return 0;
fe8f4c71
 
 fail:
     v4l2_close(s->fd);
     return res;
0a7b514f
 }
 
39750b73
 static int v4l2_read_packet(AVFormatContext *ctx, AVPacket *pkt)
0a7b514f
 {
11de006b
 #if FF_API_CODED_FRAME && FF_API_LAVF_AVCTX
40cf1bba
 FF_DISABLE_DEPRECATION_WARNINGS
a4403e49
     struct video_data *s = ctx->priv_data;
39750b73
     AVFrame *frame = ctx->streams[0]->codec->coded_frame;
40cf1bba
 FF_ENABLE_DEPRECATION_WARNINGS
 #endif
0a7b514f
     int res;
 
39750b73
     if ((res = mmap_read_frame(ctx, pkt)) < 0) {
411f5c6a
         return res;
0a7b514f
     }
 
11de006b
 #if FF_API_CODED_FRAME && FF_API_LAVF_AVCTX
40cf1bba
 FF_DISABLE_DEPRECATION_WARNINGS
a896d7f4
     if (frame && s->interlaced) {
         frame->interlaced_frame = 1;
         frame->top_field_first = s->top_field_first;
0a7b514f
     }
40cf1bba
 FF_ENABLE_DEPRECATION_WARNINGS
 #endif
0a7b514f
 
158aa9f2
     return pkt->size;
0a7b514f
 }
 
39750b73
 static int v4l2_read_close(AVFormatContext *ctx)
0a7b514f
 {
39750b73
     struct video_data *s = ctx->priv_data;
0a7b514f
 
3a165c18
     if (atomic_load(&s->buffers_queued) != s->buffers)
39750b73
         av_log(ctx, AV_LOG_WARNING, "Some buffers are still owned by the caller on "
1afddbe5
                "close.\n");
 
246007d3
     mmap_close(s);
0a7b514f
 
1054ab35
     v4l2_close(s->fd);
0a7b514f
     return 0;
 }
 
ea0ac11f
 static int v4l2_is_v4l_dev(const char *name)
 {
     return !strncmp(name, "video", 5) ||
            !strncmp(name, "radio", 5) ||
            !strncmp(name, "vbi", 3) ||
            !strncmp(name, "v4l-subdev", 10);
 }
 
 static int v4l2_get_device_list(AVFormatContext *ctx, AVDeviceInfoList *device_list)
 {
     struct video_data *s = ctx->priv_data;
     DIR *dir;
     struct dirent *entry;
     AVDeviceInfo *device = NULL;
     struct v4l2_capability cap;
     int ret = 0;
 
     if (!device_list)
         return AVERROR(EINVAL);
 
     dir = opendir("/dev");
     if (!dir) {
         ret = AVERROR(errno);
         av_log(ctx, AV_LOG_ERROR, "Couldn't open the directory: %s\n", av_err2str(ret));
         return ret;
     }
     while ((entry = readdir(dir))) {
         if (!v4l2_is_v4l_dev(entry->d_name))
             continue;
 
         snprintf(ctx->filename, sizeof(ctx->filename), "/dev/%s", entry->d_name);
         if ((s->fd = device_open(ctx)) < 0)
             continue;
 
         if (v4l2_ioctl(s->fd, VIDIOC_QUERYCAP, &cap) < 0) {
             ret = AVERROR(errno);
             av_log(ctx, AV_LOG_ERROR, "ioctl(VIDIOC_QUERYCAP): %s\n", av_err2str(ret));
             goto fail;
         }
 
         device = av_mallocz(sizeof(AVDeviceInfo));
         if (!device) {
             ret = AVERROR(ENOMEM);
             goto fail;
         }
         device->device_name = av_strdup(ctx->filename);
         device->device_description = av_strdup(cap.card);
         if (!device->device_name || !device->device_description) {
             ret = AVERROR(ENOMEM);
             goto fail;
         }
 
         if ((ret = av_dynarray_add_nofree(&device_list->devices,
                                           &device_list->nb_devices, device)) < 0)
             goto fail;
 
         v4l2_close(s->fd);
         s->fd = -1;
         continue;
 
       fail:
         if (device) {
             av_freep(&device->device_name);
             av_freep(&device->device_description);
             av_freep(&device);
         }
         if (s->fd >= 0)
             v4l2_close(s->fd);
         s->fd = -1;
         break;
     }
     closedir(dir);
     return ret;
 }
 
8fe7b644
 #define OFFSET(x) offsetof(struct video_data, x)
 #define DEC AV_OPT_FLAG_DECODING_PARAM
f8f3f6c4
 
b3da2692
 static const AVOption options[] = {
d012059e
     { "standard",     "set TV standard, used only by analog frame grabber",       OFFSET(standard),     AV_OPT_TYPE_STRING, {.str = NULL }, 0, 0,       DEC },
785b849f
     { "channel",      "set TV channel, used only by frame grabber",               OFFSET(channel),      AV_OPT_TYPE_INT,    {.i64 = -1 },  -1, INT_MAX, DEC },
d012059e
     { "video_size",   "set frame size",                                           OFFSET(width),        AV_OPT_TYPE_IMAGE_SIZE, {.str = NULL},  0, 0,   DEC },
     { "pixel_format", "set preferred pixel format",                               OFFSET(pixel_format), AV_OPT_TYPE_STRING, {.str = NULL},  0, 0,       DEC },
     { "input_format", "set preferred pixel format (for raw video) or codec name", OFFSET(pixel_format), AV_OPT_TYPE_STRING, {.str = NULL},  0, 0,       DEC },
     { "framerate",    "set frame rate",                                           OFFSET(framerate),    AV_OPT_TYPE_STRING, {.str = NULL},  0, 0,       DEC },
 
     { "list_formats", "list available formats and exit",                          OFFSET(list_format),  AV_OPT_TYPE_INT,    {.i64 = 0 },  0, INT_MAX, DEC, "list_formats" },
     { "all",          "show all available formats",                               OFFSET(list_format),  AV_OPT_TYPE_CONST,  {.i64 = V4L_ALLFORMATS  },    0, INT_MAX, DEC, "list_formats" },
     { "raw",          "show only non-compressed formats",                         OFFSET(list_format),  AV_OPT_TYPE_CONST,  {.i64 = V4L_RAWFORMATS  },    0, INT_MAX, DEC, "list_formats" },
     { "compressed",   "show only compressed formats",                             OFFSET(list_format),  AV_OPT_TYPE_CONST,  {.i64 = V4L_COMPFORMATS },    0, INT_MAX, DEC, "list_formats" },
 
ff23b768
     { "list_standards", "list supported standards and exit",                      OFFSET(list_standard), AV_OPT_TYPE_INT,   {.i64 = 0 },  0, 1, DEC, "list_standards" },
     { "all",            "show all supported standards",                           OFFSET(list_standard), AV_OPT_TYPE_CONST, {.i64 = 1 },  0, 0, DEC, "list_standards" },
 
d012059e
     { "timestamps",   "set type of timestamps for grabbed frames",                OFFSET(ts_mode),      AV_OPT_TYPE_INT,    {.i64 = 0 }, 0, 2, DEC, "timestamps" },
     { "ts",           "set type of timestamps for grabbed frames",                OFFSET(ts_mode),      AV_OPT_TYPE_INT,    {.i64 = 0 }, 0, 2, DEC, "timestamps" },
     { "default",      "use timestamps from the kernel",                           OFFSET(ts_mode),      AV_OPT_TYPE_CONST,  {.i64 = V4L_TS_DEFAULT  }, 0, 2, DEC, "timestamps" },
     { "abs",          "use absolute timestamps (wall clock)",                     OFFSET(ts_mode),      AV_OPT_TYPE_CONST,  {.i64 = V4L_TS_ABS      }, 0, 2, DEC, "timestamps" },
     { "mono2abs",     "force conversion from monotonic to absolute timestamps",   OFFSET(ts_mode),      AV_OPT_TYPE_CONST,  {.i64 = V4L_TS_MONO2ABS }, 0, 2, DEC, "timestamps" },
5cae43e7
     { "use_libv4l2",  "use libv4l2 (v4l-utils) conversion functions",             OFFSET(use_libv4l2),  AV_OPT_TYPE_BOOL,   {.i64 = 0}, 0, 1, DEC },
b3da2692
     { NULL },
 };
 
 static const AVClass v4l2_class = {
     .class_name = "V4L2 indev",
     .item_name  = av_default_item_name,
     .option     = options,
     .version    = LIBAVUTIL_VERSION_INT,
f607767d
     .category   = AV_CLASS_CATEGORY_DEVICE_VIDEO_INPUT,
b3da2692
 };
 
66355be3
 AVInputFormat ff_v4l2_demuxer = {
6921272b
     .name           = "video4linux2,v4l2",
30b4ee79
     .long_name      = NULL_IF_CONFIG_SMALL("Video4Linux2 device grab"),
     .priv_data_size = sizeof(struct video_data),
b608fba6
     .read_probe     = v4l2_read_probe,
30b4ee79
     .read_header    = v4l2_read_header,
     .read_packet    = v4l2_read_packet,
     .read_close     = v4l2_read_close,
ea0ac11f
     .get_device_list = v4l2_get_device_list,
30b4ee79
     .flags          = AVFMT_NOFILE,
     .priv_class     = &v4l2_class,
0a7b514f
 };