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:
@@ -73,9 +73,19 @@ enum threshold {
|
||||
THRESHOLD_MAX = 1,
|
||||
};
|
||||
|
||||
/*! \brief Allocates a new dsp with a specific internal sample rate used
|
||||
* during processing. */
|
||||
struct ast_dsp *ast_dsp_new_with_rate(unsigned int sample_rate);
|
||||
|
||||
/*! \brief Allocates a new dsp, assumes 8khz for internal sample rate */
|
||||
struct ast_dsp *ast_dsp_new(void);
|
||||
|
||||
void ast_dsp_free(struct ast_dsp *dsp);
|
||||
|
||||
/*! \brief Retrieve the sample rate this DSP structure was
|
||||
* created with */
|
||||
unsigned int ast_dsp_get_sample_rate(const struct ast_dsp *dsp);
|
||||
|
||||
/*! \brief Set threshold value for silence */
|
||||
void ast_dsp_set_threshold(struct ast_dsp *dsp, int threshold);
|
||||
|
||||
|
Reference in New Issue
Block a user