]> git.sesse.net Git - ffmpeg/blob - libavdevice/dv1394.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavdevice / dv1394.c
1 /*
2  * Linux DV1394 interface
3  * Copyright (c) 2003 Max Krasnyansky <maxk@qualcomm.com>
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * 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  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
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
20  */
21
22 #include "config.h"
23 #include <unistd.h>
24 #include <fcntl.h>
25 #include <errno.h>
26 #include <poll.h>
27 #include <sys/ioctl.h>
28 #include <sys/mman.h>
29 #include <sys/time.h>
30 #include <time.h>
31 #include <strings.h>
32
33 #include "libavutil/log.h"
34 #include "libavutil/opt.h"
35 #include "avdevice.h"
36 #include "libavformat/dv.h"
37 #include "dv1394.h"
38
39 struct dv1394_data {
40     AVClass *class;
41     int fd;
42     int channel;
43     int format;
44
45     uint8_t *ring; /* Ring buffer */
46     int index;  /* Current frame index */
47     int avail;  /* Number of frames available for reading */
48     int done;   /* Number of completed frames */
49
50     DVDemuxContext* dv_demux; /* Generic DV muxing/demuxing context */
51 };
52
53 /*
54  * The trick here is to kludge around well known problem with kernel Ooopsing
55  * when you try to capture PAL on a device node configure for NTSC. That's
56  * why we have to configure the device node for PAL, and then read only NTSC
57  * amount of data.
58  */
59 static int dv1394_reset(struct dv1394_data *dv)
60 {
61     struct dv1394_init init;
62
63     init.channel     = dv->channel;
64     init.api_version = DV1394_API_VERSION;
65     init.n_frames    = DV1394_RING_FRAMES;
66     init.format      = DV1394_PAL;
67
68     if (ioctl(dv->fd, DV1394_INIT, &init) < 0)
69         return -1;
70
71     dv->avail  = dv->done = 0;
72     return 0;
73 }
74
75 static int dv1394_start(struct dv1394_data *dv)
76 {
77     /* Tell DV1394 driver to enable receiver */
78     if (ioctl(dv->fd, DV1394_START_RECEIVE, 0) < 0) {
79         av_log(NULL, AV_LOG_ERROR, "Failed to start receiver: %s\n", strerror(errno));
80         return -1;
81     }
82     return 0;
83 }
84
85 static int dv1394_read_header(AVFormatContext * context, AVFormatParameters * ap)
86 {
87     struct dv1394_data *dv = context->priv_data;
88
89     dv->dv_demux = dv_init_demux(context);
90     if (!dv->dv_demux)
91         goto failed;
92
93     /* Open and initialize DV1394 device */
94     dv->fd = open(context->filename, O_RDONLY);
95     if (dv->fd < 0) {
96         av_log(context, AV_LOG_ERROR, "Failed to open DV interface: %s\n", strerror(errno));
97         goto failed;
98     }
99
100     if (dv1394_reset(dv) < 0) {
101         av_log(context, AV_LOG_ERROR, "Failed to initialize DV interface: %s\n", strerror(errno));
102         goto failed;
103     }
104
105     dv->ring = mmap(NULL, DV1394_PAL_FRAME_SIZE * DV1394_RING_FRAMES,
106                     PROT_READ, MAP_PRIVATE, dv->fd, 0);
107     if (dv->ring == MAP_FAILED) {
108         av_log(context, AV_LOG_ERROR, "Failed to mmap DV ring buffer: %s\n", strerror(errno));
109         goto failed;
110     }
111
112     if (dv1394_start(dv) < 0)
113         goto failed;
114
115     return 0;
116
117 failed:
118     close(dv->fd);
119     return AVERROR(EIO);
120 }
121
122 static int dv1394_read_packet(AVFormatContext *context, AVPacket *pkt)
123 {
124     struct dv1394_data *dv = context->priv_data;
125     int size;
126
127     size = dv_get_packet(dv->dv_demux, pkt);
128     if (size > 0)
129         return size;
130
131     if (!dv->avail) {
132         struct dv1394_status s;
133         struct pollfd p;
134
135         if (dv->done) {
136             /* Request more frames */
137             if (ioctl(dv->fd, DV1394_RECEIVE_FRAMES, dv->done) < 0) {
138                 /* This usually means that ring buffer overflowed.
139                  * We have to reset :(.
140                  */
141
142                 av_log(context, AV_LOG_ERROR, "DV1394: Ring buffer overflow. Reseting ..\n");
143
144                 dv1394_reset(dv);
145                 dv1394_start(dv);
146             }
147             dv->done = 0;
148         }
149
150         /* Wait until more frames are available */
151 restart_poll:
152         p.fd = dv->fd;
153         p.events = POLLIN | POLLERR | POLLHUP;
154         if (poll(&p, 1, -1) < 0) {
155             if (errno == EAGAIN || errno == EINTR)
156                 goto restart_poll;
157             av_log(context, AV_LOG_ERROR, "Poll failed: %s\n", strerror(errno));
158             return AVERROR(EIO);
159         }
160
161         if (ioctl(dv->fd, DV1394_GET_STATUS, &s) < 0) {
162             av_log(context, AV_LOG_ERROR, "Failed to get status: %s\n", strerror(errno));
163             return AVERROR(EIO);
164         }
165         av_dlog(context, "DV1394: status\n"
166                 "\tactive_frame\t%d\n"
167                 "\tfirst_clear_frame\t%d\n"
168                 "\tn_clear_frames\t%d\n"
169                 "\tdropped_frames\t%d\n",
170                 s.active_frame, s.first_clear_frame,
171                 s.n_clear_frames, s.dropped_frames);
172
173         dv->avail = s.n_clear_frames;
174         dv->index = s.first_clear_frame;
175         dv->done  = 0;
176
177         if (s.dropped_frames) {
178             av_log(context, AV_LOG_ERROR, "DV1394: Frame drop detected (%d). Reseting ..\n",
179                     s.dropped_frames);
180
181             dv1394_reset(dv);
182             dv1394_start(dv);
183         }
184     }
185
186     av_dlog(context, "index %d, avail %d, done %d\n", dv->index, dv->avail,
187             dv->done);
188
189     size = dv_produce_packet(dv->dv_demux, pkt,
190                              dv->ring + (dv->index * DV1394_PAL_FRAME_SIZE),
191                              DV1394_PAL_FRAME_SIZE, -1);
192     dv->index = (dv->index + 1) % DV1394_RING_FRAMES;
193     dv->done++; dv->avail--;
194
195     return size;
196 }
197
198 static int dv1394_close(AVFormatContext * context)
199 {
200     struct dv1394_data *dv = context->priv_data;
201
202     /* Shutdown DV1394 receiver */
203     if (ioctl(dv->fd, DV1394_SHUTDOWN, 0) < 0)
204         av_log(context, AV_LOG_ERROR, "Failed to shutdown DV1394: %s\n", strerror(errno));
205
206     /* Unmap ring buffer */
207     if (munmap(dv->ring, DV1394_NTSC_FRAME_SIZE * DV1394_RING_FRAMES) < 0)
208         av_log(context, AV_LOG_ERROR, "Failed to munmap DV1394 ring buffer: %s\n", strerror(errno));
209
210     close(dv->fd);
211     av_free(dv->dv_demux);
212
213     return 0;
214 }
215
216 static const AVOption options[] = {
217     { "standard", "", offsetof(struct dv1394_data, format), AV_OPT_TYPE_INT, {.dbl = DV1394_NTSC}, DV1394_PAL, DV1394_NTSC, AV_OPT_FLAG_DECODING_PARAM, "standard" },
218     { "PAL",      "", 0, AV_OPT_TYPE_CONST, {.dbl = DV1394_PAL},   0, 0, AV_OPT_FLAG_DECODING_PARAM, "standard" },
219     { "NTSC",     "", 0, AV_OPT_TYPE_CONST, {.dbl = DV1394_NTSC},  0, 0, AV_OPT_FLAG_DECODING_PARAM, "standard" },
220     { "channel",  "", offsetof(struct dv1394_data, channel), AV_OPT_TYPE_INT, {.dbl = DV1394_DEFAULT_CHANNEL}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
221     { NULL },
222 };
223
224 static const AVClass dv1394_class = {
225     .class_name = "DV1394 indev",
226     .item_name  = av_default_item_name,
227     .option     = options,
228     .version    = LIBAVUTIL_VERSION_INT,
229 };
230
231 AVInputFormat ff_dv1394_demuxer = {
232     .name           = "dv1394",
233     .long_name      = NULL_IF_CONFIG_SMALL("DV1394 A/V grab"),
234     .priv_data_size = sizeof(struct dv1394_data),
235     .read_header    = dv1394_read_header,
236     .read_packet    = dv1394_read_packet,
237     .read_close     = dv1394_close,
238     .flags          = AVFMT_NOFILE,
239     .priv_class     = &dv1394_class,
240 };