remove my debug output, d'oh! :)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/v1-0@5913 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.0
Russell Bryant 20 years ago
parent 4f1e96c0b6
commit 200ca9631d

@ -2234,10 +2234,8 @@ static struct ast_frame *sip_rtp_read(struct ast_channel *ast, struct sip_pvt *p
}
if ((p->dtmfmode & SIP_DTMF_INBAND) && p->vad) {
f = ast_dsp_process(p->owner,p->vad,f);
if (f && (f->frametype == AST_FRAME_DTMF)) {
if (f && (f->frametype == AST_FRAME_DTMF))
ast_log(LOG_DEBUG, "Detected DTMF '%c'\n", f->subclass);
ast_log(LOG_NOTICE, "Detected inband DTMF '%c'\n", f->subclass);
}
}
}
}

Loading…
Cancel
Save