mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 12:16:00 +00:00
Backport of AUDIOHOOK_INHERIT for Asterisk 1.4
(closes issue #13538) Reported by: mbit Patches: 13538.patch uploaded by putnopvut (license 60) Tested by: putnopvut git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@166157 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -146,6 +146,21 @@ int ast_audiohook_detach(struct ast_audiohook *audiohook);
|
||||
*/
|
||||
int ast_audiohook_detach_list(struct ast_audiohook_list *audiohook_list);
|
||||
|
||||
/*! \brief Move an audiohook from one channel to a new one
|
||||
*
|
||||
* \todo Currently only the first audiohook of a specific source found will be moved.
|
||||
* We should add the capability to move multiple audiohooks from a single source as well.
|
||||
*
|
||||
* \note It is required that both old_chan and new_chan are locked prior to calling
|
||||
* this function. Besides needing to protect the data within the channels, not locking
|
||||
* these channels can lead to a potential deadlock
|
||||
*
|
||||
* \param old_chan The source of the audiohook to move
|
||||
* \param new_chan The destination to which we want the audiohook to move
|
||||
* \param source The source of the audiohook we want to move
|
||||
*/
|
||||
void ast_audiohook_move_by_source(struct ast_channel *old_chan, struct ast_channel *new_chan, const char *source);
|
||||
|
||||
/*! \brief Detach specified source audiohook from channel
|
||||
* \param chan Channel to detach from
|
||||
* \param source Name of source to detach
|
||||
@@ -153,6 +168,18 @@ int ast_audiohook_detach_list(struct ast_audiohook_list *audiohook_list);
|
||||
*/
|
||||
int ast_audiohook_detach_source(struct ast_channel *chan, const char *source);
|
||||
|
||||
/*!
|
||||
* \brief Remove an audiohook from a specified channel
|
||||
*
|
||||
* \param chan Channel to remove from
|
||||
* \param audiohook Audiohook to remove
|
||||
*
|
||||
* \return Returns 0 on success, -1 on failure
|
||||
*
|
||||
* \note The channel does not need to be locked before calling this function
|
||||
*/
|
||||
int ast_audiohook_remove(struct ast_channel *chan, struct ast_audiohook *audiohook);
|
||||
|
||||
/*! \brief Pass a frame off to be handled by the audiohook core
|
||||
* \param chan Channel that the list is coming off of
|
||||
* \param audiohook_list List of audiohooks
|
||||
|
Reference in New Issue
Block a user