You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

350 lines
11KB

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