func_jitterbuffer.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394
  1. /*
  2. * Asterisk -- An open source telephony toolkit.
  3. *
  4. * Copyright (C) 2011, Digium, Inc.
  5. *
  6. * David Vossel <dvossel@digium.com>
  7. *
  8. * See http://www.asterisk.org for more information about
  9. * the Asterisk project. Please do not directly contact
  10. * any of the maintainers of this project for assistance;
  11. * the project provides a web site, mailing lists and IRC
  12. * channels for your use.
  13. *
  14. * This program is free software, distributed under the terms of
  15. * the GNU General Public License Version 2. See the LICENSE file
  16. * at the top of the source tree.
  17. */
  18. /*! \file
  19. *
  20. * \brief Put a jitterbuffer on the read side of a channel
  21. *
  22. * \author David Vossel <dvossel@digium.com>
  23. *
  24. * \ingroup functions
  25. */
  26. /*** MODULEINFO
  27. <support_level>core</support_level>
  28. ***/
  29. #include "asterisk.h"
  30. ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
  31. #include "asterisk/module.h"
  32. #include "asterisk/channel.h"
  33. #include "asterisk/framehook.h"
  34. #include "asterisk/pbx.h"
  35. #include "asterisk/abstract_jb.h"
  36. #include "asterisk/timing.h"
  37. #include "asterisk/app.h"
  38. /*** DOCUMENTATION
  39. <function name="JITTERBUFFER" language="en_US">
  40. <synopsis>
  41. Add a Jitterbuffer to the Read side of the channel. This dejitters the audio stream before it reaches the Asterisk core. This is a write only function.
  42. </synopsis>
  43. <syntax>
  44. <parameter name="jitterbuffer type" required="true">
  45. <para>Jitterbuffer type can be either <literal>fixed</literal> or <literal>adaptive</literal>.</para>
  46. <para>Used as follows. </para>
  47. <para>Set(JITTERBUFFER(type)=max_size[,resync_threshold[,target_extra]])</para>
  48. <para>Set(JITTERBUFFER(type)=default) </para>
  49. </parameter>
  50. </syntax>
  51. <description>
  52. <para>max_size: Defaults to 200 ms</para>
  53. <para>Length in milliseconds of buffer.</para>
  54. <para> </para>
  55. <para>resync_threshold: Defaults to 1000ms </para>
  56. <para>The length in milliseconds over which a timestamp difference will result in resyncing the jitterbuffer. </para>
  57. <para> </para>
  58. <para>target_extra: Defaults to 40ms</para>
  59. <para>This option only affects the adaptive jitterbuffer. It represents the amount time in milliseconds by which the new jitter buffer will pad its size.</para>
  60. <para> </para>
  61. <para>Examples:</para>
  62. <para>exten => 1,1,Set(JITTERBUFFER(fixed)=default);Fixed with defaults. </para>
  63. <para>exten => 1,1,Set(JITTERBUFFER(fixed)=200);Fixed with max size 200ms, default resync threshold and target extra. </para>
  64. <para>exten => 1,1,Set(JITTERBUFFER(fixed)=200,1500);Fixed with max size 200ms resync threshold 1500. </para>
  65. <para>exten => 1,1,Set(JITTERBUFFER(adaptive)=default);Adaptive with defaults. </para>
  66. <para>exten => 1,1,Set(JITTERBUFFER(adaptive)=200,,60);Adaptive with max size 200ms, default resync threshold and 40ms target extra. </para>
  67. </description>
  68. </function>
  69. ***/
  70. #define DEFAULT_TIMER_INTERVAL 20
  71. #define DEFAULT_SIZE 200
  72. #define DEFAULT_TARGET_EXTRA 40
  73. #define DEFAULT_RESYNC 1000
  74. #define DEFAULT_TYPE AST_JB_FIXED
  75. struct jb_framedata {
  76. const struct ast_jb_impl *jb_impl;
  77. struct ast_jb_conf jb_conf;
  78. struct timeval start_tv;
  79. struct ast_format last_format;
  80. struct ast_timer *timer;
  81. int timer_interval; /* ms between deliveries */
  82. int timer_fd;
  83. int first;
  84. void *jb_obj;
  85. };
  86. static void jb_framedata_destroy(struct jb_framedata *framedata)
  87. {
  88. if (framedata->timer) {
  89. ast_timer_close(framedata->timer);
  90. framedata->timer = NULL;
  91. }
  92. if (framedata->jb_impl && framedata->jb_obj) {
  93. struct ast_frame *f;
  94. while (framedata->jb_impl->remove(framedata->jb_obj, &f) == AST_JB_IMPL_OK) {
  95. ast_frfree(f);
  96. }
  97. framedata->jb_impl->destroy(framedata->jb_obj);
  98. framedata->jb_obj = NULL;
  99. }
  100. ast_free(framedata);
  101. }
  102. static void jb_conf_default(struct ast_jb_conf *conf)
  103. {
  104. conf->max_size = DEFAULT_SIZE;
  105. conf->resync_threshold = DEFAULT_RESYNC;
  106. ast_copy_string(conf->impl, "fixed", sizeof(conf->impl));
  107. conf->target_extra = DEFAULT_TARGET_EXTRA;
  108. }
  109. /* set defaults */
  110. static int jb_framedata_init(struct jb_framedata *framedata, const char *data, const char *value)
  111. {
  112. int jb_impl_type = DEFAULT_TYPE;
  113. /* Initialize defaults */
  114. framedata->timer_fd = -1;
  115. jb_conf_default(&framedata->jb_conf);
  116. if (!(framedata->jb_impl = ast_jb_get_impl(jb_impl_type))) {
  117. return -1;
  118. }
  119. if (!(framedata->timer = ast_timer_open())) {
  120. return -1;
  121. }
  122. framedata->timer_fd = ast_timer_fd(framedata->timer);
  123. framedata->timer_interval = DEFAULT_TIMER_INTERVAL;
  124. ast_timer_set_rate(framedata->timer, 1000 / framedata->timer_interval);
  125. framedata->start_tv = ast_tvnow();
  126. /* Now check user options to see if any of the defaults need to change. */
  127. if (!ast_strlen_zero(data)) {
  128. if (!strcasecmp(data, "fixed")) {
  129. jb_impl_type = AST_JB_FIXED;
  130. } else if (!strcasecmp(data, "adaptive")) {
  131. jb_impl_type = AST_JB_ADAPTIVE;
  132. } else {
  133. ast_log(LOG_WARNING, "Unknown Jitterbuffer type %s. Failed to create jitterbuffer.\n", data);
  134. return -1;
  135. }
  136. ast_copy_string(framedata->jb_conf.impl, data, sizeof(framedata->jb_conf.impl));
  137. }
  138. if (!ast_strlen_zero(value) && strcasecmp(value, "default")) {
  139. char *parse = ast_strdupa(value);
  140. int res = 0;
  141. AST_DECLARE_APP_ARGS(args,
  142. AST_APP_ARG(max_size);
  143. AST_APP_ARG(resync_threshold);
  144. AST_APP_ARG(target_extra);
  145. );
  146. AST_STANDARD_APP_ARGS(args, parse);
  147. if (!ast_strlen_zero(args.max_size)) {
  148. res |= ast_jb_read_conf(&framedata->jb_conf,
  149. "jbmaxsize",
  150. args.max_size);
  151. }
  152. if (!ast_strlen_zero(args.resync_threshold)) {
  153. res |= ast_jb_read_conf(&framedata->jb_conf,
  154. "jbresyncthreshold",
  155. args.resync_threshold);
  156. }
  157. if (!ast_strlen_zero(args.target_extra)) {
  158. res |= ast_jb_read_conf(&framedata->jb_conf,
  159. "jbtargetextra",
  160. args.target_extra);
  161. }
  162. if (res) {
  163. ast_log(LOG_WARNING, "Invalid jitterbuffer parameters %s\n", value);
  164. }
  165. }
  166. /* now that all the user parsing is done and nothing will change, create the jb obj */
  167. framedata->jb_obj = framedata->jb_impl->create(&framedata->jb_conf, framedata->jb_conf.resync_threshold);
  168. return 0;
  169. }
  170. static void datastore_destroy_cb(void *data) {
  171. ast_free(data);
  172. ast_debug(1, "JITTERBUFFER datastore destroyed\n");
  173. }
  174. static const struct ast_datastore_info jb_datastore = {
  175. .type = "jitterbuffer",
  176. .destroy = datastore_destroy_cb
  177. };
  178. static void hook_destroy_cb(void *framedata)
  179. {
  180. ast_debug(1, "JITTERBUFFER hook destroyed\n");
  181. jb_framedata_destroy((struct jb_framedata *) framedata);
  182. }
  183. static struct ast_frame *hook_event_cb(struct ast_channel *chan, struct ast_frame *frame, enum ast_framehook_event event, void *data)
  184. {
  185. struct jb_framedata *framedata = data;
  186. struct timeval now_tv;
  187. unsigned long now;
  188. int putframe = 0; /* signifies if audio frame was placed into the buffer or not */
  189. switch (event) {
  190. case AST_FRAMEHOOK_EVENT_READ:
  191. break;
  192. case AST_FRAMEHOOK_EVENT_ATTACHED:
  193. case AST_FRAMEHOOK_EVENT_DETACHED:
  194. case AST_FRAMEHOOK_EVENT_WRITE:
  195. return frame;
  196. }
  197. if (chan->fdno == AST_JITTERBUFFER_FD && framedata->timer) {
  198. if (ast_timer_ack(framedata->timer, 1) < 0) {
  199. ast_log(LOG_ERROR, "Failed to acknowledge timer in jitter buffer\n");
  200. return frame;
  201. }
  202. }
  203. if (!frame) {
  204. return frame;
  205. }
  206. now_tv = ast_tvnow();
  207. now = ast_tvdiff_ms(now_tv, framedata->start_tv);
  208. if (frame->frametype == AST_FRAME_VOICE) {
  209. int res;
  210. struct ast_frame *jbframe;
  211. if (!ast_test_flag(frame, AST_FRFLAG_HAS_TIMING_INFO) || frame->len < 2 || frame->ts < 0) {
  212. /* only frames with timing info can enter the jitterbuffer */
  213. return frame;
  214. }
  215. jbframe = ast_frisolate(frame);
  216. ast_format_copy(&framedata->last_format, &frame->subclass.format);
  217. if (frame->len && (frame->len != framedata->timer_interval)) {
  218. framedata->timer_interval = frame->len;
  219. ast_timer_set_rate(framedata->timer, 1000 / framedata->timer_interval);
  220. }
  221. if (!framedata->first) {
  222. framedata->first = 1;
  223. res = framedata->jb_impl->put_first(framedata->jb_obj, jbframe, now);
  224. } else {
  225. res = framedata->jb_impl->put(framedata->jb_obj, jbframe, now);
  226. }
  227. if (res == AST_JB_IMPL_OK) {
  228. frame = &ast_null_frame;
  229. }
  230. putframe = 1;
  231. }
  232. if (frame->frametype == AST_FRAME_NULL) {
  233. int res;
  234. long next = framedata->jb_impl->next(framedata->jb_obj);
  235. /* If now is earlier than the next expected output frame
  236. * from the jitterbuffer we may choose to pass on retrieving
  237. * a frame during this read iteration. The only exception
  238. * to this rule is when an audio frame is placed into the buffer
  239. * and the time for the next frame to come out of the buffer is
  240. * at least within the timer_interval of the next output frame. By
  241. * doing this we are able to feed off the timing of the input frames
  242. * and only rely on our jitterbuffer timer when frames are dropped.
  243. * During testing, this hybrid form of timing gave more reliable results. */
  244. if (now < next) {
  245. long int diff = next - now;
  246. if (!putframe) {
  247. return frame;
  248. } else if (diff >= framedata->timer_interval) {
  249. return frame;
  250. }
  251. }
  252. res = framedata->jb_impl->get(framedata->jb_obj, &frame, now, framedata->timer_interval);
  253. switch (res) {
  254. case AST_JB_IMPL_OK:
  255. /* got it, and pass it through */
  256. break;
  257. case AST_JB_IMPL_DROP:
  258. ast_frfree(frame);
  259. frame = &ast_null_frame;
  260. break;
  261. case AST_JB_IMPL_INTERP:
  262. if (framedata->last_format.id) {
  263. struct ast_frame tmp = { 0, };
  264. tmp.frametype = AST_FRAME_VOICE;
  265. ast_format_copy(&tmp.subclass.format, &framedata->last_format);
  266. /* example: 8000hz / (1000 / 20ms) = 160 samples */
  267. tmp.samples = ast_format_rate(&framedata->last_format) / (1000 / framedata->timer_interval);
  268. tmp.delivery = ast_tvadd(framedata->start_tv, ast_samp2tv(next, 1000));
  269. tmp.offset = AST_FRIENDLY_OFFSET;
  270. tmp.src = "func_jitterbuffer interpolation";
  271. frame = ast_frdup(&tmp);
  272. break;
  273. }
  274. /* else fall through */
  275. case AST_JB_IMPL_NOFRAME:
  276. frame = &ast_null_frame;
  277. break;
  278. }
  279. }
  280. return frame;
  281. }
  282. static int jb_helper(struct ast_channel *chan, const char *cmd, char *data, const char *value)
  283. {
  284. struct jb_framedata *framedata;
  285. struct ast_datastore *datastore = NULL;
  286. struct ast_framehook_interface interface = {
  287. .version = AST_FRAMEHOOK_INTERFACE_VERSION,
  288. .event_cb = hook_event_cb,
  289. .destroy_cb = hook_destroy_cb,
  290. };
  291. int i = 0;
  292. if (!(framedata = ast_calloc(1, sizeof(*framedata)))) {
  293. return 0;
  294. }
  295. if (jb_framedata_init(framedata, data, value)) {
  296. jb_framedata_destroy(framedata);
  297. return 0;
  298. }
  299. interface.data = framedata;
  300. ast_channel_lock(chan);
  301. i = ast_framehook_attach(chan, &interface);
  302. if (i >= 0) {
  303. int *id;
  304. if ((datastore = ast_channel_datastore_find(chan, &jb_datastore, NULL))) {
  305. id = datastore->data;
  306. ast_framehook_detach(chan, *id);
  307. ast_channel_datastore_remove(chan, datastore);
  308. }
  309. if (!(datastore = ast_datastore_alloc(&jb_datastore, NULL))) {
  310. ast_framehook_detach(chan, i);
  311. ast_channel_unlock(chan);
  312. return 0;
  313. }
  314. if (!(id = ast_calloc(1, sizeof(int)))) {
  315. ast_datastore_free(datastore);
  316. ast_framehook_detach(chan, i);
  317. ast_channel_unlock(chan);
  318. return 0;
  319. }
  320. *id = i; /* Store off the id. The channel is still locked so it is safe to access this ptr. */
  321. datastore->data = id;
  322. ast_channel_datastore_add(chan, datastore);
  323. ast_channel_set_fd(chan, AST_JITTERBUFFER_FD, framedata->timer_fd);
  324. } else {
  325. jb_framedata_destroy(framedata);
  326. framedata = NULL;
  327. }
  328. ast_channel_unlock(chan);
  329. return 0;
  330. }
  331. static struct ast_custom_function jb_function = {
  332. .name = "JITTERBUFFER",
  333. .write = jb_helper,
  334. };
  335. static int unload_module(void)
  336. {
  337. return ast_custom_function_unregister(&jb_function);
  338. }
  339. static int load_module(void)
  340. {
  341. int res = ast_custom_function_register(&jb_function);
  342. return res ? AST_MODULE_LOAD_DECLINE : AST_MODULE_LOAD_SUCCESS;
  343. }
  344. AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Jitter buffer for read side of channel.");