1 /*
2 * JACK Audio Connection Kit input device
3 * Copyright (c) 2009 Samalyse
4 * Author: Olivier Guilyardi <olivier samalyse com>
5 *
6 * This file is part of FFmpeg.
7 *
8 * FFmpeg is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
12 *
13 * FFmpeg is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with FFmpeg; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23 #include "config.h"
24 #include <semaphore.h>
25 #include <jack/jack.h>
26
36
37 /**
38 * Size of the internal FIFO buffers as a number of audio packets
39 */
40 #define FIFO_PACKETS_NUM 16
41
57
59 {
60 /* Warning: this function runs in realtime. One mustn't allocate memory here
61 * or do any other thing that could block. */
62
63 int i, j;
66 jack_nframes_t latency, cycle_delay;
68 float *pkt_data;
69 double cycle_time;
70
71 if (!self->client)
72 return 0;
73
74 /* The approximate delay since the hardware interrupt as a number of frames */
75 cycle_delay = jack_frames_since_cycle_start(self->client);
76
77 /* Retrieve filtered cycle time */
79 av_gettime() / 1000000.0 - (
double) cycle_delay / self->sample_rate,
80 self->buffer_size);
81
82 /* Check if an empty packet is available, and if there's enough space to send it back once filled */
84 self->pkt_xrun = 1;
85 return 0;
86 }
87
88 /* Retrieve empty (but allocated) packet */
90
91 pkt_data = (
float *) pkt.
data;
92 latency = 0;
93
94 /* Copy and interleave audio data from the JACK buffer into the packet */
95 for (i = 0; i <
self->nports; i++) {
96 #if HAVE_JACK_PORT_GET_LATENCY_RANGE
97 jack_latency_range_t range;
98 jack_port_get_latency_range(self->ports[i], JackCaptureLatency, &range);
99 latency += range.max;
100 #else
101 latency += jack_port_get_total_latency(self->client, self->ports[i]);
102 #endif
103 buffer = jack_port_get_buffer(self->ports[i], self->buffer_size);
104 for (j = 0; j < self->buffer_size; j++)
105 pkt_data[j * self->nports + i] = buffer[j];
106 }
107
108 /* Timestamp the packet with the cycle start time minus the average latency */
109 pkt.
pts = (cycle_time - (double) latency / (self->nports * self->sample_rate)) * 1000000.0;
110
111 /* Send the now filled packet back, and increase packet counter */
113 sem_post(&self->packet_count);
114
115 return 0;
116 }
117
119 {
121 self->client = NULL;
122 }
123
125 {
127 self->jack_xrun = 1;
129 return 0;
130 }
131
133 {
135 int test, pkt_size =
self->buffer_size *
self->nports *
sizeof(float);
136
137 /* Supply the process callback with new empty packets, by filling the new
138 * packets FIFO buffer with as many packets as possible. process_callback()
139 * can't do this by itself, because it can't allocate memory in realtime. */
144 }
146 }
147 return 0;
148 }
149
151 {
153 jack_status_t status;
155
156 /* Register as a JACK client, using the context filename as client name. */
157 self->client = jack_client_open(context->
filename, JackNullOption, &status);
158 if (!self->client) {
161 }
162
163 sem_init(&self->packet_count, 0, 0);
164
165 self->sample_rate = jack_get_sample_rate(self->client);
167 self->buffer_size = jack_get_buffer_size(self->client);
168
169 /* Register JACK ports */
170 for (i = 0; i < self->nports; i++) {
171 char str[16];
172 snprintf(str,
sizeof(str),
"input_%d", i + 1);
173 self->ports[i] = jack_port_register(self->client, str,
174 JACK_DEFAULT_AUDIO_TYPE,
175 JackPortIsInput, 0);
176 if (!self->ports[i]) {
179 jack_client_close(self->client);
181 }
182 }
183
184 /* Register JACK callbacks */
188
189 /* Create time filter */
190 self->timefilter =
ff_timefilter_new (1.0 / self->sample_rate, self->buffer_size, 1.5);
191 if (!self->timefilter) {
192 jack_client_close(self->client);
194 }
195
196 /* Create FIFO buffers */
198 /* New packets FIFO with one extra packet for safety against underruns */
201 jack_client_close(self->client);
203 }
204
205 return 0;
206
207 }
208
210 {
215 }
217 }
218
220 {
221 if (self->client) {
222 if (self->activated)
223 jack_deactivate(self->client);
224 jack_client_close(self->client);
225 }
226 sem_destroy(&self->packet_count);
231 }
232
234 {
238
241
243 if (!stream) {
246 }
247
249 #if HAVE_BIGENDIAN
251 #else
253 #endif
256
258 return 0;
259 }
260
262 {
264 struct timespec timeout = {0, 0};
266
267 /* Activate the JACK client on first packet read. Activating the JACK client
268 * means that process_callback() starts to get called at regular interval.
269 * If we activate it in audio_read_header(), we're actually reading audio data
270 * from the device before instructed to, and that may result in an overrun. */
271 if (!self->activated) {
272 if (!jack_activate(self->client)) {
273 self->activated = 1;
275 "JACK client registered and activated (rate=%dHz, buffer_size=%d frames)\n",
276 self->sample_rate, self->buffer_size);
277 } else {
280 }
281 }
282
283 /* Wait for a packet coming back from process_callback(), if one isn't available yet */
285 if (sem_timedwait(&self->packet_count, &timeout)) {
286 if (errno == ETIMEDOUT) {
288 "Input error: timed out when waiting for JACK process callback output\n");
289 } else {
291 strerror(errno));
292 }
293 if (!self->client)
295
297 }
298
299 if (self->pkt_xrun) {
301 self->pkt_xrun = 0;
302 }
303
304 if (self->jack_xrun) {
306 self->jack_xrun = 0;
307 }
308
309 /* Retrieve the packet filled with audio data by process_callback() */
311
314
315 return 0;
316 }
317
319 {
322 return 0;
323 }
324
325 #define OFFSET(x) offsetof(JackData, x)
328 { NULL },
329 };
330
337 };
338
347 .priv_class = &jack_indev_class,
348 };