dv1394.c 7.35 KB
Newer Older
1 2 3 4
/*
 * Linux DV1394 interface
 * Copyright (c) 2003 Max Krasnyansky <maxk@qualcomm.com>
 *
5
 * This file is part of Libav.
6
 *
7
 * Libav 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.
11
 *
12
 * Libav is distributed in the hope that it will be useful,
13 14 15 16 17
 * 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
18
 * License along with Libav; if not, write to the Free Software
19
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 21
 */

22
#include "config.h"
23 24
#include <unistd.h>
#include <fcntl.h>
25
#include <errno.h>
26
#include <poll.h>
27 28 29
#include <sys/ioctl.h>
#include <sys/mman.h>

30
#include "libavutil/internal.h"
31 32
#include "libavutil/log.h"
#include "libavutil/opt.h"
33 34
#include "libavformat/avformat.h"
#include "libavformat/dv.h"
35 36 37
#include "dv1394.h"

struct dv1394_data {
38
    AVClass *class;
39 40
    int fd;
    int channel;
41
    int format;
42

43
    uint8_t *ring; /* Ring buffer */
44 45 46
    int index;  /* Current frame index */
    int avail;  /* Number of frames available for reading */
    int done;   /* Number of completed frames */
47

48
    DVDemuxContext* dv_demux; /* Generic DV muxing/demuxing context */
49 50
};

51
/*
52
 * The trick here is to kludge around well known problem with kernel Ooopsing
53
 * when you try to capture PAL on a device node configure for NTSC. That's
54 55 56
 * why we have to configure the device node for PAL, and then read only NTSC
 * amount of data.
 */
57 58 59 60
static int dv1394_reset(struct dv1394_data *dv)
{
    struct dv1394_init init;

61
    init.channel     = dv->channel;
62
    init.api_version = DV1394_API_VERSION;
63
    init.n_frames    = DV1394_RING_FRAMES;
64
    init.format      = DV1394_PAL;
65 66 67 68

    if (ioctl(dv->fd, DV1394_INIT, &init) < 0)
        return -1;

69
    dv->avail  = dv->done = 0;
70 71 72 73 74 75 76
    return 0;
}

static int dv1394_start(struct dv1394_data *dv)
{
    /* Tell DV1394 driver to enable receiver */
    if (ioctl(dv->fd, DV1394_START_RECEIVE, 0) < 0) {
77
        av_log(NULL, AV_LOG_ERROR, "Failed to start receiver: %s\n", strerror(errno));
78 79 80 81 82
        return -1;
    }
    return 0;
}

83
static int dv1394_read_header(AVFormatContext * context)
84 85 86
{
    struct dv1394_data *dv = context->priv_data;

87
    dv->dv_demux = avpriv_dv_init_demux(context);
88 89
    if (!dv->dv_demux)
        goto failed;
90 91

    /* Open and initialize DV1394 device */
92
    dv->fd = avpriv_open(context->filename, O_RDONLY);
93
    if (dv->fd < 0) {
94
        av_log(context, AV_LOG_ERROR, "Failed to open DV interface: %s\n", strerror(errno));
95 96 97 98
        goto failed;
    }

    if (dv1394_reset(dv) < 0) {
99
        av_log(context, AV_LOG_ERROR, "Failed to initialize DV interface: %s\n", strerror(errno));
100 101 102
        goto failed;
    }

103
    dv->ring = mmap(NULL, DV1394_PAL_FRAME_SIZE * DV1394_RING_FRAMES,
104
                    PROT_READ, MAP_PRIVATE, dv->fd, 0);
105
    if (dv->ring == MAP_FAILED) {
106
        av_log(context, AV_LOG_ERROR, "Failed to mmap DV ring buffer: %s\n", strerror(errno));
107 108 109 110 111 112 113 114 115 116
        goto failed;
    }

    if (dv1394_start(dv) < 0)
        goto failed;

    return 0;

failed:
    close(dv->fd);
117
    return AVERROR(EIO);
118 119
}

120
static int dv1394_read_packet(AVFormatContext *context, AVPacket *pkt)
121 122
{
    struct dv1394_data *dv = context->priv_data;
123 124
    int size;

125
    size = avpriv_dv_get_packet(dv->dv_demux, pkt);
126
    if (size > 0)
127
        return size;
128 129 130 131

    if (!dv->avail) {
        struct dv1394_status s;
        struct pollfd p;
132 133 134 135 136 137 138

        if (dv->done) {
            /* Request more frames */
            if (ioctl(dv->fd, DV1394_RECEIVE_FRAMES, dv->done) < 0) {
                /* This usually means that ring buffer overflowed.
                 * We have to reset :(.
                 */
139

140
                av_log(context, AV_LOG_ERROR, "DV1394: Ring buffer overflow. Reseting ..\n");
141

142 143 144 145 146
                dv1394_reset(dv);
                dv1394_start(dv);
            }
            dv->done = 0;
        }
147 148

        /* Wait until more frames are available */
149 150 151
restart_poll:
        p.fd = dv->fd;
        p.events = POLLIN | POLLERR | POLLHUP;
152
        if (poll(&p, 1, -1) < 0) {
153 154
            if (errno == EAGAIN || errno == EINTR)
                goto restart_poll;
155
            av_log(context, AV_LOG_ERROR, "Poll failed: %s\n", strerror(errno));
156
            return AVERROR(EIO);
157 158 159
        }

        if (ioctl(dv->fd, DV1394_GET_STATUS, &s) < 0) {
160
            av_log(context, AV_LOG_ERROR, "Failed to get status: %s\n", strerror(errno));
161
            return AVERROR(EIO);
162
        }
163
        av_dlog(context, "DV1394: status\n"
164 165 166 167 168 169 170 171 172
                "\tactive_frame\t%d\n"
                "\tfirst_clear_frame\t%d\n"
                "\tn_clear_frames\t%d\n"
                "\tdropped_frames\t%d\n",
                s.active_frame, s.first_clear_frame,
                s.n_clear_frames, s.dropped_frames);

        dv->avail = s.n_clear_frames;
        dv->index = s.first_clear_frame;
173
        dv->done  = 0;
174 175

        if (s.dropped_frames) {
176
            av_log(context, AV_LOG_ERROR, "DV1394: Frame drop detected (%d). Reseting ..\n",
177 178 179 180 181 182 183
                    s.dropped_frames);

            dv1394_reset(dv);
            dv1394_start(dv);
        }
    }

184
    av_dlog(context, "index %d, avail %d, done %d\n", dv->index, dv->avail,
185 186
            dv->done);

187
    size = avpriv_dv_produce_packet(dv->dv_demux, pkt,
188
                             dv->ring + (dv->index * DV1394_PAL_FRAME_SIZE),
189
                             DV1394_PAL_FRAME_SIZE);
190 191
    dv->index = (dv->index + 1) % DV1394_RING_FRAMES;
    dv->done++; dv->avail--;
192

193
    return size;
194 195 196 197 198 199 200 201
}

static int dv1394_close(AVFormatContext * context)
{
    struct dv1394_data *dv = context->priv_data;

    /* Shutdown DV1394 receiver */
    if (ioctl(dv->fd, DV1394_SHUTDOWN, 0) < 0)
202
        av_log(context, AV_LOG_ERROR, "Failed to shutdown DV1394: %s\n", strerror(errno));
203 204 205

    /* Unmap ring buffer */
    if (munmap(dv->ring, DV1394_NTSC_FRAME_SIZE * DV1394_RING_FRAMES) < 0)
206
        av_log(context, AV_LOG_ERROR, "Failed to munmap DV1394 ring buffer: %s\n", strerror(errno));
207 208

    close(dv->fd);
209
    av_free(dv->dv_demux);
210 211 212 213

    return 0;
}

214
static const AVOption options[] = {
215
    { "standard", "", offsetof(struct dv1394_data, format), AV_OPT_TYPE_INT, {.i64 = DV1394_NTSC}, DV1394_NTSC, DV1394_PAL, AV_OPT_FLAG_DECODING_PARAM, "standard" },
216 217
    { "PAL",      "", 0, AV_OPT_TYPE_CONST, {.i64 = DV1394_PAL},   0, 0, AV_OPT_FLAG_DECODING_PARAM, "standard" },
    { "NTSC",     "", 0, AV_OPT_TYPE_CONST, {.i64 = DV1394_NTSC},  0, 0, AV_OPT_FLAG_DECODING_PARAM, "standard" },
218
    { "channel",  "", offsetof(struct dv1394_data, channel), AV_OPT_TYPE_INT, {.i64 = DV1394_DEFAULT_CHANNEL}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
219 220 221 222 223 224 225 226 227 228
    { NULL },
};

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

229
AVInputFormat ff_dv1394_demuxer = {
230
    .name           = "dv1394",
231
    .long_name      = NULL_IF_CONFIG_SMALL("DV1394 A/V grab"),
232 233 234 235
    .priv_data_size = sizeof(struct dv1394_data),
    .read_header    = dv1394_read_header,
    .read_packet    = dv1394_read_packet,
    .read_close     = dv1394_close,
236 237
    .flags          = AVFMT_NOFILE,
    .priv_class     = &dv1394_class,
238
};