예제 #1
0
        public override void AddUserVideoInfo(uint userId, uint textureId)
        {
            if (_rtcEngine == null)
            {
                return;
            }

            IRtcEngineNative.addUserVideoInfo(userId, textureId);
        }
예제 #2
0
        public override int AddUserVideoInfo(uint userId, uint textureId)
        {
            if (_rtcEngine == null)
            {
                return((int)ERROR_CODE.ERROR_NOT_INIT_ENGINE);
            }

            return(IRtcEngineNative.addUserVideoInfo(userId, textureId));
        }