Fix conferencing of non-zap stuff (bug #3488)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4947 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer
2005-02-02 02:20:34 +00:00
parent c48522110f
commit b96ba5cae3

View File

@@ -932,6 +932,10 @@ zapretry:
chan->name, chan->uniqueid, conf->confno, user->user_no); chan->name, chan->uniqueid, conf->confno, user->user_no);
} }
} }
if (using_pseudo) {
/* Carefully write */
careful_write(fd, f->data, f->datalen);
}
} else if ((f->frametype == AST_FRAME_DTMF) && (confflags & CONFFLAG_EXIT_CONTEXT)) { } else if ((f->frametype == AST_FRAME_DTMF) && (confflags & CONFFLAG_EXIT_CONTEXT)) {
char tmp[2]; char tmp[2];
tmp[0] = f->subclass; tmp[0] = f->subclass;
@@ -1062,14 +1066,8 @@ zapretry:
if (musiconhold) { if (musiconhold) {
ast_moh_start(chan, NULL); ast_moh_start(chan, NULL);
} }
} else if (using_pseudo) { } else if (option_debug) {
if (f->frametype == AST_FRAME_VOICE) { ast_log(LOG_DEBUG, "Got unrecognized frame on channel %s, f->frametype=%d,f->subclass=%d\n",chan->name,f->frametype,f->subclass);
if (f->subclass == AST_FORMAT_SLINEAR) {
/* Carefully write */
careful_write(fd, f->data, f->datalen);
} else
ast_log(LOG_WARNING, "Huh? Got a non-linear (%d) frame in the conference\n", f->subclass);
}
} }
ast_frfree(f); ast_frfree(f);
} else if (outfd > -1) { } else if (outfd > -1) {