public override void AddUserVideoInfo(uint userId, uint textureId) { if (_rtcEngine == null) { return; } IRtcEngineNative.addUserVideoInfo(userId, textureId); }
public override int AddUserVideoInfo(uint userId, uint textureId) { if (_rtcEngine == null) { return((int)ERROR_CODE.ERROR_NOT_INIT_ENGINE); } return(IRtcEngineNative.addUserVideoInfo(userId, textureId)); }