mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-20 11:43:52 +00:00
Remove more needlock stuff
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2662 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -533,7 +533,7 @@ static struct ast_frame *oh323_rtp_read(struct oh323_pvt *p)
|
||||
|
||||
/* Do in-band DTMF detection */
|
||||
if (p->dtmfmode & H323_DTMF_INBAND) {
|
||||
f = ast_dsp_process(p->owner,p->vad,f,0);
|
||||
f = ast_dsp_process(p->owner,p->vad,f);
|
||||
if (f->frametype == AST_FRAME_DTMF)
|
||||
ast_log(LOG_DEBUG, "Got in-band digit %c.\n", f->subclass);
|
||||
}
|
||||
@@ -622,7 +622,7 @@ static int oh323_indicate(struct ast_channel *c, int condition)
|
||||
}
|
||||
|
||||
// FIXME: WTF is this? Do I need this???
|
||||
static int oh323_fixup(struct ast_channel *oldchan, struct ast_channel *newchan, int needlock)
|
||||
static int oh323_fixup(struct ast_channel *oldchan, struct ast_channel *newchan)
|
||||
{
|
||||
struct oh323_pvt *p = newchan->pvt->pvt;
|
||||
|
||||
|
Reference in New Issue
Block a user