Solved problem where talker hears himself when

talk optimization is on in app_meetme.
bug #6266


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@10785 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Matt O'Gorman 2006-02-22 21:40:00 +00:00
parent 9a55cf9bc1
commit 3ae4285d17
1 changed files with 1 additions and 1 deletions

View File

@ -1558,7 +1558,7 @@ static int conf_run(struct ast_channel *chan, struct ast_conference *conf, int c
if (!user->listen.actual &&
((confflags & CONFFLAG_MONITOR) ||
(user->adminflags & ADMINFLAG_MUTED) ||
(user->talking && (confflags & CONFFLAG_OPTIMIZETALKER))
(!user->talking && (confflags & CONFFLAG_OPTIMIZETALKER))
)) {
int index;
for (index=0;index<AST_FRAME_BITS;index++)