如何在iOS上的PJSIP调用中实现静音功能

时间:2012-06-22 06:58:24

标签: iphone ios5 ios-simulator pjsip

我想在通话中实现静音按钮。我正在为iPhone开发VOIP应用程序。现在当来电和用户接听时,我想显示一个静音按钮,这样用户就可以将呼叫或会议静音。我通过PJSIP API做了同样的事情。

-(int) mutethecall
{
    pj_status_t status =   pjsua_conf_adjust_rx_level (0,0);
    status = pjsua_conf_adjust_tx_level (0,0);
    return (PJ_SUCCESS == status);
}
-(int) unmutethecall
{
    pj_status_t status =   pjsua_conf_adjust_rx_level (0,1);
    status = pjsua_conf_adjust_tx_level (0,1);
    return (PJ_SUCCESS == status);
}

问题在于,虽然此代码适用于一对一呼叫,但它不适用于会议场景。

我想知道我是否可以直接关闭麦克风:我可以使用iOS绕过PJSIP API实现相同的功能吗?

这可能吗?

1 个答案:

答案 0 :(得分:7)

如果要取消静音,可以使用pjsua_conf_disconnect和pjsua_conf_connect完全断开麦克风与会议的连接。

这是一些实现这一诀窍的Objective-C代码:

+(void)muteMicrophone
{
    @try {
        if( pjsipConfAudioId != 0 ) {
            NSLog(@"WC_SIPServer microphone disconnected from call");
            pjsua_conf_disconnect(0, pjsipConfAudioId);
        }
    }
    @catch (NSException *exception) {
        NSLog(@"Unable to mute microphone: %@", exception);
    }
}

+(void)unmuteMicrophone
{
    @try {
        if( pjsipConfAudioId != 0 ) {
            NSLog(@"WC_SIPServer microphone reconnected to call");
            pjsua_conf_connect(0,pjsipConfAudioId);
        }
    }
    @catch (NSException *exception) {
        NSLog(@"Unable to un-mute microphone: %@", exception);
    }
}

请注意,在建立调用时检索了pjsipConfAudioID,再次在Objective-C中...

static void on_call_state(pjsua_call_id call_id, pjsip_event *e)
{
    pjsua_call_info ci;
    PJ_UNUSED_ARG(e);
    pjsua_call_get_info(call_id, &ci);
    pjsipConfAudioId = ci.conf_slot;
    ...
}

希望有所帮助!