2 * Asterisk -- An open source telephony toolkit.
4 * Copyright (C) 1999 - 2007, Digium, Inc.
6 * Joshua Colp <jcolp@digium.com>
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.
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.
21 * \brief Audiohooks Architecture
23 * \author Joshua Colp <jcolp@digium.com>
27 <support_level>core</support_level>
32 ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
36 #include "asterisk/channel.h"
37 #include "asterisk/utils.h"
38 #include "asterisk/lock.h"
39 #include "asterisk/linkedlists.h"
40 #include "asterisk/audiohook.h"
41 #include "asterisk/slinfactory.h"
42 #include "asterisk/frame.h"
43 #include "asterisk/translate.h"
44 #include "asterisk/format_cache.h"
46 #define AST_AUDIOHOOK_SYNC_TOLERANCE 100 /*!< Tolerance in milliseconds for audiohooks synchronization */
47 #define AST_AUDIOHOOK_SMALL_QUEUE_TOLERANCE 100 /*!< When small queue is enabled, this is the maximum amount of audio that can remain queued at a time. */
49 struct ast_audiohook_translate {
50 struct ast_trans_pvt *trans_pvt;
51 struct ast_format *format;
54 struct ast_audiohook_list {
55 /* If all the audiohooks in this list are capable
56 * of processing slinear at any sample rate, this
57 * variable will be set and the sample rate will
58 * be preserved during ast_audiohook_write_list()*/
59 int native_slin_compatible;
60 int list_internal_samp_rate;/*!< Internal sample rate used when writing to the audiohook list */
62 struct ast_audiohook_translate in_translate[2];
63 struct ast_audiohook_translate out_translate[2];
64 AST_LIST_HEAD_NOLOCK(, ast_audiohook) spy_list;
65 AST_LIST_HEAD_NOLOCK(, ast_audiohook) whisper_list;
66 AST_LIST_HEAD_NOLOCK(, ast_audiohook) manipulate_list;
69 static int audiohook_set_internal_rate(struct ast_audiohook *audiohook, int rate, int reset)
71 struct ast_format *slin;
73 if (audiohook->hook_internal_samp_rate == rate) {
77 audiohook->hook_internal_samp_rate = rate;
79 slin = ast_format_cache_get_slin_by_rate(rate);
81 /* Setup the factories that are needed for this audiohook type */
82 switch (audiohook->type) {
83 case AST_AUDIOHOOK_TYPE_SPY:
84 case AST_AUDIOHOOK_TYPE_WHISPER:
86 ast_slinfactory_destroy(&audiohook->read_factory);
87 ast_slinfactory_destroy(&audiohook->write_factory);
89 ast_slinfactory_init_with_format(&audiohook->read_factory, slin);
90 ast_slinfactory_init_with_format(&audiohook->write_factory, slin);
99 /*! \brief Initialize an audiohook structure
101 * \param audiohook Audiohook structure
103 * \param source, init_flags
105 * \return Returns 0 on success, -1 on failure
107 int ast_audiohook_init(struct ast_audiohook *audiohook, enum ast_audiohook_type type, const char *source, enum ast_audiohook_init_flags init_flags)
109 /* Need to keep the type and source */
110 audiohook->type = type;
111 audiohook->source = source;
113 /* Initialize lock that protects our audiohook */
114 ast_mutex_init(&audiohook->lock);
115 ast_cond_init(&audiohook->trigger, NULL);
117 audiohook->init_flags = init_flags;
119 /* initialize internal rate at 8khz, this will adjust if necessary */
120 audiohook_set_internal_rate(audiohook, 8000, 0);
122 /* Since we are just starting out... this audiohook is new */
123 ast_audiohook_update_status(audiohook, AST_AUDIOHOOK_STATUS_NEW);
128 /*! \brief Destroys an audiohook structure
129 * \param audiohook Audiohook structure
130 * \return Returns 0 on success, -1 on failure
132 int ast_audiohook_destroy(struct ast_audiohook *audiohook)
134 /* Drop the factories used by this audiohook type */
135 switch (audiohook->type) {
136 case AST_AUDIOHOOK_TYPE_SPY:
137 case AST_AUDIOHOOK_TYPE_WHISPER:
138 ast_slinfactory_destroy(&audiohook->read_factory);
139 ast_slinfactory_destroy(&audiohook->write_factory);
145 /* Destroy translation path if present */
146 if (audiohook->trans_pvt)
147 ast_translator_free_path(audiohook->trans_pvt);
149 ao2_cleanup(audiohook->format);
151 /* Lock and trigger be gone! */
152 ast_cond_destroy(&audiohook->trigger);
153 ast_mutex_destroy(&audiohook->lock);
158 /*! \brief Writes a frame into the audiohook structure
159 * \param audiohook Audiohook structure
160 * \param direction Direction the audio frame came from
161 * \param frame Frame to write in
162 * \return Returns 0 on success, -1 on failure
164 int ast_audiohook_write_frame(struct ast_audiohook *audiohook, enum ast_audiohook_direction direction, struct ast_frame *frame)
166 struct ast_slinfactory *factory = (direction == AST_AUDIOHOOK_DIRECTION_READ ? &audiohook->read_factory : &audiohook->write_factory);
167 struct ast_slinfactory *other_factory = (direction == AST_AUDIOHOOK_DIRECTION_READ ? &audiohook->write_factory : &audiohook->read_factory);
168 struct timeval *rwtime = (direction == AST_AUDIOHOOK_DIRECTION_READ ? &audiohook->read_time : &audiohook->write_time), previous_time = *rwtime;
169 int our_factory_samples;
171 int other_factory_samples;
172 int other_factory_ms;
175 /* Update last feeding time to be current */
176 *rwtime = ast_tvnow();
178 our_factory_samples = ast_slinfactory_available(factory);
179 our_factory_ms = ast_tvdiff_ms(*rwtime, previous_time) + (our_factory_samples / (audiohook->hook_internal_samp_rate / 1000));
180 other_factory_samples = ast_slinfactory_available(other_factory);
181 other_factory_ms = other_factory_samples / (audiohook->hook_internal_samp_rate / 1000);
183 if (ast_test_flag(audiohook, AST_AUDIOHOOK_TRIGGER_SYNC) && other_factory_samples && (our_factory_ms - other_factory_ms > AST_AUDIOHOOK_SYNC_TOLERANCE)) {
184 ast_debug(1, "Flushing audiohook %p so it remains in sync\n", audiohook);
185 ast_slinfactory_flush(factory);
186 ast_slinfactory_flush(other_factory);
189 if (ast_test_flag(audiohook, AST_AUDIOHOOK_SMALL_QUEUE) && ((our_factory_ms > AST_AUDIOHOOK_SMALL_QUEUE_TOLERANCE) || (other_factory_ms > AST_AUDIOHOOK_SMALL_QUEUE_TOLERANCE))) {
190 ast_debug(1, "Audiohook %p has stale audio in its factories. Flushing them both\n", audiohook);
191 ast_slinfactory_flush(factory);
192 ast_slinfactory_flush(other_factory);
195 /* swap frame data for zeros if mute is required */
196 if ((ast_test_flag(audiohook, AST_AUDIOHOOK_MUTE_READ) && (direction == AST_AUDIOHOOK_DIRECTION_READ)) ||
197 (ast_test_flag(audiohook, AST_AUDIOHOOK_MUTE_WRITE) && (direction == AST_AUDIOHOOK_DIRECTION_WRITE)) ||
198 (ast_test_flag(audiohook, AST_AUDIOHOOK_MUTE_READ | AST_AUDIOHOOK_MUTE_WRITE) == (AST_AUDIOHOOK_MUTE_READ | AST_AUDIOHOOK_MUTE_WRITE))) {
202 if (muteme && frame->datalen > 0) {
203 ast_frame_clear(frame);
206 /* Write frame out to respective factory */
207 ast_slinfactory_feed(factory, frame);
209 /* If we need to notify the respective handler of this audiohook, do so */
210 if ((ast_test_flag(audiohook, AST_AUDIOHOOK_TRIGGER_MODE) == AST_AUDIOHOOK_TRIGGER_READ) && (direction == AST_AUDIOHOOK_DIRECTION_READ)) {
211 ast_cond_signal(&audiohook->trigger);
212 } else if ((ast_test_flag(audiohook, AST_AUDIOHOOK_TRIGGER_MODE) == AST_AUDIOHOOK_TRIGGER_WRITE) && (direction == AST_AUDIOHOOK_DIRECTION_WRITE)) {
213 ast_cond_signal(&audiohook->trigger);
214 } else if (ast_test_flag(audiohook, AST_AUDIOHOOK_TRIGGER_SYNC)) {
215 ast_cond_signal(&audiohook->trigger);
221 static struct ast_frame *audiohook_read_frame_single(struct ast_audiohook *audiohook, size_t samples, enum ast_audiohook_direction direction)
223 struct ast_slinfactory *factory = (direction == AST_AUDIOHOOK_DIRECTION_READ ? &audiohook->read_factory : &audiohook->write_factory);
224 int vol = (direction == AST_AUDIOHOOK_DIRECTION_READ ? audiohook->options.read_volume : audiohook->options.write_volume);
226 struct ast_frame frame = {
227 .frametype = AST_FRAME_VOICE,
228 .subclass.format = ast_format_cache_get_slin_by_rate(audiohook->hook_internal_samp_rate),
230 .datalen = sizeof(buf),
234 /* Ensure the factory is able to give us the samples we want */
235 if (samples > ast_slinfactory_available(factory)) {
239 /* Read data in from factory */
240 if (!ast_slinfactory_read(factory, buf, samples)) {
244 /* If a volume adjustment needs to be applied apply it */
246 ast_frame_adjust_volume(&frame, vol);
249 return ast_frdup(&frame);
252 static struct ast_frame *audiohook_read_frame_both(struct ast_audiohook *audiohook, size_t samples, struct ast_frame **read_reference, struct ast_frame **write_reference)
254 int i = 0, usable_read, usable_write;
255 short buf1[samples], buf2[samples], *read_buf = NULL, *write_buf = NULL, *final_buf = NULL, *data1 = NULL, *data2 = NULL;
256 struct ast_frame frame = {
257 .frametype = AST_FRAME_VOICE,
259 .datalen = sizeof(buf1),
263 /* Make sure both factories have the required samples */
264 usable_read = (ast_slinfactory_available(&audiohook->read_factory) >= samples ? 1 : 0);
265 usable_write = (ast_slinfactory_available(&audiohook->write_factory) >= samples ? 1 : 0);
267 if (!usable_read && !usable_write) {
268 /* If both factories are unusable bail out */
269 ast_debug(1, "Read factory %p and write factory %p both fail to provide %zu samples\n", &audiohook->read_factory, &audiohook->write_factory, samples);
273 /* If we want to provide only a read factory make sure we aren't waiting for other audio */
274 if (usable_read && !usable_write && (ast_tvdiff_ms(ast_tvnow(), audiohook->write_time) < (samples/8)*2)) {
275 ast_debug(3, "Write factory %p was pretty quick last time, waiting for them.\n", &audiohook->write_factory);
279 /* If we want to provide only a write factory make sure we aren't waiting for other audio */
280 if (usable_write && !usable_read && (ast_tvdiff_ms(ast_tvnow(), audiohook->read_time) < (samples/8)*2)) {
281 ast_debug(3, "Read factory %p was pretty quick last time, waiting for them.\n", &audiohook->read_factory);
285 /* Start with the read factory... if there are enough samples, read them in */
287 if (ast_slinfactory_read(&audiohook->read_factory, buf1, samples)) {
289 /* Adjust read volume if need be */
290 if (audiohook->options.read_volume) {
292 short adjust_value = abs(audiohook->options.read_volume);
293 for (count = 0; count < samples; count++) {
294 if (audiohook->options.read_volume > 0) {
295 ast_slinear_saturated_multiply(&buf1[count], &adjust_value);
296 } else if (audiohook->options.read_volume < 0) {
297 ast_slinear_saturated_divide(&buf1[count], &adjust_value);
303 ast_debug(1, "Failed to get %d samples from read factory %p\n", (int)samples, &audiohook->read_factory);
306 /* Move on to the write factory... if there are enough samples, read them in */
308 if (ast_slinfactory_read(&audiohook->write_factory, buf2, samples)) {
310 /* Adjust write volume if need be */
311 if (audiohook->options.write_volume) {
313 short adjust_value = abs(audiohook->options.write_volume);
314 for (count = 0; count < samples; count++) {
315 if (audiohook->options.write_volume > 0) {
316 ast_slinear_saturated_multiply(&buf2[count], &adjust_value);
317 } else if (audiohook->options.write_volume < 0) {
318 ast_slinear_saturated_divide(&buf2[count], &adjust_value);
324 ast_debug(1, "Failed to get %d samples from write factory %p\n", (int)samples, &audiohook->write_factory);
327 /* Basically we figure out which buffer to use... and if mixing can be done here */
328 if (read_buf && read_reference) {
329 frame.data.ptr = buf1;
330 *read_reference = ast_frdup(&frame);
332 if (write_buf && write_reference) {
333 frame.data.ptr = buf2;
334 *write_reference = ast_frdup(&frame);
337 if (read_buf && write_buf) {
338 for (i = 0, data1 = read_buf, data2 = write_buf; i < samples; i++, data1++, data2++) {
339 ast_slinear_saturated_add(data1, data2);
342 } else if (read_buf) {
344 } else if (write_buf) {
350 /* Make the final buffer part of the frame, so it gets duplicated fine */
351 frame.data.ptr = final_buf;
353 frame.subclass.format = ast_format_cache_get_slin_by_rate(audiohook->hook_internal_samp_rate);
355 /* Yahoo, a combined copy of the audio! */
356 return ast_frdup(&frame);
359 static struct ast_frame *audiohook_read_frame_helper(struct ast_audiohook *audiohook, size_t samples, enum ast_audiohook_direction direction, struct ast_format *format, struct ast_frame **read_reference, struct ast_frame **write_reference)
361 struct ast_frame *read_frame = NULL, *final_frame = NULL;
362 struct ast_format *slin;
363 int samples_converted;
365 /* the number of samples requested is based on the format they are requesting. Inorder
366 * to process this correctly samples must be converted to our internal sample rate */
367 if (audiohook->hook_internal_samp_rate == ast_format_get_sample_rate(format)) {
368 samples_converted = samples;
369 } else if (audiohook->hook_internal_samp_rate > ast_format_get_sample_rate(format)) {
370 samples_converted = samples * (audiohook->hook_internal_samp_rate / (float) ast_format_get_sample_rate(format));
372 samples_converted = samples * (ast_format_get_sample_rate(format) / (float) audiohook->hook_internal_samp_rate);
375 if (!(read_frame = (direction == AST_AUDIOHOOK_DIRECTION_BOTH ?
376 audiohook_read_frame_both(audiohook, samples_converted, read_reference, write_reference) :
377 audiohook_read_frame_single(audiohook, samples_converted, direction)))) {
381 slin = ast_format_cache_get_slin_by_rate(audiohook->hook_internal_samp_rate);
383 /* If they don't want signed linear back out, we'll have to send it through the translation path */
384 if (ast_format_cmp(format, slin) != AST_FORMAT_CMP_EQUAL) {
385 /* Rebuild translation path if different format then previously */
386 if (ast_format_cmp(format, audiohook->format) == AST_FORMAT_CMP_NOT_EQUAL) {
387 if (audiohook->trans_pvt) {
388 ast_translator_free_path(audiohook->trans_pvt);
389 audiohook->trans_pvt = NULL;
392 /* Setup new translation path for this format... if we fail we can't very well return signed linear so free the frame and return nothing */
393 if (!(audiohook->trans_pvt = ast_translator_build_path(format, slin))) {
394 ast_frfree(read_frame);
397 ao2_replace(audiohook->format, format);
399 /* Convert to requested format, and allow the read in frame to be freed */
400 final_frame = ast_translate(audiohook->trans_pvt, read_frame, 1);
402 final_frame = read_frame;
408 /*! \brief Reads a frame in from the audiohook structure
409 * \param audiohook Audiohook structure
410 * \param samples Number of samples wanted in requested output format
411 * \param direction Direction the audio frame came from
412 * \param format Format of frame remote side wants back
413 * \return Returns frame on success, NULL on failure
415 struct ast_frame *ast_audiohook_read_frame(struct ast_audiohook *audiohook, size_t samples, enum ast_audiohook_direction direction, struct ast_format *format)
417 return audiohook_read_frame_helper(audiohook, samples, direction, format, NULL, NULL);
420 /*! \brief Reads a frame in from the audiohook structure
421 * \param audiohook Audiohook structure
422 * \param samples Number of samples wanted
423 * \param direction Direction the audio frame came from
424 * \param format Format of frame remote side wants back
425 * \param read_frame frame pointer for copying read frame data
426 * \param write_frame frame pointer for copying write frame data
427 * \return Returns frame on success, NULL on failure
429 struct ast_frame *ast_audiohook_read_frame_all(struct ast_audiohook *audiohook, size_t samples, struct ast_format *format, struct ast_frame **read_frame, struct ast_frame **write_frame)
431 return audiohook_read_frame_helper(audiohook, samples, AST_AUDIOHOOK_DIRECTION_BOTH, format, read_frame, write_frame);
434 static void audiohook_list_set_samplerate_compatibility(struct ast_audiohook_list *audiohook_list)
436 struct ast_audiohook *ah = NULL;
437 audiohook_list->native_slin_compatible = 1;
438 AST_LIST_TRAVERSE(&audiohook_list->manipulate_list, ah, list) {
439 if (!(ah->init_flags & AST_AUDIOHOOK_MANIPULATE_ALL_RATES)) {
440 audiohook_list->native_slin_compatible = 0;
446 /*! \brief Attach audiohook to channel
447 * \param chan Channel
448 * \param audiohook Audiohook structure
449 * \return Returns 0 on success, -1 on failure
451 int ast_audiohook_attach(struct ast_channel *chan, struct ast_audiohook *audiohook)
453 ast_channel_lock(chan);
455 if (!ast_channel_audiohooks(chan)) {
456 struct ast_audiohook_list *ahlist;
457 /* Whoops... allocate a new structure */
458 if (!(ahlist = ast_calloc(1, sizeof(*ahlist)))) {
459 ast_channel_unlock(chan);
462 ast_channel_audiohooks_set(chan, ahlist);
463 AST_LIST_HEAD_INIT_NOLOCK(&ast_channel_audiohooks(chan)->spy_list);
464 AST_LIST_HEAD_INIT_NOLOCK(&ast_channel_audiohooks(chan)->whisper_list);
465 AST_LIST_HEAD_INIT_NOLOCK(&ast_channel_audiohooks(chan)->manipulate_list);
466 /* This sample rate will adjust as necessary when writing to the list. */
467 ast_channel_audiohooks(chan)->list_internal_samp_rate = 8000;
470 /* Drop into respective list */
471 if (audiohook->type == AST_AUDIOHOOK_TYPE_SPY) {
472 AST_LIST_INSERT_TAIL(&ast_channel_audiohooks(chan)->spy_list, audiohook, list);
473 } else if (audiohook->type == AST_AUDIOHOOK_TYPE_WHISPER) {
474 AST_LIST_INSERT_TAIL(&ast_channel_audiohooks(chan)->whisper_list, audiohook, list);
475 } else if (audiohook->type == AST_AUDIOHOOK_TYPE_MANIPULATE) {
476 AST_LIST_INSERT_TAIL(&ast_channel_audiohooks(chan)->manipulate_list, audiohook, list);
480 audiohook_set_internal_rate(audiohook, ast_channel_audiohooks(chan)->list_internal_samp_rate, 1);
481 audiohook_list_set_samplerate_compatibility(ast_channel_audiohooks(chan));
483 /* Change status over to running since it is now attached */
484 ast_audiohook_update_status(audiohook, AST_AUDIOHOOK_STATUS_RUNNING);
486 ast_channel_unlock(chan);
491 /*! \brief Update audiohook's status
492 * \param audiohook Audiohook structure
493 * \param status Audiohook status enum
495 * \note once status is updated to DONE, this function can not be used to set the
496 * status back to any other setting. Setting DONE effectively locks the status as such.
499 void ast_audiohook_update_status(struct ast_audiohook *audiohook, enum ast_audiohook_status status)
501 ast_audiohook_lock(audiohook);
502 if (audiohook->status != AST_AUDIOHOOK_STATUS_DONE) {
503 audiohook->status = status;
504 ast_cond_signal(&audiohook->trigger);
506 ast_audiohook_unlock(audiohook);
509 /*! \brief Detach audiohook from channel
510 * \param audiohook Audiohook structure
511 * \return Returns 0 on success, -1 on failure
513 int ast_audiohook_detach(struct ast_audiohook *audiohook)
515 if (audiohook->status == AST_AUDIOHOOK_STATUS_NEW || audiohook->status == AST_AUDIOHOOK_STATUS_DONE) {
519 ast_audiohook_update_status(audiohook, AST_AUDIOHOOK_STATUS_SHUTDOWN);
521 while (audiohook->status != AST_AUDIOHOOK_STATUS_DONE) {
522 ast_audiohook_trigger_wait(audiohook);
528 void ast_audiohook_detach_list(struct ast_audiohook_list *audiohook_list)
531 struct ast_audiohook *audiohook;
533 if (!audiohook_list) {
538 while ((audiohook = AST_LIST_REMOVE_HEAD(&audiohook_list->spy_list, list))) {
539 ast_audiohook_update_status(audiohook, AST_AUDIOHOOK_STATUS_DONE);
542 /* Drop any whispering sources */
543 while ((audiohook = AST_LIST_REMOVE_HEAD(&audiohook_list->whisper_list, list))) {
544 ast_audiohook_update_status(audiohook, AST_AUDIOHOOK_STATUS_DONE);
547 /* Drop any manipulaters */
548 while ((audiohook = AST_LIST_REMOVE_HEAD(&audiohook_list->manipulate_list, list))) {
549 ast_audiohook_update_status(audiohook, AST_AUDIOHOOK_STATUS_DONE);
550 audiohook->manipulate_callback(audiohook, NULL, NULL, 0);
553 /* Drop translation paths if present */
554 for (i = 0; i < 2; i++) {
555 if (audiohook_list->in_translate[i].trans_pvt) {
556 ast_translator_free_path(audiohook_list->in_translate[i].trans_pvt);
558 if (audiohook_list->out_translate[i].trans_pvt) {
559 ast_translator_free_path(audiohook_list->out_translate[i].trans_pvt);
564 ast_free(audiohook_list);
567 /*! \brief find an audiohook based on its source
568 * \param audiohook_list The list of audiohooks to search in
569 * \param source The source of the audiohook we wish to find
570 * \return Return the corresponding audiohook or NULL if it cannot be found.
572 static struct ast_audiohook *find_audiohook_by_source(struct ast_audiohook_list *audiohook_list, const char *source)
574 struct ast_audiohook *audiohook = NULL;
576 AST_LIST_TRAVERSE(&audiohook_list->spy_list, audiohook, list) {
577 if (!strcasecmp(audiohook->source, source)) {
582 AST_LIST_TRAVERSE(&audiohook_list->whisper_list, audiohook, list) {
583 if (!strcasecmp(audiohook->source, source)) {
588 AST_LIST_TRAVERSE(&audiohook_list->manipulate_list, audiohook, list) {
589 if (!strcasecmp(audiohook->source, source)) {
597 static void audiohook_move(struct ast_channel *old_chan, struct ast_channel *new_chan, struct ast_audiohook *audiohook)
599 enum ast_audiohook_status oldstatus;
601 /* By locking both channels and the audiohook, we can assure that
602 * another thread will not have a chance to read the audiohook's status
603 * as done, even though ast_audiohook_remove signals the trigger
606 ast_audiohook_lock(audiohook);
607 oldstatus = audiohook->status;
609 ast_audiohook_remove(old_chan, audiohook);
610 ast_audiohook_attach(new_chan, audiohook);
612 audiohook->status = oldstatus;
613 ast_audiohook_unlock(audiohook);
616 void ast_audiohook_move_by_source(struct ast_channel *old_chan, struct ast_channel *new_chan, const char *source)
618 struct ast_audiohook *audiohook;
620 if (!ast_channel_audiohooks(old_chan)) {
624 audiohook = find_audiohook_by_source(ast_channel_audiohooks(old_chan), source);
629 audiohook_move(old_chan, new_chan, audiohook);
632 void ast_audiohook_move_all(struct ast_channel *old_chan, struct ast_channel *new_chan)
634 struct ast_audiohook *audiohook;
635 struct ast_audiohook_list *audiohook_list;
637 audiohook_list = ast_channel_audiohooks(old_chan);
638 if (!audiohook_list) {
642 AST_LIST_TRAVERSE_SAFE_BEGIN(&audiohook_list->spy_list, audiohook, list) {
643 audiohook_move(old_chan, new_chan, audiohook);
645 AST_LIST_TRAVERSE_SAFE_END;
647 AST_LIST_TRAVERSE_SAFE_BEGIN(&audiohook_list->whisper_list, audiohook, list) {
648 audiohook_move(old_chan, new_chan, audiohook);
650 AST_LIST_TRAVERSE_SAFE_END;
652 AST_LIST_TRAVERSE_SAFE_BEGIN(&audiohook_list->manipulate_list, audiohook, list) {
653 audiohook_move(old_chan, new_chan, audiohook);
655 AST_LIST_TRAVERSE_SAFE_END;
658 /*! \brief Detach specified source audiohook from channel
659 * \param chan Channel to detach from
660 * \param source Name of source to detach
661 * \return Returns 0 on success, -1 on failure
663 int ast_audiohook_detach_source(struct ast_channel *chan, const char *source)
665 struct ast_audiohook *audiohook = NULL;
667 ast_channel_lock(chan);
669 /* Ensure the channel has audiohooks on it */
670 if (!ast_channel_audiohooks(chan)) {
671 ast_channel_unlock(chan);
675 audiohook = find_audiohook_by_source(ast_channel_audiohooks(chan), source);
677 ast_channel_unlock(chan);
679 if (audiohook && audiohook->status != AST_AUDIOHOOK_STATUS_DONE) {
680 ast_audiohook_update_status(audiohook, AST_AUDIOHOOK_STATUS_SHUTDOWN);
683 return (audiohook ? 0 : -1);
687 * \brief Remove an audiohook from a specified channel
689 * \param chan Channel to remove from
690 * \param audiohook Audiohook to remove
692 * \return Returns 0 on success, -1 on failure
694 * \note The channel does not need to be locked before calling this function
696 int ast_audiohook_remove(struct ast_channel *chan, struct ast_audiohook *audiohook)
698 ast_channel_lock(chan);
700 if (!ast_channel_audiohooks(chan)) {
701 ast_channel_unlock(chan);
705 if (audiohook->type == AST_AUDIOHOOK_TYPE_SPY) {
706 AST_LIST_REMOVE(&ast_channel_audiohooks(chan)->spy_list, audiohook, list);
707 } else if (audiohook->type == AST_AUDIOHOOK_TYPE_WHISPER) {
708 AST_LIST_REMOVE(&ast_channel_audiohooks(chan)->whisper_list, audiohook, list);
709 } else if (audiohook->type == AST_AUDIOHOOK_TYPE_MANIPULATE) {
710 AST_LIST_REMOVE(&ast_channel_audiohooks(chan)->manipulate_list, audiohook, list);
713 audiohook_list_set_samplerate_compatibility(ast_channel_audiohooks(chan));
714 ast_audiohook_update_status(audiohook, AST_AUDIOHOOK_STATUS_DONE);
716 ast_channel_unlock(chan);
721 /*! \brief Pass a DTMF frame off to be handled by the audiohook core
722 * \param chan Channel that the list is coming off of
723 * \param audiohook_list List of audiohooks
724 * \param direction Direction frame is coming in from
725 * \param frame The frame itself
726 * \return Return frame on success, NULL on failure
728 static struct ast_frame *dtmf_audiohook_write_list(struct ast_channel *chan, struct ast_audiohook_list *audiohook_list, enum ast_audiohook_direction direction, struct ast_frame *frame)
730 struct ast_audiohook *audiohook = NULL;
733 AST_LIST_TRAVERSE_SAFE_BEGIN(&audiohook_list->manipulate_list, audiohook, list) {
734 ast_audiohook_lock(audiohook);
735 if (audiohook->status != AST_AUDIOHOOK_STATUS_RUNNING) {
736 AST_LIST_REMOVE_CURRENT(list);
738 ast_audiohook_update_status(audiohook, AST_AUDIOHOOK_STATUS_DONE);
739 ast_audiohook_unlock(audiohook);
740 audiohook->manipulate_callback(audiohook, NULL, NULL, 0);
743 if (ast_test_flag(audiohook, AST_AUDIOHOOK_WANTS_DTMF)) {
744 audiohook->manipulate_callback(audiohook, chan, frame, direction);
746 ast_audiohook_unlock(audiohook);
748 AST_LIST_TRAVERSE_SAFE_END;
750 /* if an audiohook got removed, reset samplerate compatibility */
752 audiohook_list_set_samplerate_compatibility(audiohook_list);
757 static struct ast_frame *audiohook_list_translate_to_slin(struct ast_audiohook_list *audiohook_list,
758 enum ast_audiohook_direction direction, struct ast_frame *frame)
760 struct ast_audiohook_translate *in_translate = (direction == AST_AUDIOHOOK_DIRECTION_READ ?
761 &audiohook_list->in_translate[0] : &audiohook_list->in_translate[1]);
762 struct ast_frame *new_frame = frame;
763 struct ast_format *slin;
765 /* If we are capable of maintaining doing samplerates other that 8khz, update
766 * the internal audiohook_list's rate and higher samplerate audio arrives. By
767 * updating the list's rate, all the audiohooks in the list will be updated as well
768 * as the are written and read from. */
769 if (audiohook_list->native_slin_compatible) {
770 audiohook_list->list_internal_samp_rate =
771 MAX(ast_format_get_sample_rate(frame->subclass.format), audiohook_list->list_internal_samp_rate);
774 slin = ast_format_cache_get_slin_by_rate(audiohook_list->list_internal_samp_rate);
775 if (ast_format_cmp(frame->subclass.format, slin) == AST_FORMAT_CMP_EQUAL) {
779 if (ast_format_cmp(frame->subclass.format, in_translate->format) == AST_FORMAT_CMP_NOT_EQUAL) {
780 if (in_translate->trans_pvt) {
781 ast_translator_free_path(in_translate->trans_pvt);
783 if (!(in_translate->trans_pvt = ast_translator_build_path(slin, frame->subclass.format))) {
786 ao2_replace(in_translate->format, frame->subclass.format);
789 if (!(new_frame = ast_translate(in_translate->trans_pvt, frame, 0))) {
796 static struct ast_frame *audiohook_list_translate_to_native(struct ast_audiohook_list *audiohook_list,
797 enum ast_audiohook_direction direction, struct ast_frame *slin_frame, struct ast_format *outformat)
799 struct ast_audiohook_translate *out_translate = (direction == AST_AUDIOHOOK_DIRECTION_READ ? &audiohook_list->out_translate[0] : &audiohook_list->out_translate[1]);
800 struct ast_frame *outframe = NULL;
801 if (ast_format_cmp(slin_frame->subclass.format, outformat) == AST_FORMAT_CMP_NOT_EQUAL) {
802 /* rebuild translators if necessary */
803 if (ast_format_cmp(out_translate->format, outformat) == AST_FORMAT_CMP_NOT_EQUAL) {
804 if (out_translate->trans_pvt) {
805 ast_translator_free_path(out_translate->trans_pvt);
807 if (!(out_translate->trans_pvt = ast_translator_build_path(outformat, slin_frame->subclass.format))) {
810 ao2_replace(out_translate->format, outformat);
812 /* translate back to the format the frame came in as. */
813 if (!(outframe = ast_translate(out_translate->trans_pvt, slin_frame, 0))) {
821 * \brief Pass an AUDIO frame off to be handled by the audiohook core
824 * This function has 3 ast_frames and 3 parts to handle each. At the beginning of this
825 * function all 3 frames, start_frame, middle_frame, and end_frame point to the initial
828 * Part_1: Translate the start_frame into SLINEAR audio if it is not already in that
829 * format. The result of this part is middle_frame is guaranteed to be in
830 * SLINEAR format for Part_2.
831 * Part_2: Send middle_frame off to spies and manipulators. At this point middle_frame is
832 * either a new frame as result of the translation, or points directly to the start_frame
833 * because no translation to SLINEAR audio was required.
834 * Part_3: Translate end_frame's audio back into the format of start frame if necessary. This
835 * is only necessary if manipulation of middle_frame occurred.
837 * \param chan Channel that the list is coming off of
838 * \param audiohook_list List of audiohooks
839 * \param direction Direction frame is coming in from
840 * \param frame The frame itself
841 * \return Return frame on success, NULL on failure
843 static struct ast_frame *audio_audiohook_write_list(struct ast_channel *chan, struct ast_audiohook_list *audiohook_list, enum ast_audiohook_direction direction, struct ast_frame *frame)
845 struct ast_frame *start_frame = frame, *middle_frame = frame, *end_frame = frame;
846 struct ast_audiohook *audiohook = NULL;
848 int middle_frame_manipulated = 0;
851 /* ---Part_1. translate start_frame to SLINEAR if necessary. */
852 if (!(middle_frame = audiohook_list_translate_to_slin(audiohook_list, direction, start_frame))) {
855 samples = middle_frame->samples;
857 /* ---Part_2: Send middle_frame to spy and manipulator lists. middle_frame is guaranteed to be SLINEAR here.*/
858 /* Queue up signed linear frame to each spy */
859 AST_LIST_TRAVERSE_SAFE_BEGIN(&audiohook_list->spy_list, audiohook, list) {
860 ast_audiohook_lock(audiohook);
861 if (audiohook->status != AST_AUDIOHOOK_STATUS_RUNNING) {
862 AST_LIST_REMOVE_CURRENT(list);
864 ast_audiohook_update_status(audiohook, AST_AUDIOHOOK_STATUS_DONE);
865 ast_audiohook_unlock(audiohook);
868 audiohook_set_internal_rate(audiohook, audiohook_list->list_internal_samp_rate, 1);
869 ast_audiohook_write_frame(audiohook, direction, middle_frame);
870 ast_audiohook_unlock(audiohook);
872 AST_LIST_TRAVERSE_SAFE_END;
874 /* If this frame is being written out to the channel then we need to use whisper sources */
875 if (!AST_LIST_EMPTY(&audiohook_list->whisper_list)) {
877 short read_buf[samples], combine_buf[samples], *data1 = NULL, *data2 = NULL;
878 memset(&combine_buf, 0, sizeof(combine_buf));
879 AST_LIST_TRAVERSE_SAFE_BEGIN(&audiohook_list->whisper_list, audiohook, list) {
880 struct ast_slinfactory *factory = (direction == AST_AUDIOHOOK_DIRECTION_READ ? &audiohook->read_factory : &audiohook->write_factory);
881 ast_audiohook_lock(audiohook);
882 if (audiohook->status != AST_AUDIOHOOK_STATUS_RUNNING) {
883 AST_LIST_REMOVE_CURRENT(list);
885 ast_audiohook_update_status(audiohook, AST_AUDIOHOOK_STATUS_DONE);
886 ast_audiohook_unlock(audiohook);
889 audiohook_set_internal_rate(audiohook, audiohook_list->list_internal_samp_rate, 1);
890 if (ast_slinfactory_available(factory) >= samples && ast_slinfactory_read(factory, read_buf, samples)) {
891 /* Take audio from this whisper source and combine it into our main buffer */
892 for (i = 0, data1 = combine_buf, data2 = read_buf; i < samples; i++, data1++, data2++) {
893 ast_slinear_saturated_add(data1, data2);
896 ast_audiohook_unlock(audiohook);
898 AST_LIST_TRAVERSE_SAFE_END;
899 /* We take all of the combined whisper sources and combine them into the audio being written out */
900 for (i = 0, data1 = middle_frame->data.ptr, data2 = combine_buf; i < samples; i++, data1++, data2++) {
901 ast_slinear_saturated_add(data1, data2);
903 middle_frame_manipulated = 1;
906 /* Pass off frame to manipulate audiohooks */
907 if (!AST_LIST_EMPTY(&audiohook_list->manipulate_list)) {
908 AST_LIST_TRAVERSE_SAFE_BEGIN(&audiohook_list->manipulate_list, audiohook, list) {
909 ast_audiohook_lock(audiohook);
910 if (audiohook->status != AST_AUDIOHOOK_STATUS_RUNNING) {
911 AST_LIST_REMOVE_CURRENT(list);
913 ast_audiohook_update_status(audiohook, AST_AUDIOHOOK_STATUS_DONE);
914 ast_audiohook_unlock(audiohook);
915 /* We basically drop all of our links to the manipulate audiohook and prod it to do it's own destructive things */
916 audiohook->manipulate_callback(audiohook, chan, NULL, direction);
919 audiohook_set_internal_rate(audiohook, audiohook_list->list_internal_samp_rate, 1);
920 /* Feed in frame to manipulation. */
921 if (!audiohook->manipulate_callback(audiohook, chan, middle_frame, direction)) {
922 /* If the manipulation fails then the frame will be returned in its original state.
923 * Since there are potentially more manipulator callbacks in the list, no action should
924 * be taken here to exit early. */
925 middle_frame_manipulated = 1;
927 ast_audiohook_unlock(audiohook);
929 AST_LIST_TRAVERSE_SAFE_END;
932 /* ---Part_3: Decide what to do with the end_frame (whether to transcode or not) */
933 if (middle_frame_manipulated) {
934 if (!(end_frame = audiohook_list_translate_to_native(audiohook_list, direction, middle_frame, start_frame->subclass.format))) {
935 /* translation failed, so just pass back the input frame */
936 end_frame = start_frame;
939 end_frame = start_frame;
941 /* clean up our middle_frame if required */
942 if (middle_frame != end_frame) {
943 ast_frfree(middle_frame);
947 /* Before returning, if an audiohook got removed, reset samplerate compatibility */
949 audiohook_list_set_samplerate_compatibility(audiohook_list);
955 int ast_audiohook_write_list_empty(struct ast_audiohook_list *audiohook_list)
957 return !audiohook_list
958 || (AST_LIST_EMPTY(&audiohook_list->spy_list)
959 && AST_LIST_EMPTY(&audiohook_list->whisper_list)
960 && AST_LIST_EMPTY(&audiohook_list->manipulate_list));
963 /*! \brief Pass a frame off to be handled by the audiohook core
964 * \param chan Channel that the list is coming off of
965 * \param audiohook_list List of audiohooks
966 * \param direction Direction frame is coming in from
967 * \param frame The frame itself
968 * \return Return frame on success, NULL on failure
970 struct ast_frame *ast_audiohook_write_list(struct ast_channel *chan, struct ast_audiohook_list *audiohook_list, enum ast_audiohook_direction direction, struct ast_frame *frame)
972 /* Pass off frame to it's respective list write function */
973 if (frame->frametype == AST_FRAME_VOICE) {
974 return audio_audiohook_write_list(chan, audiohook_list, direction, frame);
975 } else if (frame->frametype == AST_FRAME_DTMF) {
976 return dtmf_audiohook_write_list(chan, audiohook_list, direction, frame);
982 /*! \brief Wait for audiohook trigger to be triggered
983 * \param audiohook Audiohook to wait on
985 void ast_audiohook_trigger_wait(struct ast_audiohook *audiohook)
990 wait = ast_tvadd(ast_tvnow(), ast_samp2tv(50000, 1000));
991 ts.tv_sec = wait.tv_sec;
992 ts.tv_nsec = wait.tv_usec * 1000;
994 ast_cond_timedwait(&audiohook->trigger, &audiohook->lock, &ts);
999 /* Count number of channel audiohooks by type, regardless of type */
1000 int ast_channel_audiohook_count_by_source(struct ast_channel *chan, const char *source, enum ast_audiohook_type type)
1003 struct ast_audiohook *ah = NULL;
1005 if (!ast_channel_audiohooks(chan)) {
1010 case AST_AUDIOHOOK_TYPE_SPY:
1011 AST_LIST_TRAVERSE(&ast_channel_audiohooks(chan)->spy_list, ah, list) {
1012 if (!strcmp(ah->source, source)) {
1017 case AST_AUDIOHOOK_TYPE_WHISPER:
1018 AST_LIST_TRAVERSE(&ast_channel_audiohooks(chan)->whisper_list, ah, list) {
1019 if (!strcmp(ah->source, source)) {
1024 case AST_AUDIOHOOK_TYPE_MANIPULATE:
1025 AST_LIST_TRAVERSE(&ast_channel_audiohooks(chan)->manipulate_list, ah, list) {
1026 if (!strcmp(ah->source, source)) {
1032 ast_debug(1, "Invalid audiohook type supplied, (%u)\n", type);
1039 /* Count number of channel audiohooks by type that are running */
1040 int ast_channel_audiohook_count_by_source_running(struct ast_channel *chan, const char *source, enum ast_audiohook_type type)
1043 struct ast_audiohook *ah = NULL;
1044 if (!ast_channel_audiohooks(chan))
1048 case AST_AUDIOHOOK_TYPE_SPY:
1049 AST_LIST_TRAVERSE(&ast_channel_audiohooks(chan)->spy_list, ah, list) {
1050 if ((!strcmp(ah->source, source)) && (ah->status == AST_AUDIOHOOK_STATUS_RUNNING))
1054 case AST_AUDIOHOOK_TYPE_WHISPER:
1055 AST_LIST_TRAVERSE(&ast_channel_audiohooks(chan)->whisper_list, ah, list) {
1056 if ((!strcmp(ah->source, source)) && (ah->status == AST_AUDIOHOOK_STATUS_RUNNING))
1060 case AST_AUDIOHOOK_TYPE_MANIPULATE:
1061 AST_LIST_TRAVERSE(&ast_channel_audiohooks(chan)->manipulate_list, ah, list) {
1062 if ((!strcmp(ah->source, source)) && (ah->status == AST_AUDIOHOOK_STATUS_RUNNING))
1067 ast_debug(1, "Invalid audiohook type supplied, (%u)\n", type);
1073 /*! \brief Audiohook volume adjustment structure */
1074 struct audiohook_volume {
1075 struct ast_audiohook audiohook; /*!< Audiohook attached to the channel */
1076 int read_adjustment; /*!< Value to adjust frames read from the channel by */
1077 int write_adjustment; /*!< Value to adjust frames written to the channel by */
1080 /*! \brief Callback used to destroy the audiohook volume datastore
1081 * \param data Volume information structure
1082 * \return Returns nothing
1084 static void audiohook_volume_destroy(void *data)
1086 struct audiohook_volume *audiohook_volume = data;
1088 /* Destroy the audiohook as it is no longer in use */
1089 ast_audiohook_destroy(&audiohook_volume->audiohook);
1091 /* Finally free ourselves, we are of no more use */
1092 ast_free(audiohook_volume);
1097 /*! \brief Datastore used to store audiohook volume information */
1098 static const struct ast_datastore_info audiohook_volume_datastore = {
1100 .destroy = audiohook_volume_destroy,
1103 /*! \brief Helper function which actually gets called by audiohooks to perform the adjustment
1104 * \param audiohook Audiohook attached to the channel
1105 * \param chan Channel we are attached to
1106 * \param frame Frame of audio we want to manipulate
1107 * \param direction Direction the audio came in from
1108 * \return Returns 0 on success, -1 on failure
1110 static int audiohook_volume_callback(struct ast_audiohook *audiohook, struct ast_channel *chan, struct ast_frame *frame, enum ast_audiohook_direction direction)
1112 struct ast_datastore *datastore = NULL;
1113 struct audiohook_volume *audiohook_volume = NULL;
1116 /* If the audiohook is shutting down don't even bother */
1117 if (audiohook->status == AST_AUDIOHOOK_STATUS_DONE) {
1121 /* Try to find the datastore containg adjustment information, if we can't just bail out */
1122 if (!(datastore = ast_channel_datastore_find(chan, &audiohook_volume_datastore, NULL))) {
1126 audiohook_volume = datastore->data;
1128 /* Based on direction grab the appropriate adjustment value */
1129 if (direction == AST_AUDIOHOOK_DIRECTION_READ) {
1130 gain = &audiohook_volume->read_adjustment;
1131 } else if (direction == AST_AUDIOHOOK_DIRECTION_WRITE) {
1132 gain = &audiohook_volume->write_adjustment;
1135 /* If an adjustment value is present modify the frame */
1136 if (gain && *gain) {
1137 ast_frame_adjust_volume(frame, *gain);
1143 /*! \brief Helper function which finds and optionally creates an audiohook_volume_datastore datastore on a channel
1144 * \param chan Channel to look on
1145 * \param create Whether to create the datastore if not found
1146 * \return Returns audiohook_volume structure on success, NULL on failure
1148 static struct audiohook_volume *audiohook_volume_get(struct ast_channel *chan, int create)
1150 struct ast_datastore *datastore = NULL;
1151 struct audiohook_volume *audiohook_volume = NULL;
1153 /* If we are able to find the datastore return the contents (which is actually an audiohook_volume structure) */
1154 if ((datastore = ast_channel_datastore_find(chan, &audiohook_volume_datastore, NULL))) {
1155 return datastore->data;
1158 /* If we are not allowed to create a datastore or if we fail to create a datastore, bail out now as we have nothing for them */
1159 if (!create || !(datastore = ast_datastore_alloc(&audiohook_volume_datastore, NULL))) {
1163 /* Create a new audiohook_volume structure to contain our adjustments and audiohook */
1164 if (!(audiohook_volume = ast_calloc(1, sizeof(*audiohook_volume)))) {
1165 ast_datastore_free(datastore);
1169 /* Setup our audiohook structure so we can manipulate the audio */
1170 ast_audiohook_init(&audiohook_volume->audiohook, AST_AUDIOHOOK_TYPE_MANIPULATE, "Volume", AST_AUDIOHOOK_MANIPULATE_ALL_RATES);
1171 audiohook_volume->audiohook.manipulate_callback = audiohook_volume_callback;
1173 /* Attach the audiohook_volume blob to the datastore and attach to the channel */
1174 datastore->data = audiohook_volume;
1175 ast_channel_datastore_add(chan, datastore);
1177 /* All is well... put the audiohook into motion */
1178 ast_audiohook_attach(chan, &audiohook_volume->audiohook);
1180 return audiohook_volume;
1183 /*! \brief Adjust the volume on frames read from or written to a channel
1184 * \param chan Channel to muck with
1185 * \param direction Direction to set on
1186 * \param volume Value to adjust the volume by
1187 * \return Returns 0 on success, -1 on failure
1189 int ast_audiohook_volume_set(struct ast_channel *chan, enum ast_audiohook_direction direction, int volume)
1191 struct audiohook_volume *audiohook_volume = NULL;
1193 /* Attempt to find the audiohook volume information, but only create it if we are not setting the adjustment value to zero */
1194 if (!(audiohook_volume = audiohook_volume_get(chan, (volume ? 1 : 0)))) {
1198 /* Now based on the direction set the proper value */
1199 if (direction == AST_AUDIOHOOK_DIRECTION_READ || direction == AST_AUDIOHOOK_DIRECTION_BOTH) {
1200 audiohook_volume->read_adjustment = volume;
1202 if (direction == AST_AUDIOHOOK_DIRECTION_WRITE || direction == AST_AUDIOHOOK_DIRECTION_BOTH) {
1203 audiohook_volume->write_adjustment = volume;
1209 /*! \brief Retrieve the volume adjustment value on frames read from or written to a channel
1210 * \param chan Channel to retrieve volume adjustment from
1211 * \param direction Direction to retrieve
1212 * \return Returns adjustment value
1214 int ast_audiohook_volume_get(struct ast_channel *chan, enum ast_audiohook_direction direction)
1216 struct audiohook_volume *audiohook_volume = NULL;
1219 /* Attempt to find the audiohook volume information, but do not create it as we only want to look at the values */
1220 if (!(audiohook_volume = audiohook_volume_get(chan, 0))) {
1224 /* Grab the adjustment value based on direction given */
1225 if (direction == AST_AUDIOHOOK_DIRECTION_READ) {
1226 adjustment = audiohook_volume->read_adjustment;
1227 } else if (direction == AST_AUDIOHOOK_DIRECTION_WRITE) {
1228 adjustment = audiohook_volume->write_adjustment;
1234 /*! \brief Adjust the volume on frames read from or written to a channel
1235 * \param chan Channel to muck with
1236 * \param direction Direction to increase
1237 * \param volume Value to adjust the adjustment by
1238 * \return Returns 0 on success, -1 on failure
1240 int ast_audiohook_volume_adjust(struct ast_channel *chan, enum ast_audiohook_direction direction, int volume)
1242 struct audiohook_volume *audiohook_volume = NULL;
1244 /* Attempt to find the audiohook volume information, and create an audiohook if none exists */
1245 if (!(audiohook_volume = audiohook_volume_get(chan, 1))) {
1249 /* Based on the direction change the specific adjustment value */
1250 if (direction == AST_AUDIOHOOK_DIRECTION_READ || direction == AST_AUDIOHOOK_DIRECTION_BOTH) {
1251 audiohook_volume->read_adjustment += volume;
1253 if (direction == AST_AUDIOHOOK_DIRECTION_WRITE || direction == AST_AUDIOHOOK_DIRECTION_BOTH) {
1254 audiohook_volume->write_adjustment += volume;
1260 /*! \brief Mute frames read from or written to a channel
1261 * \param chan Channel to muck with
1262 * \param source Type of audiohook
1263 * \param flag which flag to set / clear
1264 * \param clear set or clear
1265 * \return Returns 0 on success, -1 on failure
1267 int ast_audiohook_set_mute(struct ast_channel *chan, const char *source, enum ast_audiohook_flags flag, int clear)
1269 struct ast_audiohook *audiohook = NULL;
1271 ast_channel_lock(chan);
1273 /* Ensure the channel has audiohooks on it */
1274 if (!ast_channel_audiohooks(chan)) {
1275 ast_channel_unlock(chan);
1279 audiohook = find_audiohook_by_source(ast_channel_audiohooks(chan), source);
1283 ast_clear_flag(audiohook, flag);
1285 ast_set_flag(audiohook, flag);
1289 ast_channel_unlock(chan);
1291 return (audiohook ? 0 : -1);