暖暖视频免费观**,国产免费美女被艹视频,毛片一级毛片,不卡三级

智慧服務(wù),成就美好體驗 項目咨詢

主頁 > 服務(wù)與支持 > 開發(fā)平臺 > 客戶端SDK參考 > iOS Native SDK > 會議 獲取信號和質(zhì)量數(shù)據(jù)

入門使用

獲取信號和質(zhì)量數(shù)據(jù)

更新時間:2019-11-20

獲取信號和質(zhì)量數(shù)據(jù)

描述

用戶正在通話中或者會議中,用戶可以獲取當(dāng)前呼叫的信號強度和質(zhì)量數(shù)據(jù)信息,如果在當(dāng)前正在主動共享或觀看共享,用戶還能獲取共享的質(zhì)量數(shù)據(jù)信息。

前提條件

用戶正在通話中或者會議中。

業(yè)務(wù)流程

圖1 獲取信號和質(zhì)量數(shù)據(jù)流程

  1. SDK向UI上報事件TSDK_E_CALL_EVT_STATISTIC_INFO,通知事件攜帶參數(shù)callid標(biāo)識本次呼叫,信號強度和音視頻質(zhì)量數(shù)據(jù),音視頻質(zhì)量數(shù)據(jù)對應(yīng)的事件數(shù)據(jù)結(jié)構(gòu)TSDK_S_CALL_STATISTIC_INFO包含音頻和視頻呼叫質(zhì)量信息。UI獲取到事件內(nèi)容后,刷新顯示。
    說明: 

    TSDK_E_CALL_EVT_STATISTIC_INFO事件每5秒上報一次,若UI需要更高頻率獲取音視頻質(zhì)量數(shù)據(jù),可以調(diào)用tsdk_get_call_statistic_info()接口獲取。

    代碼示例:

    //c code
    case TSDK_E_CALL_EVT_STATISTIC_INFO:
    {
         handle_call_statistic_info(param1, param2, (TSDK_S_CALL_STATISTIC_INFO *)data);
         break;
    }
     
  2. 如果在當(dāng)前正在主動共享或觀看共享,UI可以調(diào)用tsdk_get_share_statistic_info()接口獲取共享質(zhì)量數(shù)據(jù),傳入?yún)?shù)conf_handle標(biāo)識本次會議句柄,返回參數(shù)數(shù)據(jù)結(jié)構(gòu)TSDK_S_SHARE_STATISTIC_INFO包含共享質(zhì)量數(shù)據(jù)。

    代碼示例:

    //c code
    - (VideoStreamInfo *)getSignalDataInfo
    {
        TSDK_S_SHARE_STATISTIC_INFO share_statistic_info;
        memset(&share_statistic_info, 0, sizeof(TSDK_S_SHARE_STATISTIC_INFO));
        tsdk_get_share_statistic_info(_confHandle, &share_statistic_info);
    
        VideoStreamInfo *videoStreamInfo = [[VideoStreamInfo alloc] init];
        videoStreamInfo.sendBitRate = share_statistic_info.send_bit_rate;
        videoStreamInfo.sendFrameSize = [NSString stringWithFormat:@"%u*%u",share_statistic_info.send_frame_size_width,share_statistic_info.send_frame_size_height];
        videoStreamInfo.sendFrameRate = share_statistic_info.send_frame_rate;
        videoStreamInfo.sendLossFraction = share_statistic_info.send_pkt_loss;
        videoStreamInfo.sendDelay = share_statistic_info.send_rtt;
        videoStreamInfo.sendJitter = share_statistic_info.send_jitter;
        videoStreamInfo.recvBitRate = share_statistic_info.recv_bit_rate;
        videoStreamInfo.recvFrameSize = [NSString stringWithFormat:@"%u*%u",share_statistic_info.recv_frame_size_width,share_statistic_info.recv_frame_size_height];
        videoStreamInfo.recvLossFraction = share_statistic_info.recv_pkt_loss;
        videoStreamInfo.recvFrameRate = share_statistic_info.recv_frame_rate;
        videoStreamInfo.recvDelay = share_statistic_info.recv_rtt;
        videoStreamInfo.recvJitter = share_statistic_info.recv_jitter;
    
        return videoStreamInfo;
    }