mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-07 05:39:39 +00:00
New HD ConfBridge conferencing application.
Includes a new highly optimized and customizable ConfBridge application capable of mixing audio at sample rates ranging from 8khz-192khz. Review: https://reviewboard.asterisk.org/r/1147/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@314598 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -178,6 +178,7 @@ typedef unsigned long long ast_group_t;
|
||||
*/
|
||||
struct ast_generator {
|
||||
void *(*alloc)(struct ast_channel *chan, void *params);
|
||||
/*! Channel is locked during this function callback. */
|
||||
void (*release)(struct ast_channel *chan, void *data);
|
||||
/*! This function gets called with the channel unlocked, but is called in
|
||||
* the context of the channel thread so we know the channel is not going
|
||||
@@ -186,6 +187,9 @@ struct ast_generator {
|
||||
int (*generate)(struct ast_channel *chan, void *data, int len, int samples);
|
||||
/*! This gets called when DTMF_END frames are read from the channel */
|
||||
void (*digit)(struct ast_channel *chan, char digit);
|
||||
/*! This gets called when the write format on a channel is changed while
|
||||
* generating. The channel is locked during this callback. */
|
||||
void (*write_format_change)(struct ast_channel *chan, void *data);
|
||||
};
|
||||
|
||||
/*! Party name character set enumeration values (values from Q.SIG) */
|
||||
|
Reference in New Issue
Block a user