From 0b23fd9944f69c5f1c6df3259d1036731fa3c721 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Sun, 20 Oct 2024 11:23:09 +0200 Subject: [PATCH] Set H264 as the preferredvideocodec --- .../Runtime/Scripts/PeerConnection.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/com.microsoft.mixedreality.webrtc/Runtime/Scripts/PeerConnection.cs b/com.microsoft.mixedreality.webrtc/Runtime/Scripts/PeerConnection.cs index 9563bfa..a5f1d5c 100644 --- a/com.microsoft.mixedreality.webrtc/Runtime/Scripts/PeerConnection.cs +++ b/com.microsoft.mixedreality.webrtc/Runtime/Scripts/PeerConnection.cs @@ -423,6 +423,7 @@ namespace Microsoft.MixedReality.WebRTC.Unity // Create the offer AutoCreateOfferOnRenegotiationNeeded = true; + _nativePeer.PreferredVideoCodec = "H264"; // 'VP8' is the default return _nativePeer.CreateOffer(); } @@ -674,6 +675,7 @@ namespace Microsoft.MixedReality.WebRTC.Unity { // Create the peer connection managed wrapper and its native implementation _nativePeer = new WebRTC.PeerConnection(); + _nativePeer.PreferredVideoCodec = "H264"; // 'VP8' is the default _nativePeer.AudioTrackAdded += (RemoteAudioTrack track) => @@ -739,6 +741,7 @@ namespace Microsoft.MixedReality.WebRTC.Unity TurnPassword = IceCredential }); } + _nativePeer.PreferredVideoCodec = "H264"; // 'VP8' is the default return _nativePeer.InitializeAsync(config, token).ContinueWith((initTask) => { token.ThrowIfCancellationRequested(); @@ -779,6 +782,10 @@ namespace Microsoft.MixedReality.WebRTC.Unity // Once the peer is initialized, it becomes publicly accessible. // This prevent scripts from accessing it before it is initialized. + + Debug.Log("H264 is set as the preferred video codec."); + + _nativePeer.PreferredVideoCodec = "H264"; // 'VP8' is the default Peer = _nativePeer; OnInitialized.Invoke();