FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
jack.c
Go to the documentation of this file.
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 
27 #include "libavutil/internal.h"
28 #include "libavutil/log.h"
29 #include "libavutil/fifo.h"
30 #include "libavutil/opt.h"
31 #include "libavutil/time.h"
32 #include "libavcodec/avcodec.h"
33 #include "libavformat/avformat.h"
34 #include "libavformat/internal.h"
35 #include "timefilter.h"
36 #include "avdevice.h"
37 
38 #if HAVE_DISPATCH_DISPATCH_H
39 #include <dispatch/dispatch.h>
40 #define sem_t dispatch_semaphore_t
41 #define sem_init(psem,x,val) *psem = dispatch_semaphore_create(val)
42 #define sem_post(psem) dispatch_semaphore_signal(*psem)
43 #define sem_wait(psem) dispatch_semaphore_wait(*psem, DISPATCH_TIME_FOREVER)
44 #define sem_timedwait(psem, val) dispatch_semaphore_wait(*psem, dispatch_walltime(val, 0))
45 #define sem_destroy(psem) dispatch_release(*psem)
46 #endif
47 
48 /**
49  * Size of the internal FIFO buffers as a number of audio packets
50  */
51 #define FIFO_PACKETS_NUM 16
52 
53 typedef struct JackData {
54  AVClass *class;
55  jack_client_t * client;
56  int activated;
58  jack_nframes_t sample_rate;
59  jack_nframes_t buffer_size;
60  jack_port_t ** ports;
61  int nports;
65  int pkt_xrun;
66  int jack_xrun;
67 } JackData;
68 
69 static int process_callback(jack_nframes_t nframes, void *arg)
70 {
71  /* Warning: this function runs in realtime. One mustn't allocate memory here
72  * or do any other thing that could block. */
73 
74  int i, j;
75  JackData *self = arg;
76  float * buffer;
77  jack_nframes_t latency, cycle_delay;
78  AVPacket pkt;
79  float *pkt_data;
80  double cycle_time;
81 
82  if (!self->client)
83  return 0;
84 
85  /* The approximate delay since the hardware interrupt as a number of frames */
86  cycle_delay = jack_frames_since_cycle_start(self->client);
87 
88  /* Retrieve filtered cycle time */
89  cycle_time = ff_timefilter_update(self->timefilter,
90  av_gettime() / 1000000.0 - (double) cycle_delay / self->sample_rate,
91  self->buffer_size);
92 
93  /* Check if an empty packet is available, and if there's enough space to send it back once filled */
94  if ((av_fifo_size(self->new_pkts) < sizeof(pkt)) || (av_fifo_space(self->filled_pkts) < sizeof(pkt))) {
95  self->pkt_xrun = 1;
96  return 0;
97  }
98 
99  /* Retrieve empty (but allocated) packet */
100  av_fifo_generic_read(self->new_pkts, &pkt, sizeof(pkt), NULL);
101 
102  pkt_data = (float *) pkt.data;
103  latency = 0;
104 
105  /* Copy and interleave audio data from the JACK buffer into the packet */
106  for (i = 0; i < self->nports; i++) {
107  #if HAVE_JACK_PORT_GET_LATENCY_RANGE
108  jack_latency_range_t range;
109  jack_port_get_latency_range(self->ports[i], JackCaptureLatency, &range);
110  latency += range.max;
111  #else
112  latency += jack_port_get_total_latency(self->client, self->ports[i]);
113  #endif
114  buffer = jack_port_get_buffer(self->ports[i], self->buffer_size);
115  for (j = 0; j < self->buffer_size; j++)
116  pkt_data[j * self->nports + i] = buffer[j];
117  }
118 
119  /* Timestamp the packet with the cycle start time minus the average latency */
120  pkt.pts = (cycle_time - (double) latency / (self->nports * self->sample_rate)) * 1000000.0;
121 
122  /* Send the now filled packet back, and increase packet counter */
123  av_fifo_generic_write(self->filled_pkts, &pkt, sizeof(pkt), NULL);
124  sem_post(&self->packet_count);
125 
126  return 0;
127 }
128 
129 static void shutdown_callback(void *arg)
130 {
131  JackData *self = arg;
132  self->client = NULL;
133 }
134 
135 static int xrun_callback(void *arg)
136 {
137  JackData *self = arg;
138  self->jack_xrun = 1;
139  ff_timefilter_reset(self->timefilter);
140  return 0;
141 }
142 
143 static int supply_new_packets(JackData *self, AVFormatContext *context)
144 {
145  AVPacket pkt;
146  int test, pkt_size = self->buffer_size * self->nports * sizeof(float);
147 
148  /* Supply the process callback with new empty packets, by filling the new
149  * packets FIFO buffer with as many packets as possible. process_callback()
150  * can't do this by itself, because it can't allocate memory in realtime. */
151  while (av_fifo_space(self->new_pkts) >= sizeof(pkt)) {
152  if ((test = av_new_packet(&pkt, pkt_size)) < 0) {
153  av_log(context, AV_LOG_ERROR, "Could not create packet of size %d\n", pkt_size);
154  return test;
155  }
156  av_fifo_generic_write(self->new_pkts, &pkt, sizeof(pkt), NULL);
157  }
158  return 0;
159 }
160 
161 static int start_jack(AVFormatContext *context)
162 {
163  JackData *self = context->priv_data;
164  jack_status_t status;
165  int i, test;
166 
167  /* Register as a JACK client, using the context filename as client name. */
168  self->client = jack_client_open(context->filename, JackNullOption, &status);
169  if (!self->client) {
170  av_log(context, AV_LOG_ERROR, "Unable to register as a JACK client\n");
171  return AVERROR(EIO);
172  }
173 
174  sem_init(&self->packet_count, 0, 0);
175 
176  self->sample_rate = jack_get_sample_rate(self->client);
177  self->ports = av_malloc_array(self->nports, sizeof(*self->ports));
178  if (!self->ports)
179  return AVERROR(ENOMEM);
180  self->buffer_size = jack_get_buffer_size(self->client);
181 
182  /* Register JACK ports */
183  for (i = 0; i < self->nports; i++) {
184  char str[16];
185  snprintf(str, sizeof(str), "input_%d", i + 1);
186  self->ports[i] = jack_port_register(self->client, str,
187  JACK_DEFAULT_AUDIO_TYPE,
188  JackPortIsInput, 0);
189  if (!self->ports[i]) {
190  av_log(context, AV_LOG_ERROR, "Unable to register port %s:%s\n",
191  context->filename, str);
192  jack_client_close(self->client);
193  return AVERROR(EIO);
194  }
195  }
196 
197  /* Register JACK callbacks */
198  jack_set_process_callback(self->client, process_callback, self);
199  jack_on_shutdown(self->client, shutdown_callback, self);
200  jack_set_xrun_callback(self->client, xrun_callback, self);
201 
202  /* Create time filter */
203  self->timefilter = ff_timefilter_new (1.0 / self->sample_rate, self->buffer_size, 1.5);
204  if (!self->timefilter) {
205  jack_client_close(self->client);
206  return AVERROR(ENOMEM);
207  }
208 
209  /* Create FIFO buffers */
210  self->filled_pkts = av_fifo_alloc_array(FIFO_PACKETS_NUM, sizeof(AVPacket));
211  /* New packets FIFO with one extra packet for safety against underruns */
212  self->new_pkts = av_fifo_alloc_array((FIFO_PACKETS_NUM + 1), sizeof(AVPacket));
213  if (!self->new_pkts) {
214  jack_client_close(self->client);
215  return AVERROR(ENOMEM);
216  }
217  if ((test = supply_new_packets(self, context))) {
218  jack_client_close(self->client);
219  return test;
220  }
221 
222  return 0;
223 
224 }
225 
226 static void free_pkt_fifo(AVFifoBuffer **fifo)
227 {
228  AVPacket pkt;
229  while (av_fifo_size(*fifo)) {
230  av_fifo_generic_read(*fifo, &pkt, sizeof(pkt), NULL);
231  av_packet_unref(&pkt);
232  }
233  av_fifo_freep(fifo);
234 }
235 
236 static void stop_jack(JackData *self)
237 {
238  if (self->client) {
239  if (self->activated)
240  jack_deactivate(self->client);
241  jack_client_close(self->client);
242  }
243  sem_destroy(&self->packet_count);
244  free_pkt_fifo(&self->new_pkts);
245  free_pkt_fifo(&self->filled_pkts);
246  av_freep(&self->ports);
247  ff_timefilter_destroy(self->timefilter);
248 }
249 
250 static int audio_read_header(AVFormatContext *context)
251 {
252  JackData *self = context->priv_data;
253  AVStream *stream;
254  int test;
255 
256  if ((test = start_jack(context)))
257  return test;
258 
259  stream = avformat_new_stream(context, NULL);
260  if (!stream) {
261  stop_jack(self);
262  return AVERROR(ENOMEM);
263  }
264 
266 #if HAVE_BIGENDIAN
268 #else
270 #endif
271  stream->codecpar->sample_rate = self->sample_rate;
272  stream->codecpar->channels = self->nports;
273 
274  avpriv_set_pts_info(stream, 64, 1, 1000000); /* 64 bits pts in us */
275  return 0;
276 }
277 
279 {
280  JackData *self = context->priv_data;
281  struct timespec timeout = {0, 0};
282  int test;
283 
284  /* Activate the JACK client on first packet read. Activating the JACK client
285  * means that process_callback() starts to get called at regular interval.
286  * If we activate it in audio_read_header(), we're actually reading audio data
287  * from the device before instructed to, and that may result in an overrun. */
288  if (!self->activated) {
289  if (!jack_activate(self->client)) {
290  self->activated = 1;
291  av_log(context, AV_LOG_INFO,
292  "JACK client registered and activated (rate=%dHz, buffer_size=%d frames)\n",
293  self->sample_rate, self->buffer_size);
294  } else {
295  av_log(context, AV_LOG_ERROR, "Unable to activate JACK client\n");
296  return AVERROR(EIO);
297  }
298  }
299 
300  /* Wait for a packet coming back from process_callback(), if one isn't available yet */
301  timeout.tv_sec = av_gettime() / 1000000 + 2;
302  if (sem_timedwait(&self->packet_count, &timeout)) {
303  if (errno == ETIMEDOUT) {
304  av_log(context, AV_LOG_ERROR,
305  "Input error: timed out when waiting for JACK process callback output\n");
306  } else {
307  char errbuf[128];
308  int ret = AVERROR(errno);
309  av_strerror(ret, errbuf, sizeof(errbuf));
310  av_log(context, AV_LOG_ERROR, "Error while waiting for audio packet: %s\n",
311  errbuf);
312  }
313  if (!self->client)
314  av_log(context, AV_LOG_ERROR, "Input error: JACK server is gone\n");
315 
316  return AVERROR(EIO);
317  }
318 
319  if (self->pkt_xrun) {
320  av_log(context, AV_LOG_WARNING, "Audio packet xrun\n");
321  self->pkt_xrun = 0;
322  }
323 
324  if (self->jack_xrun) {
325  av_log(context, AV_LOG_WARNING, "JACK xrun\n");
326  self->jack_xrun = 0;
327  }
328 
329  /* Retrieve the packet filled with audio data by process_callback() */
330  av_fifo_generic_read(self->filled_pkts, pkt, sizeof(*pkt), NULL);
331 
332  if ((test = supply_new_packets(self, context)))
333  return test;
334 
335  return 0;
336 }
337 
338 static int audio_read_close(AVFormatContext *context)
339 {
340  JackData *self = context->priv_data;
341  stop_jack(self);
342  return 0;
343 }
344 
345 #define OFFSET(x) offsetof(JackData, x)
346 static const AVOption options[] = {
347  { "channels", "Number of audio channels.", OFFSET(nports), AV_OPT_TYPE_INT, { .i64 = 2 }, 1, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
348  { NULL },
349 };
350 
351 static const AVClass jack_indev_class = {
352  .class_name = "JACK indev",
353  .item_name = av_default_item_name,
354  .option = options,
355  .version = LIBAVUTIL_VERSION_INT,
357 };
358 
360  .name = "jack",
361  .long_name = NULL_IF_CONFIG_SMALL("JACK Audio Connection Kit"),
362  .priv_data_size = sizeof(JackData),
366  .flags = AVFMT_NOFILE,
367  .priv_class = &jack_indev_class,
368 };
jack_client_t * client
Definition: jack.c:55
#define NULL
Definition: coverity.c:32
int pkt_xrun
Definition: jack.c:65
AVOption.
Definition: opt.h:245
void ff_timefilter_destroy(TimeFilter *self)
Free all resources associated with the filter.
Definition: timefilter.c:62
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:182
#define LIBAVUTIL_VERSION_INT
Definition: version.h:70
void ff_timefilter_reset(TimeFilter *self)
Reset the filter.
Definition: timefilter.c:67
void avpriv_set_pts_info(AVStream *s, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the time base and wrapping info for a given stream.
Definition: utils.c:4427
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition: avcodec.h:3922
int jack_xrun
Definition: jack.c:66
static AVPacket pkt
#define sem_t
Definition: semaphore.h:25
int av_fifo_generic_write(AVFifoBuffer *f, void *src, int size, int(*func)(void *, void *, int))
Feed data from a user-supplied callback to an AVFifoBuffer.
Definition: fifo.c:122
Definition: jack.c:53
Format I/O context.
Definition: avformat.h:1325
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:72
Opaque type representing a time filter state.
Definition: timefilter.c:30
AVOptions.
static int supply_new_packets(JackData *self, AVFormatContext *context)
Definition: jack.c:143
int av_fifo_space(const AVFifoBuffer *f)
Return the amount of space in bytes in the AVFifoBuffer, that is the amount of data you can write int...
Definition: fifo.c:82
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
Definition: utils.c:4065
AVInputFormat ff_jack_demuxer
Definition: jack.c:359
AVFifoBuffer * filled_pkts
Definition: jack.c:64
static void free_pkt_fifo(AVFifoBuffer **fifo)
Definition: jack.c:226
jack_port_t ** ports
Definition: jack.c:60
#define sem_init
Definition: semaphore.h:40
uint8_t * data
Definition: avcodec.h:1580
static av_cold int read_close(AVFormatContext *ctx)
Definition: libcdio.c:145
#define FIFO_PACKETS_NUM
Size of the internal FIFO buffers as a number of audio packets.
Definition: jack.c:51
#define sem_post(psem)
Definition: semaphore.h:26
#define av_log(a,...)
Main libavdevice API header.
int av_new_packet(AVPacket *pkt, int size)
Allocate the payload of a packet and initialize its fields with default values.
Definition: avpacket.c:86
int nports
Definition: jack.c:61
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
av_default_item_name
#define AVERROR(e)
Definition: error.h:43
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:176
int av_fifo_generic_read(AVFifoBuffer *f, void *dest, int buf_size, void(*func)(void *, void *, int))
Feed data from an AVFifoBuffer to a user-supplied callback.
Definition: fifo.c:213
static const AVOption options[]
Definition: jack.c:346
enum AVMediaType codec_type
General type of the encoded data.
Definition: avcodec.h:3918
const char * arg
Definition: jacosubdec.c:66
#define sem_destroy(psem)
Definition: semaphore.h:29
static int start_jack(AVFormatContext *context)
Definition: jack.c:161
int activated
Definition: jack.c:56
common internal API header
char filename[1024]
input or output filename
Definition: avformat.h:1401
sem_t packet_count
Definition: jack.c:57
#define sem_timedwait(psem, val)
Definition: semaphore.h:28
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:638
int64_t av_gettime(void)
Get the current time in microseconds.
Definition: time.c:39
Stream structure.
Definition: avformat.h:876
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
Definition: avio_reading.c:42
#define AV_LOG_INFO
Standard information.
Definition: log.h:187
TimeFilter * ff_timefilter_new(double time_base, double period, double bandwidth)
Create a new Delay Locked Loop time filter.
Definition: timefilter.c:46
Libavcodec external API header.
static int audio_read_packet(AVFormatContext *context, AVPacket *pkt)
Definition: jack.c:278
int av_fifo_size(const AVFifoBuffer *f)
Return the amount of data in bytes in the AVFifoBuffer, that is the amount of data you can read from ...
Definition: fifo.c:77
static void test(const char *pattern, const char *host)
Definition: noproxy.c:23
void av_packet_unref(AVPacket *pkt)
Wipe the packet.
Definition: avpacket.c:563
jack_nframes_t sample_rate
Definition: jack.c:58
a very simple circular buffer FIFO implementation
Describe the class of an AVClass context structure.
Definition: log.h:67
#define AV_OPT_FLAG_DECODING_PARAM
a generic parameter which can be set by the user for demuxing or decoding
Definition: opt.h:276
#define snprintf
Definition: snprintf.h:34
#define OFFSET(x)
Definition: jack.c:345
static int process_callback(jack_nframes_t nframes, void *arg)
Definition: jack.c:69
static void shutdown_callback(void *arg)
Definition: jack.c:129
AVFifoBuffer * av_fifo_alloc_array(size_t nmemb, size_t size)
Initialize an AVFifoBuffer.
Definition: fifo.c:49
static int audio_read_close(AVFormatContext *context)
Definition: jack.c:338
static int flags
Definition: cpu.c:47
int av_strerror(int errnum, char *errbuf, size_t errbuf_size)
Put a description of the AVERROR code errnum in errbuf.
Definition: error.c:105
int sample_rate
Audio only.
Definition: avcodec.h:4032
TimeFilter * timefilter
Definition: jack.c:62
Main libavformat public API header.
double ff_timefilter_update(TimeFilter *self, double system_time, double period)
Update the filter.
Definition: timefilter.c:72
#define AVFMT_NOFILE
Demuxer will use avio_open, no opened file should be provided by the caller.
Definition: avformat.h:476
static int audio_read_header(AVFormatContext *context)
Definition: jack.c:250
static int xrun_callback(void *arg)
Definition: jack.c:135
static const AVClass jack_indev_class
Definition: jack.c:351
void * priv_data
Format private data.
Definition: avformat.h:1353
int channels
Audio only.
Definition: avcodec.h:4028
#define av_freep(p)
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:660
void av_fifo_freep(AVFifoBuffer **f)
Free an AVFifoBuffer and reset pointer to NULL.
Definition: fifo.c:63
jack_nframes_t buffer_size
Definition: jack.c:59
AVCodecParameters * codecpar
Definition: avformat.h:1006
#define av_malloc_array(a, b)
This structure stores compressed data.
Definition: avcodec.h:1557
static void stop_jack(JackData *self)
Definition: jack.c:236
AVFifoBuffer * new_pkts
Definition: jack.c:63
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
Definition: avcodec.h:1573
for(j=16;j >0;--j)
GLuint buffer
Definition: opengl_enc.c:102