aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2005-11-05 22:30:31 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2005-11-05 22:30:31 +0000
commit6fb0460c956bb7b2842b72c7b21b7886392c3b4f (patch)
tree77e42f77c871bb0309104d971c60e3d9c3153dfa
parent49f65e4379624cf2655db1c60ac69d62b72aca65 (diff)
Handle DTMF properly when combined with other events
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6964 f38db490-d61c-443f-a65b-d21fe96a405b
-rwxr-xr-xchannels/chan_zap.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/channels/chan_zap.c b/channels/chan_zap.c
index 4d9073416..dd0dcb64a 100755
--- a/channels/chan_zap.c
+++ b/channels/chan_zap.c
@@ -2937,7 +2937,10 @@ static void disable_dtmf_detect(struct zt_pvt *p)
val = 0;
ioctl(p->subs[SUB_REAL].zfd, ZT_TONEDETECT, &val);
#endif
-
+ if (!p->hardwaredtmf && p->dsp) {
+ p->dsp_features &= ~DSP_FEATURE_DTMF_DETECT;
+ ast_dsp_set_features(p->dsp, p->dsp_features);
+ }
}
static void enable_dtmf_detect(struct zt_pvt *p)
@@ -2952,6 +2955,10 @@ static void enable_dtmf_detect(struct zt_pvt *p)
val = ZT_TONEDETECT_ON | ZT_TONEDETECT_MUTE;
ioctl(p->subs[SUB_REAL].zfd, ZT_TONEDETECT, &val);
#endif
+ if (!p->hardwaredtmf && p->dsp) {
+ p->dsp_features |= DSP_FEATURE_DTMF_DETECT;
+ ast_dsp_set_features(p->dsp, p->dsp_features);
+ }
}
static enum ast_bridge_result zt_bridge(struct ast_channel *c0, struct ast_channel *c1, int flags, struct ast_frame **fo, struct ast_channel **rc, int timeoutms)
@@ -3198,7 +3205,7 @@ static enum ast_bridge_result zt_bridge(struct ast_channel *c0, struct ast_chann
if (f->frametype == AST_FRAME_DTMF) {
if ((who == c0) && p0->pulsedial) {
ast_write(c1, f);
- } else if (p1->pulsedial) {
+ } else if ((who == c1) && p1->pulsedial) {
ast_write(c0, f);
} else {
*fo = f;