v4l.c 11.7 KB
Newer Older
Fabrice Bellard's avatar
Fabrice Bellard committed
1 2
/*
 * Linux video grab interface
3
 * Copyright (c) 2000,2001 Fabrice Bellard
Fabrice Bellard's avatar
Fabrice Bellard committed
4
 *
5 6 7
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
8 9
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
10
 * version 2.1 of the License, or (at your option) any later version.
Fabrice Bellard's avatar
Fabrice Bellard committed
11
 *
12
 * FFmpeg is distributed in the hope that it will be useful,
Fabrice Bellard's avatar
Fabrice Bellard committed
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
Fabrice Bellard's avatar
Fabrice Bellard committed
16
 *
17
 * You should have received a copy of the GNU Lesser General Public
18
 * License along with FFmpeg; if not, write to the Free Software
19
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Fabrice Bellard's avatar
Fabrice Bellard committed
20
 */
21

Anton Khirnov's avatar
Anton Khirnov committed
22 23
#include "avdevice.h"

24 25
#if FF_API_V4L

26
#undef __STRICT_ANSI__ //workaround due to broken kernel headers
27
#include "config.h"
28
#include "libavutil/rational.h"
29
#include "libavutil/imgutils.h"
30 31
#include "libavutil/log.h"
#include "libavutil/opt.h"
32
#include "libavformat/internal.h"
33
#include "libavcodec/dsputil.h"
Fabrice Bellard's avatar
Fabrice Bellard committed
34 35 36 37 38
#include <unistd.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <sys/time.h>
39 40
#define _LINUX_TIME_H 1
#include <linux/videodev.h>
41
#include <time.h>
42
#include "avdevice.h"
Fabrice Bellard's avatar
Fabrice Bellard committed
43 44

typedef struct {
45
    AVClass *class;
Fabrice Bellard's avatar
Fabrice Bellard committed
46 47 48
    int fd;
    int frame_format; /* see VIDEO_PALETTE_xxx */
    int use_mmap;
49
    AVRational time_base;
50
    int64_t time_frame;
51
    int frame_size;
52 53
    struct video_capability video_cap;
    struct video_audio audio_saved;
54
    struct video_window video_win;
55
    uint8_t *video_buf;
56 57 58
    struct video_mbuf gb_buffers;
    struct video_mmap gb_buf;
    int gb_frame;
59
    int standard;
Fabrice Bellard's avatar
Fabrice Bellard committed
60 61
} VideoData;

62
static const struct {
63 64 65 66 67 68
    int palette;
    int depth;
    enum PixelFormat pix_fmt;
} video_formats [] = {
    {.palette = VIDEO_PALETTE_YUV420P, .depth = 12, .pix_fmt = PIX_FMT_YUV420P },
    {.palette = VIDEO_PALETTE_YUV422,  .depth = 16, .pix_fmt = PIX_FMT_YUYV422 },
69 70
    {.palette = VIDEO_PALETTE_UYVY,    .depth = 16, .pix_fmt = PIX_FMT_UYVY422 },
    {.palette = VIDEO_PALETTE_YUYV,    .depth = 16, .pix_fmt = PIX_FMT_YUYV422 },
71 72
    /* NOTE: v4l uses BGR24, not RGB24 */
    {.palette = VIDEO_PALETTE_RGB24,   .depth = 24, .pix_fmt = PIX_FMT_BGR24   },
73
    {.palette = VIDEO_PALETTE_RGB565,  .depth = 16, .pix_fmt = PIX_FMT_BGR565  },
74 75 76 77
    {.palette = VIDEO_PALETTE_GREY,    .depth = 8,  .pix_fmt = PIX_FMT_GRAY8   },
};


78
static int grab_read_header(AVFormatContext *s1, AVFormatParameters *ap)
Fabrice Bellard's avatar
Fabrice Bellard committed
79
{
Fabrice Bellard's avatar
Fabrice Bellard committed
80
    VideoData *s = s1->priv_data;
81
    AVStream *st;
82
    int video_fd;
83
    int desired_palette, desired_depth;
84
    struct video_tuner tuner;
85
    struct video_audio audio;
86
    struct video_picture pict;
87
    int j;
88
    int vformat_num = FF_ARRAY_ELEMS(video_formats);
89

90 91
    av_log(s1, AV_LOG_WARNING, "V4L input device is deprecated and will be removed in the next release.");

92 93
    if (ap->time_base.den <= 0) {
        av_log(s1, AV_LOG_ERROR, "Wrong time base (%d)\n", ap->time_base.den);
94
        return -1;
95
    }
96
    s->time_base = ap->time_base;
97

98 99
    s->video_win.width = ap->width;
    s->video_win.height = ap->height;
100

101
    st = avformat_new_stream(s1, NULL);
Fabrice Bellard's avatar
Fabrice Bellard committed
102
    if (!st)
103
        return AVERROR(ENOMEM);
104
    avpriv_set_pts_info(st, 64, 1, 1000000); /* 64 bits pts in us */
105

106
    video_fd = open(s1->filename, O_RDWR);
Fabrice Bellard's avatar
Fabrice Bellard committed
107
    if (video_fd < 0) {
108
        av_log(s1, AV_LOG_ERROR, "%s: %s\n", s1->filename, strerror(errno));
109
        goto fail;
Fabrice Bellard's avatar
Fabrice Bellard committed
110
    }
111

112
    if (ioctl(video_fd, VIDIOCGCAP, &s->video_cap) < 0) {
113
        av_log(s1, AV_LOG_ERROR, "VIDIOCGCAP: %s\n", strerror(errno));
Fabrice Bellard's avatar
Fabrice Bellard committed
114 115 116
        goto fail;
    }

117
    if (!(s->video_cap.type & VID_TYPE_CAPTURE)) {
118
        av_log(s1, AV_LOG_ERROR, "Fatal: grab device does not handle capture\n");
Fabrice Bellard's avatar
Fabrice Bellard committed
119 120
        goto fail;
    }
121

122 123 124 125 126 127 128 129
    /* no values set, autodetect them */
    if (s->video_win.width <= 0 || s->video_win.height <= 0) {
        if (ioctl(video_fd, VIDIOCGWIN, &s->video_win, sizeof(s->video_win)) < 0) {
            av_log(s1, AV_LOG_ERROR, "VIDIOCGWIN: %s\n", strerror(errno));
            goto fail;
        }
    }

130
    if(av_image_check_size(s->video_win.width, s->video_win.height, 0, s1) < 0)
131 132
        return -1;

133
    desired_palette = -1;
134
    desired_depth = -1;
135 136 137 138 139 140
    for (j = 0; j < vformat_num; j++) {
        if (ap->pix_fmt == video_formats[j].pix_fmt) {
            desired_palette = video_formats[j].palette;
            desired_depth = video_formats[j].depth;
            break;
        }
141
    }
142 143

    /* set tv standard */
144 145
    if (!ioctl(video_fd, VIDIOCGTUNER, &tuner)) {
        tuner.mode = s->standard;
146
        ioctl(video_fd, VIDIOCSTUNER, &tuner);
147
    }
148

Fabrice Bellard's avatar
Fabrice Bellard committed
149
    /* unmute audio */
150
    audio.audio = 0;
Fabrice Bellard's avatar
Fabrice Bellard committed
151
    ioctl(video_fd, VIDIOCGAUDIO, &audio);
152
    memcpy(&s->audio_saved, &audio, sizeof(audio));
Fabrice Bellard's avatar
Fabrice Bellard committed
153 154 155
    audio.flags &= ~VIDEO_AUDIO_MUTE;
    ioctl(video_fd, VIDIOCSAUDIO, &audio);

156
    ioctl(video_fd, VIDIOCGPICT, &pict);
157 158
    av_dlog(s1, "v4l: colour=%d hue=%d brightness=%d constrast=%d whiteness=%d\n",
            pict.colour, pict.hue, pict.brightness, pict.contrast, pict.whiteness);
159 160
    /* try to choose a suitable video format */
    pict.palette = desired_palette;
161
    pict.depth= desired_depth;
162
    if (desired_palette == -1 || ioctl(video_fd, VIDIOCSPICT, &pict) < 0) {
163 164 165 166 167
        for (j = 0; j < vformat_num; j++) {
            pict.palette = video_formats[j].palette;
            pict.depth = video_formats[j].depth;
            if (-1 != ioctl(video_fd, VIDIOCSPICT, &pict))
                break;
168
        }
169 170
        if (j >= vformat_num)
            goto fail1;
171 172
    }

173
    if (ioctl(video_fd, VIDIOCGMBUF, &s->gb_buffers) < 0) {
Fabrice Bellard's avatar
Fabrice Bellard committed
174 175 176
        /* try to use read based access */
        int val;

177 178 179 180
        s->video_win.x = 0;
        s->video_win.y = 0;
        s->video_win.chromakey = -1;
        s->video_win.flags = 0;
Fabrice Bellard's avatar
Fabrice Bellard committed
181

182 183 184 185
        if (ioctl(video_fd, VIDIOCSWIN, s->video_win) < 0) {
            av_log(s1, AV_LOG_ERROR, "VIDIOCSWIN: %s\n", strerror(errno));
            goto fail;
        }
Fabrice Bellard's avatar
Fabrice Bellard committed
186 187 188 189

        s->frame_format = pict.palette;

        val = 1;
190 191 192 193
        if (ioctl(video_fd, VIDIOCCAPTURE, &val) < 0) {
            av_log(s1, AV_LOG_ERROR, "VIDIOCCAPTURE: %s\n", strerror(errno));
            goto fail;
        }
Fabrice Bellard's avatar
Fabrice Bellard committed
194

195
        s->time_frame = av_gettime() * s->time_base.den / s->time_base.num;
Fabrice Bellard's avatar
Fabrice Bellard committed
196 197
        s->use_mmap = 0;
    } else {
198
        s->video_buf = mmap(0, s->gb_buffers.size, PROT_READ|PROT_WRITE, MAP_SHARED, video_fd, 0);
199
        if ((unsigned char*)-1 == s->video_buf) {
200
            s->video_buf = mmap(0, s->gb_buffers.size, PROT_READ|PROT_WRITE, MAP_PRIVATE, video_fd, 0);
201
            if ((unsigned char*)-1 == s->video_buf) {
202
                av_log(s1, AV_LOG_ERROR, "mmap: %s\n", strerror(errno));
203 204
                goto fail;
            }
Fabrice Bellard's avatar
Fabrice Bellard committed
205
        }
206
        s->gb_frame = 0;
207
        s->time_frame = av_gettime() * s->time_base.den / s->time_base.num;
208

Fabrice Bellard's avatar
Fabrice Bellard committed
209
        /* start to grab the first frame */
210
        s->gb_buf.frame = s->gb_frame % s->gb_buffers.frames;
211 212
        s->gb_buf.height = s->video_win.height;
        s->gb_buf.width = s->video_win.width;
213 214
        s->gb_buf.format = pict.palette;

215
        if (ioctl(video_fd, VIDIOCMCAPTURE, &s->gb_buf) < 0) {
Fabrice Bellard's avatar
Fabrice Bellard committed
216 217
            if (errno != EAGAIN) {
            fail1:
218
                av_log(s1, AV_LOG_ERROR, "VIDIOCMCAPTURE: %s\n", strerror(errno));
Fabrice Bellard's avatar
Fabrice Bellard committed
219
            } else {
220
                av_log(s1, AV_LOG_ERROR, "Fatal: grab device does not receive any video signal\n");
Fabrice Bellard's avatar
Fabrice Bellard committed
221 222 223
            }
            goto fail;
        }
224 225 226 227
        for (j = 1; j < s->gb_buffers.frames; j++) {
          s->gb_buf.frame = j;
          ioctl(video_fd, VIDIOCMCAPTURE, &s->gb_buf);
        }
228
        s->frame_format = s->gb_buf.format;
Fabrice Bellard's avatar
Fabrice Bellard committed
229 230 231
        s->use_mmap = 1;
    }

232 233
    for (j = 0; j < vformat_num; j++) {
        if (s->frame_format == video_formats[j].palette) {
234
            s->frame_size = s->video_win.width * s->video_win.height * video_formats[j].depth / 8;
235 236 237
            st->codec->pix_fmt = video_formats[j].pix_fmt;
            break;
        }
Fabrice Bellard's avatar
Fabrice Bellard committed
238
    }
239 240 241 242

    if (j >= vformat_num)
        goto fail;

Fabrice Bellard's avatar
Fabrice Bellard committed
243
    s->fd = video_fd;
244

245
    st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
246
    st->codec->codec_id = CODEC_ID_RAWVIDEO;
247 248
    st->codec->width = s->video_win.width;
    st->codec->height = s->video_win.height;
249
    st->codec->time_base = s->time_base;
250
    st->codec->bit_rate = s->frame_size * 1/av_q2d(st->codec->time_base) * 8;
251

Fabrice Bellard's avatar
Fabrice Bellard committed
252 253
    return 0;
 fail:
254 255
    if (video_fd >= 0)
        close(video_fd);
256
    return AVERROR(EIO);
Fabrice Bellard's avatar
Fabrice Bellard committed
257 258
}

259
static int v4l_mm_read_picture(VideoData *s, uint8_t *buf)
Fabrice Bellard's avatar
Fabrice Bellard committed
260
{
261
    uint8_t *ptr;
Fabrice Bellard's avatar
Fabrice Bellard committed
262

263 264 265 266 267 268
    while (ioctl(s->fd, VIDIOCSYNC, &s->gb_frame) < 0 &&
           (errno == EAGAIN || errno == EINTR));

    ptr = s->video_buf + s->gb_buffers.offsets[s->gb_frame];
    memcpy(buf, ptr, s->frame_size);

269
    /* Setup to capture the next frame */
270
    s->gb_buf.frame = s->gb_frame;
271
    if (ioctl(s->fd, VIDIOCMCAPTURE, &s->gb_buf) < 0) {
272
        if (errno == EAGAIN)
273
            av_log(NULL, AV_LOG_ERROR, "Cannot Sync\n");
274
        else
275
            av_log(NULL, AV_LOG_ERROR, "VIDIOCMCAPTURE: %s\n", strerror(errno));
276
        return AVERROR(EIO);
Fabrice Bellard's avatar
Fabrice Bellard committed
277
    }
278 279

    /* This is now the grabbing frame */
280
    s->gb_frame = (s->gb_frame + 1) % s->gb_buffers.frames;
281

282
    return s->frame_size;
Fabrice Bellard's avatar
Fabrice Bellard committed
283 284
}

285
static int grab_read_packet(AVFormatContext *s1, AVPacket *pkt)
Fabrice Bellard's avatar
Fabrice Bellard committed
286
{
287
    VideoData *s = s1->priv_data;
288
    int64_t curtime, delay;
289
    struct timespec ts;
290 291

    /* Calculate the time of the next frame */
292
    s->time_frame += INT64_C(1000000);
Fabrice Bellard's avatar
Fabrice Bellard committed
293 294

    /* wait based on the frame rate */
295
    for(;;) {
296
        curtime = av_gettime();
297
        delay = s->time_frame * s->time_base.num / s->time_base.den - curtime;
298
        if (delay <= 0) {
299
            if (delay < INT64_C(-1000000) * s->time_base.num / s->time_base.den) {
300
                /* printf("grabbing is %d frames late (dropping)\n", (int) -(delay / 16666)); */
301
                s->time_frame += INT64_C(1000000);
302
            }
303
            break;
304
        }
305 306 307 308 309 310
        ts.tv_sec = delay / 1000000;
        ts.tv_nsec = (delay % 1000000) * 1000;
        nanosleep(&ts, NULL);
    }

    if (av_new_packet(pkt, s->frame_size) < 0)
311
        return AVERROR(EIO);
Fabrice Bellard's avatar
Fabrice Bellard committed
312

Luca Abeni's avatar
Luca Abeni committed
313
    pkt->pts = curtime;
314

Fabrice Bellard's avatar
Fabrice Bellard committed
315
    /* read one frame */
316
    if (s->use_mmap) {
317
        return v4l_mm_read_picture(s, pkt->data);
Fabrice Bellard's avatar
Fabrice Bellard committed
318
    } else {
319
        if (read(s->fd, pkt->data, pkt->size) != pkt->size)
320
            return AVERROR(EIO);
321
        return s->frame_size;
Fabrice Bellard's avatar
Fabrice Bellard committed
322 323 324
    }
}

325
static int grab_read_close(AVFormatContext *s1)
Fabrice Bellard's avatar
Fabrice Bellard committed
326
{
327
    VideoData *s = s1->priv_data;
328 329

    if (s->use_mmap)
330
        munmap(s->video_buf, s->gb_buffers.size);
331

332 333 334 335
    /* mute audio. we must force it because the BTTV driver does not
       return its state correctly */
    s->audio_saved.flags |= VIDEO_AUDIO_MUTE;
    ioctl(s->fd, VIDIOCSAUDIO, &s->audio_saved);
336

Fabrice Bellard's avatar
Fabrice Bellard committed
337 338 339 340
    close(s->fd);
    return 0;
}

341
static const AVOption options[] = {
342 343 344 345
    { "standard", "", offsetof(VideoData, standard), AV_OPT_TYPE_INT, {.dbl = VIDEO_MODE_NTSC}, VIDEO_MODE_PAL, VIDEO_MODE_NTSC, AV_OPT_FLAG_DECODING_PARAM, "standard" },
    { "PAL",   "", 0, AV_OPT_TYPE_CONST, {.dbl = VIDEO_MODE_PAL},   0, 0, AV_OPT_FLAG_DECODING_PARAM, "standard" },
    { "SECAM", "", 0, AV_OPT_TYPE_CONST, {.dbl = VIDEO_MODE_SECAM}, 0, 0, AV_OPT_FLAG_DECODING_PARAM, "standard" },
    { "NTSC",  "", 0, AV_OPT_TYPE_CONST, {.dbl = VIDEO_MODE_NTSC},  0, 0, AV_OPT_FLAG_DECODING_PARAM, "standard" },
346 347 348 349 350 351 352 353 354 355
    { NULL },
};

static const AVClass v4l_class = {
    .class_name = "V4L indev",
    .item_name  = av_default_item_name,
    .option     = options,
    .version    = LIBAVUTIL_VERSION_INT,
};

356
AVInputFormat ff_v4l_demuxer = {
357
    .name           = "video4linux,v4l",
358 359 360 361 362 363 364
    .long_name      = NULL_IF_CONFIG_SMALL("Video4Linux device grab"),
    .priv_data_size = sizeof(VideoData),
    .read_header    = grab_read_header,
    .read_packet    = grab_read_packet,
    .read_close     = grab_read_close,
    .flags          = AVFMT_NOFILE,
    .priv_class     = &v4l_class,
Fabrice Bellard's avatar
Fabrice Bellard committed
365
};
366
#endif  /* FF_API_V4L */