jack.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368
  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. #include "config.h"
  23. #include <semaphore.h>
  24. #include <jack/jack.h>
  25. #include "libavutil/internal.h"
  26. #include "libavutil/log.h"
  27. #include "libavutil/fifo.h"
  28. #include "libavutil/opt.h"
  29. #include "libavutil/time.h"
  30. #include "libavcodec/avcodec.h"
  31. #include "libavformat/avformat.h"
  32. #include "libavformat/internal.h"
  33. #include "timefilter.h"
  34. #include "avdevice.h"
  35. #if HAVE_DISPATCH_DISPATCH_H
  36. #include <dispatch/dispatch.h>
  37. #define sem_t dispatch_semaphore_t
  38. #define sem_init(psem,x,val) *psem = dispatch_semaphore_create(val)
  39. #define sem_post(psem) dispatch_semaphore_signal(*psem)
  40. #define sem_wait(psem) dispatch_semaphore_wait(*psem, DISPATCH_TIME_FOREVER)
  41. #define sem_timedwait(psem, val) dispatch_semaphore_wait(*psem, dispatch_walltime(val, 0))
  42. #define sem_destroy(psem) dispatch_release(*psem)
  43. #endif
  44. /**
  45. * Size of the internal FIFO buffers as a number of audio packets
  46. */
  47. #define FIFO_PACKETS_NUM 16
  48. typedef struct JackData {
  49. AVClass *class;
  50. jack_client_t * client;
  51. int activated;
  52. sem_t packet_count;
  53. jack_nframes_t sample_rate;
  54. jack_nframes_t buffer_size;
  55. jack_port_t ** ports;
  56. int nports;
  57. TimeFilter * timefilter;
  58. AVFifoBuffer * new_pkts;
  59. AVFifoBuffer * filled_pkts;
  60. int pkt_xrun;
  61. int jack_xrun;
  62. } JackData;
  63. static int process_callback(jack_nframes_t nframes, void *arg)
  64. {
  65. /* Warning: this function runs in realtime. One mustn't allocate memory here
  66. * or do any other thing that could block. */
  67. int i, j;
  68. JackData *self = arg;
  69. float * buffer;
  70. jack_nframes_t latency, cycle_delay;
  71. AVPacket pkt;
  72. float *pkt_data;
  73. double cycle_time;
  74. if (!self->client)
  75. return 0;
  76. /* The approximate delay since the hardware interrupt as a number of frames */
  77. cycle_delay = jack_frames_since_cycle_start(self->client);
  78. /* Retrieve filtered cycle time */
  79. cycle_time = ff_timefilter_update(self->timefilter,
  80. av_gettime() / 1000000.0 - (double) cycle_delay / self->sample_rate,
  81. self->buffer_size);
  82. /* Check if an empty packet is available, and if there's enough space to send it back once filled */
  83. if ((av_fifo_size(self->new_pkts) < sizeof(pkt)) || (av_fifo_space(self->filled_pkts) < sizeof(pkt))) {
  84. self->pkt_xrun = 1;
  85. return 0;
  86. }
  87. /* Retrieve empty (but allocated) packet */
  88. av_fifo_generic_read(self->new_pkts, &pkt, sizeof(pkt), NULL);
  89. pkt_data = (float *) pkt.data;
  90. latency = 0;
  91. /* Copy and interleave audio data from the JACK buffer into the packet */
  92. for (i = 0; i < self->nports; i++) {
  93. #if HAVE_JACK_PORT_GET_LATENCY_RANGE
  94. jack_latency_range_t range;
  95. jack_port_get_latency_range(self->ports[i], JackCaptureLatency, &range);
  96. latency += range.max;
  97. #else
  98. latency += jack_port_get_total_latency(self->client, self->ports[i]);
  99. #endif
  100. buffer = jack_port_get_buffer(self->ports[i], self->buffer_size);
  101. for (j = 0; j < self->buffer_size; j++)
  102. pkt_data[j * self->nports + i] = buffer[j];
  103. }
  104. /* Timestamp the packet with the cycle start time minus the average latency */
  105. pkt.pts = (cycle_time - (double) latency / (self->nports * self->sample_rate)) * 1000000.0;
  106. /* Send the now filled packet back, and increase packet counter */
  107. av_fifo_generic_write(self->filled_pkts, &pkt, sizeof(pkt), NULL);
  108. sem_post(&self->packet_count);
  109. return 0;
  110. }
  111. static void shutdown_callback(void *arg)
  112. {
  113. JackData *self = arg;
  114. self->client = NULL;
  115. }
  116. static int xrun_callback(void *arg)
  117. {
  118. JackData *self = arg;
  119. self->jack_xrun = 1;
  120. ff_timefilter_reset(self->timefilter);
  121. return 0;
  122. }
  123. static int supply_new_packets(JackData *self, AVFormatContext *context)
  124. {
  125. AVPacket pkt;
  126. int test, pkt_size = self->buffer_size * self->nports * sizeof(float);
  127. /* Supply the process callback with new empty packets, by filling the new
  128. * packets FIFO buffer with as many packets as possible. process_callback()
  129. * can't do this by itself, because it can't allocate memory in realtime. */
  130. while (av_fifo_space(self->new_pkts) >= sizeof(pkt)) {
  131. if ((test = av_new_packet(&pkt, pkt_size)) < 0) {
  132. av_log(context, AV_LOG_ERROR, "Could not create packet of size %d\n", pkt_size);
  133. return test;
  134. }
  135. av_fifo_generic_write(self->new_pkts, &pkt, sizeof(pkt), NULL);
  136. }
  137. return 0;
  138. }
  139. static int start_jack(AVFormatContext *context)
  140. {
  141. JackData *self = context->priv_data;
  142. jack_status_t status;
  143. int i, test;
  144. /* Register as a JACK client, using the context filename as client name. */
  145. self->client = jack_client_open(context->filename, JackNullOption, &status);
  146. if (!self->client) {
  147. av_log(context, AV_LOG_ERROR, "Unable to register as a JACK client\n");
  148. return AVERROR(EIO);
  149. }
  150. sem_init(&self->packet_count, 0, 0);
  151. self->sample_rate = jack_get_sample_rate(self->client);
  152. self->ports = av_malloc_array(self->nports, sizeof(*self->ports));
  153. if (!self->ports)
  154. return AVERROR(ENOMEM);
  155. self->buffer_size = jack_get_buffer_size(self->client);
  156. /* Register JACK ports */
  157. for (i = 0; i < self->nports; i++) {
  158. char str[16];
  159. snprintf(str, sizeof(str), "input_%d", i + 1);
  160. self->ports[i] = jack_port_register(self->client, str,
  161. JACK_DEFAULT_AUDIO_TYPE,
  162. JackPortIsInput, 0);
  163. if (!self->ports[i]) {
  164. av_log(context, AV_LOG_ERROR, "Unable to register port %s:%s\n",
  165. context->filename, str);
  166. jack_client_close(self->client);
  167. return AVERROR(EIO);
  168. }
  169. }
  170. /* Register JACK callbacks */
  171. jack_set_process_callback(self->client, process_callback, self);
  172. jack_on_shutdown(self->client, shutdown_callback, self);
  173. jack_set_xrun_callback(self->client, xrun_callback, self);
  174. /* Create time filter */
  175. self->timefilter = ff_timefilter_new (1.0 / self->sample_rate, self->buffer_size, 1.5);
  176. if (!self->timefilter) {
  177. jack_client_close(self->client);
  178. return AVERROR(ENOMEM);
  179. }
  180. /* Create FIFO buffers */
  181. self->filled_pkts = av_fifo_alloc_array(FIFO_PACKETS_NUM, sizeof(AVPacket));
  182. /* New packets FIFO with one extra packet for safety against underruns */
  183. self->new_pkts = av_fifo_alloc_array((FIFO_PACKETS_NUM + 1), sizeof(AVPacket));
  184. if (!self->new_pkts) {
  185. jack_client_close(self->client);
  186. return AVERROR(ENOMEM);
  187. }
  188. if ((test = supply_new_packets(self, context))) {
  189. jack_client_close(self->client);
  190. return test;
  191. }
  192. return 0;
  193. }
  194. static void free_pkt_fifo(AVFifoBuffer **fifo)
  195. {
  196. AVPacket pkt;
  197. while (av_fifo_size(*fifo)) {
  198. av_fifo_generic_read(*fifo, &pkt, sizeof(pkt), NULL);
  199. av_packet_unref(&pkt);
  200. }
  201. av_fifo_freep(fifo);
  202. }
  203. static void stop_jack(JackData *self)
  204. {
  205. if (self->client) {
  206. if (self->activated)
  207. jack_deactivate(self->client);
  208. jack_client_close(self->client);
  209. }
  210. sem_destroy(&self->packet_count);
  211. free_pkt_fifo(&self->new_pkts);
  212. free_pkt_fifo(&self->filled_pkts);
  213. av_freep(&self->ports);
  214. ff_timefilter_destroy(self->timefilter);
  215. }
  216. static int audio_read_header(AVFormatContext *context)
  217. {
  218. JackData *self = context->priv_data;
  219. AVStream *stream;
  220. int test;
  221. if ((test = start_jack(context)))
  222. return test;
  223. stream = avformat_new_stream(context, NULL);
  224. if (!stream) {
  225. stop_jack(self);
  226. return AVERROR(ENOMEM);
  227. }
  228. stream->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
  229. #if HAVE_BIGENDIAN
  230. stream->codecpar->codec_id = AV_CODEC_ID_PCM_F32BE;
  231. #else
  232. stream->codecpar->codec_id = AV_CODEC_ID_PCM_F32LE;
  233. #endif
  234. stream->codecpar->sample_rate = self->sample_rate;
  235. stream->codecpar->channels = self->nports;
  236. avpriv_set_pts_info(stream, 64, 1, 1000000); /* 64 bits pts in us */
  237. return 0;
  238. }
  239. static int audio_read_packet(AVFormatContext *context, AVPacket *pkt)
  240. {
  241. JackData *self = context->priv_data;
  242. struct timespec timeout = {0, 0};
  243. int test;
  244. /* Activate the JACK client on first packet read. Activating the JACK client
  245. * means that process_callback() starts to get called at regular interval.
  246. * If we activate it in audio_read_header(), we're actually reading audio data
  247. * from the device before instructed to, and that may result in an overrun. */
  248. if (!self->activated) {
  249. if (!jack_activate(self->client)) {
  250. self->activated = 1;
  251. av_log(context, AV_LOG_INFO,
  252. "JACK client registered and activated (rate=%dHz, buffer_size=%d frames)\n",
  253. self->sample_rate, self->buffer_size);
  254. } else {
  255. av_log(context, AV_LOG_ERROR, "Unable to activate JACK client\n");
  256. return AVERROR(EIO);
  257. }
  258. }
  259. /* Wait for a packet coming back from process_callback(), if one isn't available yet */
  260. timeout.tv_sec = av_gettime() / 1000000 + 2;
  261. if (sem_timedwait(&self->packet_count, &timeout)) {
  262. if (errno == ETIMEDOUT) {
  263. av_log(context, AV_LOG_ERROR,
  264. "Input error: timed out when waiting for JACK process callback output\n");
  265. } else {
  266. char errbuf[128];
  267. int ret = AVERROR(errno);
  268. av_strerror(ret, errbuf, sizeof(errbuf));
  269. av_log(context, AV_LOG_ERROR, "Error while waiting for audio packet: %s\n",
  270. errbuf);
  271. }
  272. if (!self->client)
  273. av_log(context, AV_LOG_ERROR, "Input error: JACK server is gone\n");
  274. return AVERROR(EIO);
  275. }
  276. if (self->pkt_xrun) {
  277. av_log(context, AV_LOG_WARNING, "Audio packet xrun\n");
  278. self->pkt_xrun = 0;
  279. }
  280. if (self->jack_xrun) {
  281. av_log(context, AV_LOG_WARNING, "JACK xrun\n");
  282. self->jack_xrun = 0;
  283. }
  284. /* Retrieve the packet filled with audio data by process_callback() */
  285. av_fifo_generic_read(self->filled_pkts, pkt, sizeof(*pkt), NULL);
  286. if ((test = supply_new_packets(self, context)))
  287. return test;
  288. return 0;
  289. }
  290. static int audio_read_close(AVFormatContext *context)
  291. {
  292. JackData *self = context->priv_data;
  293. stop_jack(self);
  294. return 0;
  295. }
  296. #define OFFSET(x) offsetof(JackData, x)
  297. static const AVOption options[] = {
  298. { "channels", "Number of audio channels.", OFFSET(nports), AV_OPT_TYPE_INT, { .i64 = 2 }, 1, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
  299. { NULL },
  300. };
  301. static const AVClass jack_indev_class = {
  302. .class_name = "JACK indev",
  303. .item_name = av_default_item_name,
  304. .option = options,
  305. .version = LIBAVUTIL_VERSION_INT,
  306. .category = AV_CLASS_CATEGORY_DEVICE_AUDIO_INPUT,
  307. };
  308. AVInputFormat ff_jack_demuxer = {
  309. .name = "jack",
  310. .long_name = NULL_IF_CONFIG_SMALL("JACK Audio Connection Kit"),
  311. .priv_data_size = sizeof(JackData),
  312. .read_header = audio_read_header,
  313. .read_packet = audio_read_packet,
  314. .read_close = audio_read_close,
  315. .flags = AVFMT_NOFILE,
  316. .priv_class = &jack_indev_class,
  317. };