Beispiel #1
0
        /** Retrieves the volume of the current audio recording device.
         *
         * @return
         * - ≥ 0: The volume of the current audio recording device, if this method call succeeds.
         * - < 0: Failure.
         */
        public override int GetAudioRecordingDeviceVolume()
        {
            if (mEngine == null)
            {
                return((int)ERROR_CODE.ERROR_NOT_INIT_ENGINE);
            }

            return(IRtcEngineNative.getAudioRecordingDeviceVolume());
        }