aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2009-06-25 19:22:46 +0000
committerqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2009-06-25 19:22:46 +0000
commitb990032a9ce1b0a4931ac64b98e42a6b0d956db0 (patch)
treeb272a5bba6fe15b0f45c6046727b3bab7630984b
parente3de5edcc54ceb9e4c00b55d08a0adf2b4c6af07 (diff)
Unmute when we get a dtmfup (we muted on dtmfdown) event.
This would occasionally cause one-way audio when using hardware DTMF detection. (closes issue #14761) Reported by: tzafrir Patches: v1-14761.patch uploaded by dimas (license 88) Tested by: tzafrir, dimas git-svn-id: http://svn.digium.com/svn/asterisk/trunk@203258 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--channels/chan_dahdi.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/channels/chan_dahdi.c b/channels/chan_dahdi.c
index 5e9cb5b1b..344f56af6 100644
--- a/channels/chan_dahdi.c
+++ b/channels/chan_dahdi.c
@@ -6965,6 +6965,7 @@ static struct ast_frame *dahdi_handle_event(struct ast_channel *ast)
/* absorb event */
} else {
#endif
+ dahdi_confmute(p, 0);
p->subs[idx].f.frametype = AST_FRAME_DTMF_END;
p->subs[idx].f.subclass = res & 0xff;
#ifdef HAVE_PRI