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.

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