From 3141a80c93cd9b449cb7f6dafbf32fa2f5005d1f Mon Sep 17 00:00:00 2001 From: Vladimir Morosev Date: Thu, 2 May 2019 19:08:27 +0200 Subject: [PATCH] MRC flag set to disabled state by default --- ClientCore/Signalling/Conductor.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ClientCore/Signalling/Conductor.cs b/ClientCore/Signalling/Conductor.cs index 603354a..807c635 100644 --- a/ClientCore/Signalling/Conductor.cs +++ b/ClientCore/Signalling/Conductor.cs @@ -549,7 +549,7 @@ public IAsyncOperation> GetVideoCaptureCapabilities(str Width = (uint)property.Width, Height = (uint)property.Height, FrameRate = frameRate, - MrcEnabled = true, + MrcEnabled = false, FrameRateDescription = $"{frameRate} fps", ResolutionDescription = $"{property.Width} x {property.Height}" }); @@ -759,7 +759,7 @@ async private Task CreatePeerConnection(CancellationToken cancelationToken } } #else - var videoCapturer = VideoCapturer.Create(_selectedVideoDevice.Name, _selectedVideoDevice.Id, false); + var videoCapturer = VideoCapturer.Create(_selectedVideoDevice.Name, _selectedVideoDevice.Id, VideoCaptureProfile.MrcEnabled); #if ENABLE_VIDEO_PROCESSING ((VideoCapturer)videoCapturer).OnVideoFrame += (IVideoFrameBufferEvent evt) => {