Exemple #1
0
        public override void RemoveUserVideoInfo(uint _userId)
        {
            if (_rtcEngine == null)
            {
                return;
            }

            IRtcEngineNative.removeUserVideoInfo(_userId);
        }
Exemple #2
0
        public override int RemoveUserVideoInfo(uint _userId)
        {
            if (_rtcEngine == null)
            {
                return((int)ERROR_CODE.ERROR_NOT_INIT_ENGINE);
            }

            return(IRtcEngineNative.removeUserVideoInfo(_userId));
        }