mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-03 04:16:43 +00:00
Fix a bug where the 'T' option to Meetme did not work.
(closes issue #15031) Reported by: Stochastic (closes issue #13801) Reported by: justdave git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@194434 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -2484,7 +2484,7 @@ static int conf_run(struct ast_channel *chan, struct ast_conference *conf, int c
|
|||||||
x = 1;
|
x = 1;
|
||||||
ast_channel_setoption(chan, AST_OPTION_TONE_VERIFY, &x, sizeof(char), 0);
|
ast_channel_setoption(chan, AST_OPTION_TONE_VERIFY, &x, sizeof(char), 0);
|
||||||
}
|
}
|
||||||
if ((confflags & CONFFLAG_OPTIMIZETALKER) && !(confflags & CONFFLAG_MONITOR) && !(dsp = ast_dsp_new())) {
|
if (confflags & (CONFFLAG_OPTIMIZETALKER | CONFFLAG_MONITORTALKER) && !(dsp = ast_dsp_new())) {
|
||||||
ast_log(LOG_WARNING, "Unable to allocate DSP!\n");
|
ast_log(LOG_WARNING, "Unable to allocate DSP!\n");
|
||||||
res = -1;
|
res = -1;
|
||||||
}
|
}
|
||||||
@@ -2855,7 +2855,7 @@ static int conf_run(struct ast_channel *chan, struct ast_conference *conf, int c
|
|||||||
ast_frame_adjust_volume(f, user->talk.actual);
|
ast_frame_adjust_volume(f, user->talk.actual);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((confflags & CONFFLAG_OPTIMIZETALKER) && !(confflags & CONFFLAG_MONITOR)) {
|
if (confflags & (CONFFLAG_OPTIMIZETALKER | CONFFLAG_MONITORTALKER)) {
|
||||||
int totalsilence;
|
int totalsilence;
|
||||||
|
|
||||||
if (user->talking == -1) {
|
if (user->talking == -1) {
|
||||||
|
|||||||
Reference in New Issue
Block a user