Mercurial > libavformat.hg
annotate dv1394.c @ 1160:c10e0dbce7de libavformat
set proper bits_per_sample value for ADPCM codecs
author | aurel |
---|---|
date | Sat, 08 Jul 2006 07:14:00 +0000 |
parents | 56db80b1131e |
children | d89d7ef290da |
rev | line source |
---|---|
27 | 1 /* |
2 * Linux DV1394 interface | |
3 * Copyright (c) 2003 Max Krasnyansky <maxk@qualcomm.com> | |
4 * | |
5 * This library is free software; you can redistribute it and/or | |
6 * modify it under the terms of the GNU Lesser General Public | |
7 * License as published by the Free Software Foundation; either | |
8 * version 2 of the License, or (at your option) any later version. | |
9 * | |
10 * This library is distributed in the hope that it will be useful, | |
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 * Lesser General Public License for more details. | |
14 * | |
15 * You should have received a copy of the GNU Lesser General Public | |
16 * License along with this library; if not, write to the Free Software | |
896
edbe5c3717f9
Update licensing information: The FSF changed postal address.
diego
parents:
887
diff
changeset
|
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
27 | 18 */ |
19 | |
20 #include <unistd.h> | |
21 #include <fcntl.h> | |
53
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
38
diff
changeset
|
22 #include <errno.h> |
27 | 23 #include <sys/ioctl.h> |
24 #include <sys/mman.h> | |
25 #include <sys/poll.h> | |
26 #include <sys/time.h> | |
27 #include <time.h> | |
28 | |
29 #include "avformat.h" | |
30 | |
31 #undef DV1394_DEBUG | |
32 | |
33 #include "dv1394.h" | |
262
f174d9c00bce
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
185
diff
changeset
|
34 #include "dv.h" |
27 | 35 |
36 struct dv1394_data { | |
37 int fd; | |
38 int channel; | |
38 | 39 int format; |
27 | 40 |
41 void *ring; /* Ring buffer */ | |
42 int index; /* Current frame index */ | |
43 int avail; /* Number of frames available for reading */ | |
44 int done; /* Number of completed frames */ | |
38 | 45 |
296
252946de6d3f
* DV demuxer is now capable of decoding auxilary audio stream. So,
romansh
parents:
262
diff
changeset
|
46 DVDemuxContext* dv_demux; /* Generic DV muxing/demuxing context */ |
27 | 47 }; |
48 | |
885 | 49 /* |
185
d98ed04d62a6
patch for DV capturing by Dan Dennedy <dan at dennedy dot org>
romansh
parents:
159
diff
changeset
|
50 * The trick here is to kludge around well known problem with kernel Ooopsing |
885 | 51 * when you try to capture PAL on a device node configure for NTSC. That's |
185
d98ed04d62a6
patch for DV capturing by Dan Dennedy <dan at dennedy dot org>
romansh
parents:
159
diff
changeset
|
52 * why we have to configure the device node for PAL, and then read only NTSC |
d98ed04d62a6
patch for DV capturing by Dan Dennedy <dan at dennedy dot org>
romansh
parents:
159
diff
changeset
|
53 * amount of data. |
d98ed04d62a6
patch for DV capturing by Dan Dennedy <dan at dennedy dot org>
romansh
parents:
159
diff
changeset
|
54 */ |
27 | 55 static int dv1394_reset(struct dv1394_data *dv) |
56 { | |
57 struct dv1394_init init; | |
58 | |
38 | 59 init.channel = dv->channel; |
27 | 60 init.api_version = DV1394_API_VERSION; |
38 | 61 init.n_frames = DV1394_RING_FRAMES; |
185
d98ed04d62a6
patch for DV capturing by Dan Dennedy <dan at dennedy dot org>
romansh
parents:
159
diff
changeset
|
62 init.format = DV1394_PAL; |
27 | 63 |
64 if (ioctl(dv->fd, DV1394_INIT, &init) < 0) | |
65 return -1; | |
66 | |
53
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
38
diff
changeset
|
67 dv->avail = dv->done = 0; |
27 | 68 return 0; |
69 } | |
70 | |
71 static int dv1394_start(struct dv1394_data *dv) | |
72 { | |
73 /* Tell DV1394 driver to enable receiver */ | |
74 if (ioctl(dv->fd, DV1394_START_RECEIVE, 0) < 0) { | |
75 perror("Failed to start receiver"); | |
76 return -1; | |
77 } | |
78 return 0; | |
79 } | |
80 | |
81 static int dv1394_read_header(AVFormatContext * context, AVFormatParameters * ap) | |
82 { | |
83 struct dv1394_data *dv = context->priv_data; | |
30
90fd30dd68b3
grab device is in AVFormatParameter (at least better than global variable)
bellard
parents:
27
diff
changeset
|
84 const char *video_device; |
27 | 85 |
296
252946de6d3f
* DV demuxer is now capable of decoding auxilary audio stream. So,
romansh
parents:
262
diff
changeset
|
86 dv->dv_demux = dv_init_demux(context); |
262
f174d9c00bce
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
185
diff
changeset
|
87 if (!dv->dv_demux) |
f174d9c00bce
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
185
diff
changeset
|
88 goto failed; |
27 | 89 |
159
7d698c3213a0
tv standard selection support for dv1394 and grab (v4l)
al3x
parents:
156
diff
changeset
|
90 if (ap->standard && !strcasecmp(ap->standard, "pal")) |
887 | 91 dv->format = DV1394_PAL; |
159
7d698c3213a0
tv standard selection support for dv1394 and grab (v4l)
al3x
parents:
156
diff
changeset
|
92 else |
887 | 93 dv->format = DV1394_NTSC; |
31
36dd902f98d2
dv1394 channel selection by Max Krasnyansky - modified channel number to be in base 10 by default
bellard
parents:
30
diff
changeset
|
94 |
36dd902f98d2
dv1394 channel selection by Max Krasnyansky - modified channel number to be in base 10 by default
bellard
parents:
30
diff
changeset
|
95 if (ap->channel) |
36dd902f98d2
dv1394 channel selection by Max Krasnyansky - modified channel number to be in base 10 by default
bellard
parents:
30
diff
changeset
|
96 dv->channel = ap->channel; |
36dd902f98d2
dv1394 channel selection by Max Krasnyansky - modified channel number to be in base 10 by default
bellard
parents:
30
diff
changeset
|
97 else |
36dd902f98d2
dv1394 channel selection by Max Krasnyansky - modified channel number to be in base 10 by default
bellard
parents:
30
diff
changeset
|
98 dv->channel = DV1394_DEFAULT_CHANNEL; |
27 | 99 |
100 /* Open and initialize DV1394 device */ | |
30
90fd30dd68b3
grab device is in AVFormatParameter (at least better than global variable)
bellard
parents:
27
diff
changeset
|
101 video_device = ap->device; |
90fd30dd68b3
grab device is in AVFormatParameter (at least better than global variable)
bellard
parents:
27
diff
changeset
|
102 if (!video_device) |
90fd30dd68b3
grab device is in AVFormatParameter (at least better than global variable)
bellard
parents:
27
diff
changeset
|
103 video_device = "/dev/dv1394/0"; |
27 | 104 dv->fd = open(video_device, O_RDONLY); |
105 if (dv->fd < 0) { | |
106 perror("Failed to open DV interface"); | |
107 goto failed; | |
108 } | |
109 | |
110 if (dv1394_reset(dv) < 0) { | |
111 perror("Failed to initialize DV interface"); | |
112 goto failed; | |
113 } | |
114 | |
185
d98ed04d62a6
patch for DV capturing by Dan Dennedy <dan at dennedy dot org>
romansh
parents:
159
diff
changeset
|
115 dv->ring = mmap(NULL, DV1394_PAL_FRAME_SIZE * DV1394_RING_FRAMES, |
27 | 116 PROT_READ, MAP_PRIVATE, dv->fd, 0); |
185
d98ed04d62a6
patch for DV capturing by Dan Dennedy <dan at dennedy dot org>
romansh
parents:
159
diff
changeset
|
117 if (dv->ring == MAP_FAILED) { |
27 | 118 perror("Failed to mmap DV ring buffer"); |
119 goto failed; | |
120 } | |
121 | |
122 if (dv1394_start(dv) < 0) | |
123 goto failed; | |
124 | |
125 return 0; | |
126 | |
127 failed: | |
128 close(dv->fd); | |
482 | 129 return AVERROR_IO; |
27 | 130 } |
131 | |
38 | 132 static int dv1394_read_packet(AVFormatContext *context, AVPacket *pkt) |
27 | 133 { |
134 struct dv1394_data *dv = context->priv_data; | |
262
f174d9c00bce
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
185
diff
changeset
|
135 int size; |
f174d9c00bce
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
185
diff
changeset
|
136 |
f174d9c00bce
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
185
diff
changeset
|
137 size = dv_get_packet(dv->dv_demux, pkt); |
f174d9c00bce
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
185
diff
changeset
|
138 if (size > 0) |
392 | 139 return size; |
27 | 140 |
141 if (!dv->avail) { | |
142 struct dv1394_status s; | |
143 struct pollfd p; | |
53
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
38
diff
changeset
|
144 |
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
38
diff
changeset
|
145 if (dv->done) { |
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
38
diff
changeset
|
146 /* Request more frames */ |
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
38
diff
changeset
|
147 if (ioctl(dv->fd, DV1394_RECEIVE_FRAMES, dv->done) < 0) { |
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
38
diff
changeset
|
148 /* This usually means that ring buffer overflowed. |
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
38
diff
changeset
|
149 * We have to reset :(. |
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
38
diff
changeset
|
150 */ |
885 | 151 |
370
845f9de2c883
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
296
diff
changeset
|
152 av_log(context, AV_LOG_ERROR, "DV1394: Ring buffer overflow. Reseting ..\n"); |
885 | 153 |
53
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
38
diff
changeset
|
154 dv1394_reset(dv); |
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
38
diff
changeset
|
155 dv1394_start(dv); |
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
38
diff
changeset
|
156 } |
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
38
diff
changeset
|
157 dv->done = 0; |
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
38
diff
changeset
|
158 } |
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
38
diff
changeset
|
159 |
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
38
diff
changeset
|
160 /* Wait until more frames are available */ |
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
38
diff
changeset
|
161 restart_poll: |
27 | 162 p.fd = dv->fd; |
163 p.events = POLLIN | POLLERR | POLLHUP; | |
164 if (poll(&p, 1, -1) < 0) { | |
53
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
38
diff
changeset
|
165 if (errno == EAGAIN || errno == EINTR) |
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
38
diff
changeset
|
166 goto restart_poll; |
27 | 167 perror("Poll failed"); |
482 | 168 return AVERROR_IO; |
27 | 169 } |
170 | |
171 if (ioctl(dv->fd, DV1394_GET_STATUS, &s) < 0) { | |
172 perror("Failed to get status"); | |
482 | 173 return AVERROR_IO; |
27 | 174 } |
175 #ifdef DV1394_DEBUG | |
1002
56db80b1131e
Use AV_LOG_DEBUG loglevel instead of AV_LOG_ERROR where appropriate.
diego
parents:
1001
diff
changeset
|
176 av_log(context, AV_LOG_DEBUG, "DV1394: status\n" |
27 | 177 "\tactive_frame\t%d\n" |
178 "\tfirst_clear_frame\t%d\n" | |
179 "\tn_clear_frames\t%d\n" | |
180 "\tdropped_frames\t%d\n", | |
181 s.active_frame, s.first_clear_frame, | |
182 s.n_clear_frames, s.dropped_frames); | |
183 #endif | |
184 | |
185 dv->avail = s.n_clear_frames; | |
186 dv->index = s.first_clear_frame; | |
53
fb671d87824e
zero copy packet handling for DV1394 by Max Krasnyansky
bellard
parents:
38
diff
changeset
|
187 dv->done = 0; |
27 | 188 |
189 if (s.dropped_frames) { | |
370
845f9de2c883
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
296
diff
changeset
|
190 av_log(context, AV_LOG_ERROR, "DV1394: Frame drop detected (%d). Reseting ..\n", |
27 | 191 s.dropped_frames); |
192 | |
193 dv1394_reset(dv); | |
194 dv1394_start(dv); | |
195 } | |
196 } | |
197 | |
198 #ifdef DV1394_DEBUG | |
1002
56db80b1131e
Use AV_LOG_DEBUG loglevel instead of AV_LOG_ERROR where appropriate.
diego
parents:
1001
diff
changeset
|
199 av_log(context, AV_LOG_DEBUG, "index %d, avail %d, done %d\n", dv->index, dv->avail, |
27 | 200 dv->done); |
201 #endif | |
202 | |
885 | 203 size = dv_produce_packet(dv->dv_demux, pkt, |
204 dv->ring + (dv->index * DV1394_PAL_FRAME_SIZE), | |
887 | 205 DV1394_PAL_FRAME_SIZE); |
262
f174d9c00bce
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
185
diff
changeset
|
206 dv->index = (dv->index + 1) % DV1394_RING_FRAMES; |
f174d9c00bce
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
185
diff
changeset
|
207 dv->done++; dv->avail--; |
885 | 208 |
262
f174d9c00bce
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
185
diff
changeset
|
209 return size; |
27 | 210 } |
211 | |
212 static int dv1394_close(AVFormatContext * context) | |
213 { | |
214 struct dv1394_data *dv = context->priv_data; | |
215 | |
216 /* Shutdown DV1394 receiver */ | |
217 if (ioctl(dv->fd, DV1394_SHUTDOWN, 0) < 0) | |
218 perror("Failed to shutdown DV1394"); | |
219 | |
220 /* Unmap ring buffer */ | |
221 if (munmap(dv->ring, DV1394_NTSC_FRAME_SIZE * DV1394_RING_FRAMES) < 0) | |
222 perror("Failed to munmap DV1394 ring buffer"); | |
223 | |
224 close(dv->fd); | |
262
f174d9c00bce
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
185
diff
changeset
|
225 av_free(dv->dv_demux); |
27 | 226 |
227 return 0; | |
228 } | |
229 | |
230 static AVInputFormat dv1394_format = { | |
231 .name = "dv1394", | |
232 .long_name = "dv1394 A/V grab", | |
233 .priv_data_size = sizeof(struct dv1394_data), | |
234 .read_header = dv1394_read_header, | |
235 .read_packet = dv1394_read_packet, | |
236 .read_close = dv1394_close, | |
237 .flags = AVFMT_NOFILE | |
238 }; | |
239 | |
240 int dv1394_init(void) | |
241 { | |
242 av_register_input_format(&dv1394_format); | |
243 return 0; | |
244 } |