]> git.sesse.net Git - ffmpeg/blob - libavformat/dv1394.c
revert simplification (broke 192 bit keys)
[ffmpeg] / libavformat / 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 <unistd.h>
23 #include <fcntl.h>
24 #include <errno.h>
25 #include <sys/ioctl.h>
26 #include <sys/mman.h>
27 #include <sys/poll.h>
28 #include <sys/time.h>
29 #include <time.h>
30
31 #include "avformat.h"
32
33 #undef DV1394_DEBUG
34
35 #include "dv1394.h"
36 #include "dv.h"
37
38 struct dv1394_data {
39     int fd;
40     int channel;
41     int format;
42
43     void *ring; /* Ring buffer */
44     int index;  /* Current frame index */
45     int avail;  /* Number of frames available for reading */
46     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  * why we have to configure the device node for PAL, and then read only NTSC
55  * amount of data.
56  */
57 static int dv1394_reset(struct dv1394_data *dv)
58 {
59     struct dv1394_init init;
60
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     if (ioctl(dv->fd, DV1394_INIT, &init) < 0)
67         return -1;
68
69     dv->avail  = dv->done = 0;
70     return 0;
71 }
72
73 static int dv1394_start(struct dv1394_data *dv)
74 {
75     /* Tell DV1394 driver to enable receiver */
76     if (ioctl(dv->fd, DV1394_START_RECEIVE, 0) < 0) {
77         perror("Failed to start receiver");
78         return -1;
79     }
80     return 0;
81 }
82
83 static int dv1394_read_header(AVFormatContext * context, AVFormatParameters * ap)
84 {
85     struct dv1394_data *dv = context->priv_data;
86     const char *video_device;
87
88     dv->dv_demux = dv_init_demux(context);
89     if (!dv->dv_demux)
90         goto failed;
91
92     if (ap->standard && !strcasecmp(ap->standard, "pal"))
93         dv->format = DV1394_PAL;
94     else
95         dv->format = DV1394_NTSC;
96
97     if (ap->channel)
98         dv->channel = ap->channel;
99     else
100         dv->channel = DV1394_DEFAULT_CHANNEL;
101
102     /* Open and initialize DV1394 device */
103     video_device = ap->device;
104     if (!video_device)
105         video_device = "/dev/dv1394/0";
106     dv->fd = open(video_device, O_RDONLY);
107     if (dv->fd < 0) {
108         perror("Failed to open DV interface");
109         goto failed;
110     }
111
112     if (dv1394_reset(dv) < 0) {
113         perror("Failed to initialize DV interface");
114         goto failed;
115     }
116
117     dv->ring = mmap(NULL, DV1394_PAL_FRAME_SIZE * DV1394_RING_FRAMES,
118                     PROT_READ, MAP_PRIVATE, dv->fd, 0);
119     if (dv->ring == MAP_FAILED) {
120         perror("Failed to mmap DV ring buffer");
121         goto failed;
122     }
123
124     if (dv1394_start(dv) < 0)
125         goto failed;
126
127     return 0;
128
129 failed:
130     close(dv->fd);
131     return AVERROR_IO;
132 }
133
134 static int dv1394_read_packet(AVFormatContext *context, AVPacket *pkt)
135 {
136     struct dv1394_data *dv = context->priv_data;
137     int size;
138
139     size = dv_get_packet(dv->dv_demux, pkt);
140     if (size > 0)
141         return size;
142
143     if (!dv->avail) {
144         struct dv1394_status s;
145         struct pollfd p;
146
147         if (dv->done) {
148             /* Request more frames */
149             if (ioctl(dv->fd, DV1394_RECEIVE_FRAMES, dv->done) < 0) {
150                 /* This usually means that ring buffer overflowed.
151                  * We have to reset :(.
152                  */
153
154                 av_log(context, AV_LOG_ERROR, "DV1394: Ring buffer overflow. Reseting ..\n");
155
156                 dv1394_reset(dv);
157                 dv1394_start(dv);
158             }
159             dv->done = 0;
160         }
161
162         /* Wait until more frames are available */
163 restart_poll:
164         p.fd = dv->fd;
165         p.events = POLLIN | POLLERR | POLLHUP;
166         if (poll(&p, 1, -1) < 0) {
167             if (errno == EAGAIN || errno == EINTR)
168                 goto restart_poll;
169             perror("Poll failed");
170             return AVERROR_IO;
171         }
172
173         if (ioctl(dv->fd, DV1394_GET_STATUS, &s) < 0) {
174             perror("Failed to get status");
175             return AVERROR_IO;
176         }
177 #ifdef DV1394_DEBUG
178         av_log(context, AV_LOG_DEBUG, "DV1394: status\n"
179                 "\tactive_frame\t%d\n"
180                 "\tfirst_clear_frame\t%d\n"
181                 "\tn_clear_frames\t%d\n"
182                 "\tdropped_frames\t%d\n",
183                 s.active_frame, s.first_clear_frame,
184                 s.n_clear_frames, s.dropped_frames);
185 #endif
186
187         dv->avail = s.n_clear_frames;
188         dv->index = s.first_clear_frame;
189         dv->done  = 0;
190
191         if (s.dropped_frames) {
192             av_log(context, AV_LOG_ERROR, "DV1394: Frame drop detected (%d). Reseting ..\n",
193                     s.dropped_frames);
194
195             dv1394_reset(dv);
196             dv1394_start(dv);
197         }
198     }
199
200 #ifdef DV1394_DEBUG
201     av_log(context, AV_LOG_DEBUG, "index %d, avail %d, done %d\n", dv->index, dv->avail,
202             dv->done);
203 #endif
204
205     size = dv_produce_packet(dv->dv_demux, pkt,
206                              dv->ring + (dv->index * DV1394_PAL_FRAME_SIZE),
207                              DV1394_PAL_FRAME_SIZE);
208     dv->index = (dv->index + 1) % DV1394_RING_FRAMES;
209     dv->done++; dv->avail--;
210
211     return size;
212 }
213
214 static int dv1394_close(AVFormatContext * context)
215 {
216     struct dv1394_data *dv = context->priv_data;
217
218     /* Shutdown DV1394 receiver */
219     if (ioctl(dv->fd, DV1394_SHUTDOWN, 0) < 0)
220         perror("Failed to shutdown DV1394");
221
222     /* Unmap ring buffer */
223     if (munmap(dv->ring, DV1394_NTSC_FRAME_SIZE * DV1394_RING_FRAMES) < 0)
224         perror("Failed to munmap DV1394 ring buffer");
225
226     close(dv->fd);
227     av_free(dv->dv_demux);
228
229     return 0;
230 }
231
232 AVInputFormat dv1394_demuxer = {
233     .name           = "dv1394",
234     .long_name      = "dv1394 A/V grab",
235     .priv_data_size = sizeof(struct dv1394_data),
236     .read_header    = dv1394_read_header,
237     .read_packet    = dv1394_read_packet,
238     .read_close     = dv1394_close,
239     .flags          = AVFMT_NOFILE
240 };