v4l2.c 20.2 KB
Newer Older
Luca Abeni's avatar
Luca Abeni committed
1 2
/*
 * Video4Linux2 grab interface
3 4
 * Copyright (c) 2000,2001 Fabrice Bellard
 * Copyright (c) 2006 Luca Abeni
Luca Abeni's avatar
Luca Abeni committed
5 6 7 8 9 10 11 12
 *
 * Part of this file is based on the V4L2 video capture example
 * (http://v4l2spec.bytesex.org/v4l2spec/capture.c)
 *
 * Thanks to Michael Niedermayer for providing the mapping between
 * V4L2_PIX_FMT_* and PIX_FMT_*
 *
 *
13
 * This file is part of Libav.
14
 *
15
 * Libav is free software; you can redistribute it and/or
Luca Abeni's avatar
Luca Abeni committed
16 17
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
18
 * version 2.1 of the License, or (at your option) any later version.
Luca Abeni's avatar
Luca Abeni committed
19
 *
20
 * Libav is distributed in the hope that it will be useful,
Luca Abeni's avatar
Luca Abeni committed
21 22 23 24 25
 * 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
26
 * License along with Libav; if not, write to the Free Software
Luca Abeni's avatar
Luca Abeni committed
27 28
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */
29

30
#undef __STRICT_ANSI__ //workaround due to broken kernel headers
31
#include "config.h"
32
#include "libavformat/avformat.h"
Luca Abeni's avatar
Luca Abeni committed
33 34 35 36 37
#include <unistd.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <sys/time.h>
38
#if HAVE_SYS_VIDEOIO_H
39 40
#include <sys/videoio.h>
#else
41 42
#include <asm/types.h>
#include <linux/videodev2.h>
43
#endif
Luca Abeni's avatar
Luca Abeni committed
44
#include <time.h>
45
#include <strings.h>
46
#include "libavutil/imgutils.h"
Luca Abeni's avatar
Luca Abeni committed
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68

static const int desired_video_buffers = 256;

enum io_method {
    io_read,
    io_mmap,
    io_userptr
};

struct video_data {
    int fd;
    int frame_format; /* V4L2_PIX_FMT_* */
    enum io_method io_method;
    int width, height;
    int frame_size;
    int top_field_first;

    int buffers;
    void **buf_start;
    unsigned int *buf_len;
};

69 70 71 72 73
struct buff_data {
    int index;
    int fd;
};

Luca Abeni's avatar
Luca Abeni committed
74 75
struct fmt_map {
    enum PixelFormat ff_fmt;
76
    enum CodecID codec_id;
77
    uint32_t v4l2_fmt;
Luca Abeni's avatar
Luca Abeni committed
78 79 80
};

static struct fmt_map fmt_conversion_table[] = {
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
    //ff_fmt           codec_id           v4l2_fmt
    { PIX_FMT_YUV420P, CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_YUV420  },
    { PIX_FMT_YUV422P, CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_YUV422P },
    { PIX_FMT_YUYV422, CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_YUYV    },
    { PIX_FMT_UYVY422, CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_UYVY    },
    { PIX_FMT_YUV411P, CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_YUV411P },
    { PIX_FMT_YUV410P, CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_YUV410  },
    { PIX_FMT_RGB555,  CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_RGB555  },
    { PIX_FMT_RGB565,  CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_RGB565  },
    { PIX_FMT_BGR24,   CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_BGR24   },
    { PIX_FMT_RGB24,   CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_RGB24   },
    { PIX_FMT_BGRA,    CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_BGR32   },
    { PIX_FMT_GRAY8,   CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_GREY    },
    { PIX_FMT_NV12,    CODEC_ID_RAWVIDEO, V4L2_PIX_FMT_NV12    },
    { PIX_FMT_NONE,    CODEC_ID_MJPEG,    V4L2_PIX_FMT_MJPEG   },
    { PIX_FMT_NONE,    CODEC_ID_MJPEG,    V4L2_PIX_FMT_JPEG    },
Luca Abeni's avatar
Luca Abeni committed
97 98
};

99
static int device_open(AVFormatContext *ctx, uint32_t *capabilities)
Luca Abeni's avatar
Luca Abeni committed
100 101 102
{
    struct v4l2_capability cap;
    int fd;
103
    int res, err;
104
    int flags = O_RDWR;
Luca Abeni's avatar
Luca Abeni committed
105

106 107 108 109
    if (ctx->flags & AVFMT_FLAG_NONBLOCK) {
        flags |= O_NONBLOCK;
    }
    fd = open(ctx->filename, flags, 0);
Luca Abeni's avatar
Luca Abeni committed
110
    if (fd < 0) {
111
        av_log(ctx, AV_LOG_ERROR, "Cannot open video device %s : %s\n",
112
                 ctx->filename, strerror(errno));
Luca Abeni's avatar
Luca Abeni committed
113

114
        return AVERROR(errno);
Luca Abeni's avatar
Luca Abeni committed
115 116 117
    }

    res = ioctl(fd, VIDIOC_QUERYCAP, &cap);
118
    // ENOIOCTLCMD definition only availble on __KERNEL__
119
    if (res < 0 && ((err = errno) == 515)) {
120
        av_log(ctx, AV_LOG_ERROR, "QUERYCAP not implemented, probably V4L device but not supporting V4L2\n");
121
        close(fd);
122

123
        return AVERROR(515);
124
    }
Luca Abeni's avatar
Luca Abeni committed
125
    if (res < 0) {
126
        av_log(ctx, AV_LOG_ERROR, "ioctl(VIDIOC_QUERYCAP): %s\n",
Luca Abeni's avatar
Luca Abeni committed
127
                 strerror(errno));
128
        close(fd);
Luca Abeni's avatar
Luca Abeni committed
129

130
        return AVERROR(err);
Luca Abeni's avatar
Luca Abeni committed
131 132
    }
    if ((cap.capabilities & V4L2_CAP_VIDEO_CAPTURE) == 0) {
133
        av_log(ctx, AV_LOG_ERROR, "Not a video capture device\n");
134
        close(fd);
Luca Abeni's avatar
Luca Abeni committed
135

136
        return AVERROR(ENODEV);
Luca Abeni's avatar
Luca Abeni committed
137 138 139 140 141 142
    }
    *capabilities = cap.capabilities;

    return fd;
}

143
static int device_init(AVFormatContext *ctx, int *width, int *height, uint32_t pix_fmt)
Luca Abeni's avatar
Luca Abeni committed
144
{
145 146
    struct video_data *s = ctx->priv_data;
    int fd = s->fd;
Luca Abeni's avatar
Luca Abeni committed
147
    struct v4l2_format fmt;
148
    int res;
Luca Abeni's avatar
Luca Abeni committed
149 150 151

    memset(&fmt, 0, sizeof(struct v4l2_format));
    fmt.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
152 153
    fmt.fmt.pix.width = *width;
    fmt.fmt.pix.height = *height;
Luca Abeni's avatar
Luca Abeni committed
154 155
    fmt.fmt.pix.pixelformat = pix_fmt;
    fmt.fmt.pix.field = V4L2_FIELD_INTERLACED;
156 157
    res = ioctl(fd, VIDIOC_S_FMT, &fmt);
    if ((*width != fmt.fmt.pix.width) || (*height != fmt.fmt.pix.height)) {
158
        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);
159 160 161 162
        *width = fmt.fmt.pix.width;
        *height = fmt.fmt.pix.height;
    }

163 164 165 166 167
    if (pix_fmt != fmt.fmt.pix.pixelformat) {
        av_log(ctx, AV_LOG_DEBUG, "The V4L2 driver changed the pixel format from 0x%08X to 0x%08X\n", pix_fmt, fmt.fmt.pix.pixelformat);
        res = -1;
    }

168
    return res;
Luca Abeni's avatar
Luca Abeni committed
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
}

static int first_field(int fd)
{
    int res;
    v4l2_std_id std;

    res = ioctl(fd, VIDIOC_G_STD, &std);
    if (res < 0) {
        return 0;
    }
    if (std & V4L2_STD_NTSC) {
        return 0;
    }

    return 1;
}

187
static uint32_t fmt_ff2v4l(enum PixelFormat pix_fmt, enum CodecID codec_id)
Luca Abeni's avatar
Luca Abeni committed
188 189 190
{
    int i;

191
    for (i = 0; i < FF_ARRAY_ELEMS(fmt_conversion_table); i++) {
192 193 194 195
        if ((codec_id == CODEC_ID_NONE ||
             fmt_conversion_table[i].codec_id == codec_id) &&
            (pix_fmt == PIX_FMT_NONE ||
             fmt_conversion_table[i].ff_fmt == pix_fmt)) {
Luca Abeni's avatar
Luca Abeni committed
196 197 198 199 200 201 202
            return fmt_conversion_table[i].v4l2_fmt;
        }
    }

    return 0;
}

203
static enum PixelFormat fmt_v4l2ff(uint32_t v4l2_fmt, enum CodecID codec_id)
Luca Abeni's avatar
Luca Abeni committed
204 205 206
{
    int i;

207
    for (i = 0; i < FF_ARRAY_ELEMS(fmt_conversion_table); i++) {
208 209
        if (fmt_conversion_table[i].v4l2_fmt == v4l2_fmt &&
            fmt_conversion_table[i].codec_id == codec_id) {
Luca Abeni's avatar
Luca Abeni committed
210 211 212 213
            return fmt_conversion_table[i].ff_fmt;
        }
    }

214
    return PIX_FMT_NONE;
Luca Abeni's avatar
Luca Abeni committed
215 216
}

217 218 219 220 221 222 223 224 225 226 227 228 229
static enum CodecID fmt_v4l2codec(uint32_t v4l2_fmt)
{
    int i;

    for (i = 0; i < FF_ARRAY_ELEMS(fmt_conversion_table); i++) {
        if (fmt_conversion_table[i].v4l2_fmt == v4l2_fmt) {
            return fmt_conversion_table[i].codec_id;
        }
    }

    return CODEC_ID_NONE;
}

230
static int mmap_init(AVFormatContext *ctx)
Luca Abeni's avatar
Luca Abeni committed
231
{
232
    struct video_data *s = ctx->priv_data;
Luca Abeni's avatar
Luca Abeni committed
233 234 235 236 237 238 239
    struct v4l2_requestbuffers req;
    int i, res;

    memset(&req, 0, sizeof(struct v4l2_requestbuffers));
    req.count = desired_video_buffers;
    req.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
    req.memory = V4L2_MEMORY_MMAP;
240
    res = ioctl(s->fd, VIDIOC_REQBUFS, &req);
Luca Abeni's avatar
Luca Abeni committed
241 242
    if (res < 0) {
        if (errno == EINVAL) {
243
            av_log(ctx, AV_LOG_ERROR, "Device does not support mmap\n");
Luca Abeni's avatar
Luca Abeni committed
244
        } else {
245
            av_log(ctx, AV_LOG_ERROR, "ioctl(VIDIOC_REQBUFS)\n");
Luca Abeni's avatar
Luca Abeni committed
246 247
        }

248
        return AVERROR(errno);
Luca Abeni's avatar
Luca Abeni committed
249 250 251
    }

    if (req.count < 2) {
252
        av_log(ctx, AV_LOG_ERROR, "Insufficient buffer memory\n");
Luca Abeni's avatar
Luca Abeni committed
253

254
        return AVERROR(ENOMEM);
Luca Abeni's avatar
Luca Abeni committed
255 256 257 258
    }
    s->buffers = req.count;
    s->buf_start = av_malloc(sizeof(void *) * s->buffers);
    if (s->buf_start == NULL) {
259
        av_log(ctx, AV_LOG_ERROR, "Cannot allocate buffer pointers\n");
Luca Abeni's avatar
Luca Abeni committed
260

261
        return AVERROR(ENOMEM);
Luca Abeni's avatar
Luca Abeni committed
262 263 264
    }
    s->buf_len = av_malloc(sizeof(unsigned int) * s->buffers);
    if (s->buf_len == NULL) {
265
        av_log(ctx, AV_LOG_ERROR, "Cannot allocate buffer sizes\n");
Luca Abeni's avatar
Luca Abeni committed
266 267
        av_free(s->buf_start);

268
        return AVERROR(ENOMEM);
Luca Abeni's avatar
Luca Abeni committed
269 270 271 272 273 274 275 276 277
    }

    for (i = 0; i < req.count; i++) {
        struct v4l2_buffer buf;

        memset(&buf, 0, sizeof(struct v4l2_buffer));
        buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
        buf.memory = V4L2_MEMORY_MMAP;
        buf.index = i;
278
        res = ioctl(s->fd, VIDIOC_QUERYBUF, &buf);
Luca Abeni's avatar
Luca Abeni committed
279
        if (res < 0) {
280
            av_log(ctx, AV_LOG_ERROR, "ioctl(VIDIOC_QUERYBUF)\n");
Luca Abeni's avatar
Luca Abeni committed
281

282
            return AVERROR(errno);
Luca Abeni's avatar
Luca Abeni committed
283 284 285
        }

        s->buf_len[i] = buf.length;
286
        if (s->frame_size > 0 && s->buf_len[i] < s->frame_size) {
287
            av_log(ctx, AV_LOG_ERROR, "Buffer len [%d] = %d != %d\n", i, s->buf_len[i], s->frame_size);
Luca Abeni's avatar
Luca Abeni committed
288 289 290 291 292 293

            return -1;
        }
        s->buf_start[i] = mmap (NULL, buf.length,
                        PROT_READ | PROT_WRITE, MAP_SHARED, s->fd, buf.m.offset);
        if (s->buf_start[i] == MAP_FAILED) {
294
            av_log(ctx, AV_LOG_ERROR, "mmap: %s\n", strerror(errno));
Luca Abeni's avatar
Luca Abeni committed
295

296
            return AVERROR(errno);
Luca Abeni's avatar
Luca Abeni committed
297 298 299 300 301 302
        }
    }

    return 0;
}

303
static int read_init(AVFormatContext *ctx)
Luca Abeni's avatar
Luca Abeni committed
304 305 306 307
{
    return -1;
}

308 309 310 311 312 313
static void mmap_release_buffer(AVPacket *pkt)
{
    struct v4l2_buffer buf;
    int res, fd;
    struct buff_data *buf_descriptor = pkt->priv;

314 315 316 317
    if (pkt->data == NULL) {
         return;
    }

318 319 320 321 322 323 324
    memset(&buf, 0, sizeof(struct v4l2_buffer));
    buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
    buf.memory = V4L2_MEMORY_MMAP;
    buf.index = buf_descriptor->index;
    fd = buf_descriptor->fd;
    av_free(buf_descriptor);

325
    res = ioctl(fd, VIDIOC_QBUF, &buf);
326
    if (res < 0) {
327
        av_log(NULL, AV_LOG_ERROR, "ioctl(VIDIOC_QBUF): %s\n", strerror(errno));
328 329 330 331 332 333
    }
    pkt->data = NULL;
    pkt->size = 0;
}

static int mmap_read_frame(AVFormatContext *ctx, AVPacket *pkt)
Luca Abeni's avatar
Luca Abeni committed
334
{
335
    struct video_data *s = ctx->priv_data;
Luca Abeni's avatar
Luca Abeni committed
336
    struct v4l2_buffer buf;
337
    struct buff_data *buf_descriptor;
Luca Abeni's avatar
Luca Abeni committed
338 339 340 341 342 343 344
    int res;

    memset(&buf, 0, sizeof(struct v4l2_buffer));
    buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
    buf.memory = V4L2_MEMORY_MMAP;

    /* FIXME: Some special treatment might be needed in case of loss of signal... */
345
    while ((res = ioctl(s->fd, VIDIOC_DQBUF, &buf)) < 0 && (errno == EINTR));
Luca Abeni's avatar
Luca Abeni committed
346
    if (res < 0) {
347 348 349 350 351
        if (errno == EAGAIN) {
            pkt->size = 0;

            return AVERROR(EAGAIN);
        }
352
        av_log(ctx, AV_LOG_ERROR, "ioctl(VIDIOC_DQBUF): %s\n", strerror(errno));
Luca Abeni's avatar
Luca Abeni committed
353

354
        return AVERROR(errno);
Luca Abeni's avatar
Luca Abeni committed
355 356
    }
    assert (buf.index < s->buffers);
357
    if (s->frame_size > 0 && buf.bytesused != s->frame_size) {
358
        av_log(ctx, AV_LOG_ERROR, "The v4l2 frame is %d bytes, but %d bytes are expected\n", buf.bytesused, s->frame_size);
359

360
        return AVERROR_INVALIDDATA;
361 362
    }

Luca Abeni's avatar
Luca Abeni committed
363
    /* Image is at s->buff_start[buf.index] */
364 365 366 367 368 369 370 371 372 373
    pkt->data= s->buf_start[buf.index];
    pkt->size = buf.bytesused;
    pkt->pts = buf.timestamp.tv_sec * INT64_C(1000000) + buf.timestamp.tv_usec;
    pkt->destruct = mmap_release_buffer;
    buf_descriptor = av_malloc(sizeof(struct buff_data));
    if (buf_descriptor == NULL) {
        /* Something went wrong... Since av_malloc() failed, we cannot even
         * allocate a buffer for memcopying into it
         */
        av_log(ctx, AV_LOG_ERROR, "Failed to allocate a buffer descriptor\n");
374
        res = ioctl(s->fd, VIDIOC_QBUF, &buf);
Luca Abeni's avatar
Luca Abeni committed
375

376
        return AVERROR(ENOMEM);
Luca Abeni's avatar
Luca Abeni committed
377
    }
378 379 380
    buf_descriptor->fd = s->fd;
    buf_descriptor->index = buf.index;
    pkt->priv = buf_descriptor;
Luca Abeni's avatar
Luca Abeni committed
381 382 383 384

    return s->buf_len[buf.index];
}

385
static int read_frame(AVFormatContext *ctx, AVPacket *pkt)
Luca Abeni's avatar
Luca Abeni committed
386 387 388 389
{
    return -1;
}

390
static int mmap_start(AVFormatContext *ctx)
Luca Abeni's avatar
Luca Abeni committed
391
{
392
    struct video_data *s = ctx->priv_data;
Luca Abeni's avatar
Luca Abeni committed
393 394 395 396 397 398 399 400 401 402 403
    enum v4l2_buf_type type;
    int i, res;

    for (i = 0; i < s->buffers; i++) {
        struct v4l2_buffer buf;

        memset(&buf, 0, sizeof(struct v4l2_buffer));
        buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
        buf.memory = V4L2_MEMORY_MMAP;
        buf.index  = i;

404
        res = ioctl(s->fd, VIDIOC_QBUF, &buf);
Luca Abeni's avatar
Luca Abeni committed
405
        if (res < 0) {
406
            av_log(ctx, AV_LOG_ERROR, "ioctl(VIDIOC_QBUF): %s\n", strerror(errno));
Luca Abeni's avatar
Luca Abeni committed
407

408
            return AVERROR(errno);
Luca Abeni's avatar
Luca Abeni committed
409 410 411 412
        }
    }

    type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
413
    res = ioctl(s->fd, VIDIOC_STREAMON, &type);
Luca Abeni's avatar
Luca Abeni committed
414
    if (res < 0) {
415
        av_log(ctx, AV_LOG_ERROR, "ioctl(VIDIOC_STREAMON): %s\n", strerror(errno));
Luca Abeni's avatar
Luca Abeni committed
416

417
        return AVERROR(errno);
Luca Abeni's avatar
Luca Abeni committed
418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439
    }

    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...
     */
    ioctl(s->fd, VIDIOC_STREAMOFF, &type);
    for (i = 0; i < s->buffers; i++) {
        munmap(s->buf_start[i], s->buf_len[i]);
    }
    av_free(s->buf_start);
    av_free(s->buf_len);
}

440
static int v4l2_set_parameters(AVFormatContext *s1, AVFormatParameters *ap)
441 442 443 444
{
    struct video_data *s = s1->priv_data;
    struct v4l2_input input;
    struct v4l2_standard standard;
445 446
    struct v4l2_streamparm streamparm = { 0 };
    struct v4l2_fract *tpf = &streamparm.parm.capture.timeperframe;
447 448
    int i;

449 450
    streamparm.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;

451
    if (ap->channel>=0) {
452 453 454
        /* set tv video input */
        memset (&input, 0, sizeof (input));
        input.index = ap->channel;
455
        if (ioctl(s->fd, VIDIOC_ENUMINPUT, &input) < 0) {
456
            av_log(s1, AV_LOG_ERROR, "The V4L2 driver ioctl enum input failed:\n");
457
            return AVERROR(EIO);
458
        }
459

460 461
        av_log(s1, AV_LOG_DEBUG, "The V4L2 driver set input_id: %d, input: %s\n",
               ap->channel, input.name);
462
        if (ioctl(s->fd, VIDIOC_S_INPUT, &input.index) < 0) {
463 464
            av_log(s1, AV_LOG_ERROR, "The V4L2 driver ioctl set input(%d) failed\n",
                   ap->channel);
465
            return AVERROR(EIO);
466
        }
467
    }
468

469
    if (ap->standard) {
470
        av_log(s1, AV_LOG_DEBUG, "The V4L2 driver set standard: %s\n",
471
               ap->standard);
472 473 474 475 476 477 478
        /* set tv standard */
        memset (&standard, 0, sizeof (standard));
        for(i=0;;i++) {
            standard.index = i;
            if (ioctl(s->fd, VIDIOC_ENUMSTD, &standard) < 0) {
                av_log(s1, AV_LOG_ERROR, "The V4L2 driver ioctl set standard(%s) failed\n",
                       ap->standard);
479
                return AVERROR(EIO);
480 481
            }

482
            if (!strcasecmp(standard.name, ap->standard)) {
483 484 485 486 487
                break;
            }
        }

        av_log(s1, AV_LOG_DEBUG, "The V4L2 driver set standard: %s, id: %"PRIu64"\n",
488
               ap->standard, (uint64_t)standard.id);
489
        if (ioctl(s->fd, VIDIOC_S_STD, &standard.id) < 0) {
490 491
            av_log(s1, AV_LOG_ERROR, "The V4L2 driver ioctl set standard(%s) failed\n",
                   ap->standard);
492
            return AVERROR(EIO);
493
        }
494
    }
495

496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514
    if (ap->time_base.num && ap->time_base.den) {
        av_log(s1, AV_LOG_DEBUG, "Setting time per frame to %d/%d\n",
               ap->time_base.num, ap->time_base.den);
        tpf->numerator = ap->time_base.num;
        tpf->denominator = ap->time_base.den;
        if (ioctl(s->fd, VIDIOC_S_PARM, &streamparm) != 0) {
            av_log(s1, AV_LOG_ERROR,
                   "ioctl set time per frame(%d/%d) failed\n",
                   ap->time_base.num, ap->time_base.den);
            return AVERROR(EIO);
        }

        if (ap->time_base.den != tpf->denominator ||
            ap->time_base.num != tpf->numerator) {
            av_log(s1, AV_LOG_INFO,
                   "The driver changed the time per frame from %d/%d to %d/%d\n",
                   ap->time_base.num, ap->time_base.den,
                   tpf->numerator, tpf->denominator);
        }
515
    } else {
516
        /* if timebase value is not set in ap, read the timebase value from the driver */
517 518 519 520
        if (ioctl(s->fd, VIDIOC_G_PARM, &streamparm) != 0) {
            av_log(s1, AV_LOG_ERROR, "ioctl(VIDIOC_G_PARM): %s\n", strerror(errno));
            return AVERROR(errno);
        }
521
    }
522 523
    ap->time_base.num = tpf->numerator;
    ap->time_base.den = tpf->denominator;
524

525 526 527
    return 0;
}

528 529 530 531 532
static uint32_t device_try_init(AVFormatContext *s1,
                                const AVFormatParameters *ap,
                                int *width,
                                int *height,
                                enum CodecID *codec_id)
533
{
534
    uint32_t desired_format = fmt_ff2v4l(ap->pix_fmt, s1->video_codec_id);
535 536 537 538 539 540 541

    if (desired_format == 0 ||
        device_init(s1, width, height, desired_format) < 0) {
        int i;

        desired_format = 0;
        for (i = 0; i<FF_ARRAY_ELEMS(fmt_conversion_table); i++) {
542 543
            if (s1->video_codec_id == CODEC_ID_NONE ||
                fmt_conversion_table[i].codec_id == s1->video_codec_id) {
544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559
                desired_format = fmt_conversion_table[i].v4l2_fmt;
                if (device_init(s1, width, height, desired_format) >= 0) {
                    break;
                }
                desired_format = 0;
            }
        }
    }
    if (desired_format != 0) {
        *codec_id = fmt_v4l2codec(desired_format);
        assert(*codec_id != CODEC_ID_NONE);
    }

    return desired_format;
}

Luca Abeni's avatar
Luca Abeni committed
560 561 562 563
static int v4l2_read_header(AVFormatContext *s1, AVFormatParameters *ap)
{
    struct video_data *s = s1->priv_data;
    AVStream *st;
564
    int res;
Luca Abeni's avatar
Luca Abeni committed
565
    uint32_t desired_format, capabilities;
566
    enum CodecID codec_id;
Luca Abeni's avatar
Luca Abeni committed
567 568 569

    st = av_new_stream(s1, 0);
    if (!st) {
570
        return AVERROR(ENOMEM);
Luca Abeni's avatar
Luca Abeni committed
571 572 573
    }
    av_set_pts_info(st, 64, 1, 1000000); /* 64 bits pts in us */

574 575
    s->width  = ap->width;
    s->height = ap->height;
Luca Abeni's avatar
Luca Abeni committed
576 577

    capabilities = 0;
578
    s->fd = device_open(s1, &capabilities);
Luca Abeni's avatar
Luca Abeni committed
579
    if (s->fd < 0) {
580
        return AVERROR(EIO);
Luca Abeni's avatar
Luca Abeni committed
581
    }
582
    av_log(s1, AV_LOG_VERBOSE, "[%d]Capabilities: %x\n", s->fd, capabilities);
Luca Abeni's avatar
Luca Abeni committed
583

584 585 586
    if (!s->width && !s->height) {
        struct v4l2_format fmt;

587
        av_log(s1, AV_LOG_VERBOSE, "Querying the device for the current frame size\n");
588 589 590 591 592 593 594
        fmt.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
        if (ioctl(s->fd, VIDIOC_G_FMT, &fmt) < 0) {
            av_log(s1, AV_LOG_ERROR, "ioctl(VIDIOC_G_FMT): %s\n", strerror(errno));
            return AVERROR(errno);
        }
        s->width  = fmt.fmt.pix.width;
        s->height = fmt.fmt.pix.height;
595
        av_log(s1, AV_LOG_VERBOSE, "Setting frame size to %dx%d\n", s->width, s->height);
596 597
    }

598
    desired_format = device_try_init(s1, ap, &s->width, &s->height, &codec_id);
Luca Abeni's avatar
Luca Abeni committed
599
    if (desired_format == 0) {
600
        av_log(s1, AV_LOG_ERROR, "Cannot find a proper format for "
601
               "codec_id %d, pix_fmt %d.\n", s1->video_codec_id, ap->pix_fmt);
Luca Abeni's avatar
Luca Abeni committed
602 603
        close(s->fd);

604
        return AVERROR(EIO);
Luca Abeni's avatar
Luca Abeni committed
605
    }
606
    if (av_image_check_size(s->width, s->height, 0, s1) < 0)
607
        return AVERROR(EINVAL);
Luca Abeni's avatar
Luca Abeni committed
608 609
    s->frame_format = desired_format;

610
    if (v4l2_set_parameters(s1, ap) < 0)
611
        return AVERROR(EIO);
612

613
    st->codec->pix_fmt = fmt_v4l2ff(desired_format, codec_id);
614
    s->frame_size = avpicture_get_size(st->codec->pix_fmt, s->width, s->height);
Luca Abeni's avatar
Luca Abeni committed
615 616
    if (capabilities & V4L2_CAP_STREAMING) {
        s->io_method = io_mmap;
617
        res = mmap_init(s1);
R. Brian Anderson's avatar
R. Brian Anderson committed
618
        if (res == 0) {
619
            res = mmap_start(s1);
R. Brian Anderson's avatar
R. Brian Anderson committed
620
        }
Luca Abeni's avatar
Luca Abeni committed
621 622
    } else {
        s->io_method = io_read;
623
        res = read_init(s1);
Luca Abeni's avatar
Luca Abeni committed
624 625 626 627
    }
    if (res < 0) {
        close(s->fd);

628
        return AVERROR(EIO);
Luca Abeni's avatar
Luca Abeni committed
629 630 631
    }
    s->top_field_first = first_field(s->fd);

632
    st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
633
    st->codec->codec_id = codec_id;
634 635
    st->codec->width = s->width;
    st->codec->height = s->height;
636 637
    st->codec->time_base.den = ap->time_base.den;
    st->codec->time_base.num = ap->time_base.num;
Luca Abeni's avatar
Luca Abeni committed
638 639 640 641 642 643 644 645 646 647 648
    st->codec->bit_rate = s->frame_size * 1/av_q2d(st->codec->time_base) * 8;

    return 0;
}

static int v4l2_read_packet(AVFormatContext *s1, AVPacket *pkt)
{
    struct video_data *s = s1->priv_data;
    int res;

    if (s->io_method == io_mmap) {
649 650
        av_init_packet(pkt);
        res = mmap_read_frame(s1, pkt);
Luca Abeni's avatar
Luca Abeni committed
651
    } else if (s->io_method == io_read) {
652
        if (av_new_packet(pkt, s->frame_size) < 0)
653
            return AVERROR(EIO);
654 655

        res = read_frame(s1, pkt);
Luca Abeni's avatar
Luca Abeni committed
656
    } else {
657
        return AVERROR(EIO);
Luca Abeni's avatar
Luca Abeni committed
658 659
    }
    if (res < 0) {
660
        return res;
Luca Abeni's avatar
Luca Abeni committed
661 662 663 664 665 666 667
    }

    if (s1->streams[0]->codec->coded_frame) {
        s1->streams[0]->codec->coded_frame->interlaced_frame = 1;
        s1->streams[0]->codec->coded_frame->top_field_first = s->top_field_first;
    }

668
    return pkt->size;
Luca Abeni's avatar
Luca Abeni committed
669 670 671 672 673 674 675 676 677 678 679 680 681 682
}

static int v4l2_read_close(AVFormatContext *s1)
{
    struct video_data *s = s1->priv_data;

    if (s->io_method == io_mmap) {
        mmap_close(s);
    }

    close(s->fd);
    return 0;
}

683
AVInputFormat ff_v4l2_demuxer = {
Luca Abeni's avatar
Luca Abeni committed
684
    "video4linux2",
685
    NULL_IF_CONFIG_SMALL("Video4Linux2 device grab"),
Luca Abeni's avatar
Luca Abeni committed
686 687 688 689 690 691 692
    sizeof(struct video_data),
    NULL,
    v4l2_read_header,
    v4l2_read_packet,
    v4l2_read_close,
    .flags = AVFMT_NOFILE,
};