Search Unity

  1. Unity Asset Manager is now available in public beta. Try it out now and join the conversation here in the forums.
    Dismiss Notice
  2. Megacity Metro Demo now available. Download now.
    Dismiss Notice
  3. Unity support for visionOS is now available. Learn more in our blog post.
    Dismiss Notice

Official WebRTC package FAQ

Discussion in 'Unity Render Streaming' started by kazuki_unity729, Jul 5, 2022.

  1. kazuki_unity729

    kazuki_unity729

    Unity Technologies

    Joined:
    Aug 2, 2018
    Posts:
    803
    Please feel free to ask questions and sugfgestions about WebRTC packge.
     
  2. Fire_Preserver

    Fire_Preserver

    Joined:
    Sep 10, 2022
    Posts:
    1
    Does renderstream + WebRTC support adaptive bitrate streaming (e.g. for wireless networks)? Or does the server just set the bitrate according to the rates reported by the client's browser?
    Do you have any recommendations when streaming to a mobile phone over 4G/5G ?
     
  3. kazuki_unity729

    kazuki_unity729

    Unity Technologies

    Joined:
    Aug 2, 2018
    Posts:
    803
  4. skalasib

    skalasib

    Joined:
    Sep 7, 2022
    Posts:
    1
    How do I compile WebRTC native code into dynamic shared library file that can be used by the WebRTC unity package?

    The end-to-end latency provided by default WebRTC is as high as 150-200 ms even with when network latency is <5 ms. I am making changes to WebRTC native code to reduce latency. I wanted to know what is the correct way to compile webRTC to be used as a plugin in the WebRTC package.

    I see a unityplugin folder in the webrtc codebase, but no instructions on how to compile. Only Android instructions are present, but running ninja -C out/Default webrtc_unity_plugin doesn't work. (ninja: error: unknown target 'webrtc_unity_plugin')
     
  5. kazuki_unity729

    kazuki_unity729

    Unity Technologies

    Joined:
    Aug 2, 2018
    Posts:
    803
  6. a80008a

    a80008a

    Joined:
    Mar 7, 2019
    Posts:
    2
    Hi~
    1. Developing desktop programs using Unity (using Unity WebRTC)
    2. Developing apps with android studio (using google webrtc)
    (Not building Android with Unity)

    Are Unity WebRTC and Google webrtc connected?
    Is there a Unity WebRTC library that I can use in Android studio?
     
  7. kazuki_unity729

    kazuki_unity729

    Unity Technologies

    Joined:
    Aug 2, 2018
    Posts:
    803
    > Are Unity WebRTC and Google webrtc connected?
    Yes.

    > Is there a Unity WebRTC library that I can use in Android studio?
    Could you tell me more detail?
     
  8. mcfadyeni

    mcfadyeni

    Joined:
    Sep 1, 2022
    Posts:
    3
    Hey.

    Just getting started with Unity's WebRTC package and I'm curious about the GC allocation/performance impact.

    I'm planning on using Data Channels pretty heavily to send messages (sending/receiving upwards of 120 small msg per second) and since this plugin seems to provide a fresh `byte[]` buffer on every OnMessage call I wondered how that's allocated/how that would impact perf.
     
  9. kazuki_unity729

    kazuki_unity729

    Unity Technologies

    Joined:
    Aug 2, 2018
    Posts:
    803
    @mcfadyeni
    You are right.
    We haven't implemented the API for optimized method for receiving message from DataChannel.
    We will add the task for the issue. Thank you!
     
    mcfadyeni likes this.
  10. a80008a

    a80008a

    Joined:
    Mar 7, 2019
    Posts:
    2
    Hi~
    I am using webRTC 3.0.0-pre.3.
    The offerToReceiveAudio option cannot be set to false because the RTCOOfferOptions function has been removed.
    Is there any way to change the offerToReceiveAudio option?
     
  11. kazuki_unity729

    kazuki_unity729

    Unity Technologies

    Joined:
    Aug 2, 2018
    Posts:
    803
  12. Zishaan7

    Zishaan7

    Joined:
    Jan 19, 2023
    Posts:
    3
    Hi,
    Can I use WebRTC to make a unity mobile app with video chat and play games with friends, and the app will have multiple small games, to play.

    Waiting for an answer.
    Thanks.
     
  13. kazuki_unity729

    kazuki_unity729

    Unity Technologies

    Joined:
    Aug 2, 2018
    Posts:
    803
    It is technically possible, what kind of issue do you have?
     
  14. Zishaan7

    Zishaan7

    Joined:
    Jan 19, 2023
    Posts:
    3
    I am having an issue with the signaling using websocketsSharp, can't seem to configure it, any suggestions for free web-socket servers that I can use to make a handshake between 2 separate devices? currently using google's STUN server in RTCIceserver.

    p.s: pardons if I made any mistakes there I am still a newbie.
     
  15. kannan-xiao4

    kannan-xiao4

    Unity Technologies

    Joined:
    Nov 5, 2020
    Posts:
    76
    First, please try the sample below.
    If you have any problems with it, please post again.
    https://docs.unity3d.com/Packages/com.unity.renderstreaming@3.1/manual/sample-bidirectional.html
     
  16. NolanChan

    NolanChan

    Joined:
    Apr 10, 2023
    Posts:
    2
    I have some problems about the following code:
    RTCIceServer[] iceServers = settings.iceServers.OfType<RTCIceServer>().ToArray();
    I opened debug and found that setting.iceServers has a value, but when assigned to RTCIceServer[] iceServers, the return array is empty.
    This makes me very confused.
    Did I miss something?
    I am using 3.1.0-exp.6
     
    Last edited: Apr 11, 2023
  17. kazuki_unity729

    kazuki_unity729

    Unity Technologies

    Joined:
    Aug 2, 2018
    Posts:
    803
    I assume that iceServers defines as "IReadOnlyCollection<IceServer>", so you need to get as a "IceServer" collection.
     
  18. NolanChan

    NolanChan

    Joined:
    Apr 10, 2023
    Posts:
    2
    Thanks, but I still have some questions about this.
    I'm trying to run it on the cloud, so I filled in the stun/turn configuration in renderstreaming setting.Verified with Trickle ICE, the stun/turn server is usable. But the RtcpeerConnection failed.
    Then I found out that Unity on the cloud did not connect to the stun/turn server and only sent local same LAN icecandidate.
    Then I encountered the problem mentioned above.
    What else do I need to do?
     
    Last edited: Apr 11, 2023
  19. kazuki_unity729

    kazuki_unity729

    Unity Technologies

    Joined:
    Aug 2, 2018
    Posts:
    803
    You mean that there might be bugs in implementations about ice servers, right?
    We need to check the issue.

    Please tell me which version of Unity Render Streaming.
    And I would like to see the screenshot of the project settings window which you set ICE parameters.
     
    Last edited: Apr 18, 2023
  20. kazuki_unity729

    kazuki_unity729

    Unity Technologies

    Joined:
    Aug 2, 2018
    Posts:
    803
  21. qinfengxiaoxiao

    qinfengxiaoxiao

    Joined:
    May 26, 2021
    Posts:
    3
    I already have the webrtc:// address. How do I add the address to the script and display it in the UI
     
  22. qinfengxiaoxiao

    qinfengxiaoxiao

    Joined:
    May 26, 2021
    Posts:
    3
    How does Android use webrtc to get a video stream from the server and display it to the UI
     
  23. kazuki_unity729

    kazuki_unity729

    Unity Technologies

    Joined:
    Aug 2, 2018
    Posts:
    803
  24. qinfengxiaoxiao

    qinfengxiaoxiao

    Joined:
    May 26, 2021
    Posts:
    3
  25. delete-elf

    delete-elf

    Joined:
    Aug 8, 2022
    Posts:
    2
    hi,I am using 3.1.0-exp.6 at windows platform.
    use d3d11 ,but recive a black screen.
    the byte callback always return 11 byte a frame.
    what is problem?
    I read the documentation that d3d11 is supported.
     
  26. kazuki_unity729

    kazuki_unity729

    Unity Technologies

    Joined:
    Aug 2, 2018
    Posts:
    803
    3.1.0-exp.6 is old.
    Please update the WebRTC package.
     
  27. tamuranaoki

    tamuranaoki

    Joined:
    Apr 18, 2023
    Posts:
    4
    Hello.

    I have been using WebRTC(3.0.0-pre.4) DataChannel by RTCPeerConnection.

    Is it possible to catch errors when executing the Send method?
     
  28. kazuki_unity729

    kazuki_unity729

    Unity Technologies

    Joined:
    Aug 2, 2018
    Posts:
    803
    Hi, what kind of errors?
     
  29. tamuranaoki

    tamuranaoki

    Joined:
    Apr 18, 2023
    Posts:
    4
    Thanks, when a message sent by Send method with DataChannel fails to reach its destination.
     
  30. kazuki_unity729

    kazuki_unity729

    Unity Technologies

    Joined:
    Aug 2, 2018
    Posts:
    803
    I would like to reproduce the issue, so can you share the error logs?
     
  31. tamuranaoki

    tamuranaoki

    Joined:
    Apr 18, 2023
    Posts:
    4
  32. kazuki_unity729

    kazuki_unity729

    Unity Technologies

    Joined:
    Aug 2, 2018
    Posts:
    803
    Ah, make sense.
    We don't support error event from DataChannel, I will fix it as soon as possible.

    Thank you for heads-up the issue.
     
  33. kazuki_unity729

    kazuki_unity729

    Unity Technologies

    Joined:
    Aug 2, 2018
    Posts:
    803
  34. tamuranaoki

    tamuranaoki

    Joined:
    Apr 18, 2023
    Posts:
    4
    Yes, that's right.
    I appreciate your prompt action.
     
  35. KayH

    KayH

    Joined:
    Jan 6, 2017
    Posts:
    110
    What is a good way to debug VideoStreamTrack.OnVideoReceived failing to fire?

    I have a working implementation of a WebRTC connection, it works 99% of the time when connecting Android phone to Unity Editor but not when using a deployed version on Quest 2. I still get the video feed from the Android phone inside the Quest 2 but on the phone the last step fails (rarely this is also happening when streaming from the Editor).

    The RTCPeerConnection fires OnTrack, I call AddTrack on a local MediaStream, which fires OnAddTrack, I confirm it is a VideoStreamTrack and set a delegate for OnVideoReceived. But this delegate is never reached when sending the stream from Quest 2.

    The Android phone is the server and is sending the offer, the Quest 2 is sending the answer. I know the process works because I confirm all the steps and I get working streams into both directions when using the Editor.

    Are there any properties I can read giving me a hint which part is not working, on the Quest 2 client, on the Android host?
     
  36. kazuki_unity729

    kazuki_unity729

    Unity Technologies

    Joined:
    Aug 2, 2018
    Posts:
    803
    Hi, Sorry but I haven't tested video streaming on Meta Quest 2.
    First, I'd like to know the video streaming between Quest 2 and windows work or not. Second, I'd like to check logs on the Quest 2 when the last step fails.
     
  37. KayH

    KayH

    Joined:
    Jan 6, 2017
    Posts:
    110
    I tried streaming between Quest 2 and Unity Editor/Windows, making the Windows side the server. Same situation as on the Android phone (also the server), the last step fails. On Quest 2 all steps complete and the stream from Windows is received. Which would indicate there is a problem on the Quest side, with actually sending the stream, I guess?

    What kind of logs do you need? Logcat? I didn't notice any messages generated by WebRTC, only my own debug messages.

    Last step only fails on the server side, in the tested configurations that is Android phone and Windows Unity Editor. When using the Unity Editor, the stream is captured from Unity generated graphics, a render texture attached to a camera. On the Android phone, the stream is captured from its physical front camera. Both work.

    On Quest 2, the same camera as on Windows is used.

    Edit: For some reason, today I'm getting the debug message inside the delegate, meaning the OnVideoReceived event does fire, both on Windows and on the Android phone. But the texture I'm feeding with the stream stays black, nothing is displayed. Only on the server side, even though the exact same code is used on Windows as on the Quest 2.

    This changes the nature of the problem of course, why would the stream be able to send from the Unity Editor and not the Quest 2? I do show the camera capture locally so I know the rendertexture is fed a video stream, question is, why doesn't it show on the server side?
     
    Last edited: Jul 25, 2023
  38. KayH

    KayH

    Joined:
    Jan 6, 2017
    Posts:
    110
    Okay, since the problem seems to be different from what I first assumed, I now tried to connect two Quest devices. They both failed to send/receive the other one's stream.

    As per the tutorial, I'm getting the supported render texture format like this:
    Code (CSharp):
    1.         var gfxType = SystemInfo.graphicsDeviceType;
    2.         var format = WebRTC.GetSupportedRenderTextureFormat(gfxType);
    3.  
    4.         // Create a track from the RenderTexture
    5.         Debug.Log("Eye camera texture format: " + format);
    6.         targetTexture = new RenderTexture(width, height, 16, format);
    7.         return new VideoStreamTrack(targetTexture, needFlip);
    8.     }
    9.  
    Looking at the output of the debug message, different formats are used on Windows and Quest/Android. On Windows it is BGRA32, on Android it is RGBA32. My Android phone app uses a webcamtexture as its source so it is different in this regard, which would explain why it works but the render texture does not.

    My guess is that RGBA32, though supposedly supported, isn't properly implemented maybe?

    Edit: Likely not the cause. Sending from Quest is working for other users and did for me a few months ago.
     
    Last edited: Jul 27, 2023
  39. KayH

    KayH

    Joined:
    Jan 6, 2017
    Posts:
    110
    Disregard. I wasn't using the easy/correct way to make a stencil supported render texture, set depth to 24 (or 32); that's all that was necessary, and should work with WebRTC.

    Old post:
    Sorry to add another question with the previous issue yet unresolved, but it is also regarding to render texture as source for VideoStreamTrack. I tried to use a render texture with stencil support as a source but that didn't work even in the Unity Editor. Is this a hard limitation or is there a way to use stencil supported formats for VideoStreamTrack?
     
    Last edited: Jul 27, 2023
  40. gtk2k

    gtk2k

    Joined:
    Aug 13, 2014
    Posts:
    285
    In signaling, are you doing SetRemoetDescription() on the remote correctly in the answer?
     
  41. KayH

    KayH

    Joined:
    Jan 6, 2017
    Posts:
    110
    I assume I do, since it works when running the code in the Unity Editor. Here's my code (mostly lifted from one of the contained examples) for SetRemoteDescription:

    Code (CSharp):
    1.     protected RTCSessionDescription GetDescription(string sdp, RTCSdpType type)
    2.     {
    3.         RTCSessionDescription desc = new RTCSessionDescription();
    4.         try
    5.         {
    6.             desc.sdp = sdp;
    7.             desc.type = type;
    8.         }
    9.         catch (Exception e)
    10.         {
    11.             Debug.LogError("Exception in GetDescription: " + e.Message);
    12.         }
    13.         return desc;
    14.     }
    15.     protected IEnumerator OnReceiveOffer(string sdp)
    16.     {
    17.         RTCSessionDescription desc = GetDescription(sdp, RTCSdpType.Offer);
    18.         DebugMessage($"setClientDescription start");
    19.         var op2 = pc.SetRemoteDescription(ref desc);
    20.         yield return op2;
    21.         if (!op2.IsError)
    22.         {
    23.             DebugMessage("SetClientDescription complete");
    24.         }
    25.         else
    26.         {
    27.             var error = op2.Error;
    28.             OnSetSessionDescriptionError(ref error);
    29.             yield break;
    30.         }
    31.  
    32.         AddTrack();
    33.  
    34.         DebugMessage("createAnswer start");
    35.         // Since the 'remote' side has no media stream we need
    36.         // to pass in the right constraints in order for it to
    37.         // accept the incoming offer of audio and video.
    38.  
    39.         var op3 = pc.CreateAnswer();
    40.         yield return op3;
    41.         if (!op3.IsError)
    42.         {
    43.             yield return OnCreateAnswerSuccess(op3.Desc);
    44.         }
    45.         else
    46.         {
    47.             OnCreateSessionDescriptionError(op3.Error);
    48.         }
    49.     }
    50.  
    51.     protected IEnumerator OnReceiveAnswer(string sdp)
    52.     {
    53.  
    54.         DebugMessage(hcPrefix(server) + "setRemoteDescription start");
    55.  
    56.         RTCSessionDescription desc = GetDescription(sdp, RTCSdpType.Answer);
    57.         var op2 = pc.SetRemoteDescription(ref desc);
    58.         yield return op2;
    59.         if (!op2.IsError)
    60.         {
    61.             DebugMessage(hcPrefix(server) + " SetRemoteDescription complete");
    62.         }
    63.         else
    64.         {
    65.             var error = op2.Error;
    66.             OnSetSessionDescriptionError(ref error);
    67.         }
    68.     }
    69.  
     
  42. KayH

    KayH

    Joined:
    Jan 6, 2017
    Posts:
    110
    I'm just checking the logs from the Quest and it is missing an "IceConnectionState: Completed" message which I get in the Unity Editor.

    Code (CSharp):
    1. 2023.07.27 10:10:21.510 4574 4594 Info Unity setClientDescription start
    2. 2023.07.27 10:10:21.510 4574 4594 Info Unity <OnReceiveOffer>d__80:MoveNext()
    3. 2023.07.27 10:10:21.510 4574 4594 Info Unity UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr)
    4. 2023.07.27 10:10:21.510 4574 4594 Info Unity WebRTCPhone:ReceiveString(String)
    5. 2023.07.27 10:10:21.510 4574 4594 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceive(NetPeer, NetPacketReader, DeliveryMethod)
    6. 2023.07.27 10:10:21.510 4574 4594 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    7. 2023.07.27 10:10:21.510 4574 4594 Info Unity LiteNetLib.NetManager:PollEvents()
    8. 2023.07.27 10:10:21.510 4574 4594 Info Unity EyeChat:Update()
    9. 2023.07.27 10:10:21.510 4574 4594 Info Unity
    10. 2023.07.27 10:10:21.518 4574 4594 Info Unity [CLIENT]  OnTrack, add to receive stream.
    11. 2023.07.27 10:10:21.518 4574 4594 Info Unity WebRTCPhone:<SetUpPeerConnection>b__36_1(RTCTrackEvent)
    12. 2023.07.27 10:10:21.518 4574 4594 Info Unity Unity.WebRTC.<>c__DisplayClass55_0:<PCOnTrack>b__0()
    13. 2023.07.27 10:10:21.518 4574 4594 Info Unity Unity.WebRTC.WebRTC:SendOrPostCallback(Object)
    14. 2023.07.27 10:10:21.518 4574 4594 Info Unity Unity.WebRTC.WorkRequest:Invoke()
    15. 2023.07.27 10:10:21.518 4574 4594 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:Execute()
    16. 2023.07.27 10:10:21.518 4574 4594 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:ExecuteAndAppendNextExecute()
    17. 2023.07.27 10:10:21.518 4574 4594 Info Unity UnityEngine.WorkRequest:Invoke()
    18. 2023.07.27 10:10:21.518 4574 4594 Info Unity UnityEngine.UnitySynchronizationContext:Exec()
    19. 2023.07.27 10:10:21.518 4574 4594 Info Unity
    20. 2023.07.27 10:10:21.537 4574 4594 Info Unity Adding candidate: candidate:642383357 1 udp 2122262783 2a01:c22:c83e:f200:ddf5:f0a6:c5c6:9a08 51690 typ host generation 0 ufrag 5WHn network-id 4 network-cost 10
    21. 2023.07.27 10:10:21.537 4574 4594 Info Unity WebRTCPhone:AddCandidate(RTCIceCandidate)
    22. 2023.07.27 10:10:21.537 4574 4594 Info Unity WebRTCPhone:ReceiveString(String)
    23. 2023.07.27 10:10:21.537 4574 4594 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceive(NetPeer, NetPacketReader, DeliveryMethod)
    24. 2023.07.27 10:10:21.537 4574 4594 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    25. 2023.07.27 10:10:21.537 4574 4594 Info Unity LiteNetLib.NetManager:PollEvents()
    26. 2023.07.27 10:10:21.537 4574 4594 Info Unity EyeChat:Update()
    27. 2023.07.27 10:10:21.537 4574 4594 Info Unity
    28. 2023.07.27 10:10:21.539 4574 4594 Info Unity Adding candidate: candidate:397216082 1 udp 2122194687 192.168.1.99 50647 typ host generation 0 ufrag 5WHn network-id 3 network-cost 10
    29. 2023.07.27 10:10:21.539 4574 4594 Info Unity WebRTCPhone:AddCandidate(RTCIceCandidate)
    30. 2023.07.27 10:10:21.539 4574 4594 Info Unity WebRTCPhone:ReceiveString(String)
    31. 2023.07.27 10:10:21.539 4574 4594 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceive(NetPeer, NetPacketReader, DeliveryMethod)
    32. 2023.07.27 10:10:21.539 4574 4594 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    33. 2023.07.27 10:10:21.539 4574 4594 Info Unity LiteNetLib.NetManager:PollEvents()
    34. 2023.07.27 10:10:21.539 4574 4594 Info Unity EyeChat:Update()
    35. 2023.07.27 10:10:21.539 4574 4594 Info Unity
    36. 2023.07.27 10:10:21.540 4574 4594 Info Unity SetClientDescription complete
    37. 2023.07.27 10:10:21.540 4574 4594 Info Unity <OnReceiveOffer>d__80:MoveNext()
    38. 2023.07.27 10:10:21.540 4574 4594 Info Unity UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr)
    39. 2023.07.27 10:10:21.540 4574 4594 Info Unity
    40. 2023.07.27 10:10:21.540 4574 4594 Info Unity Sending string: f40
    41. 2023.07.27 10:10:21.540 4574 4594 Info Unity EyeChat:SendString(String)
    42. 2023.07.27 10:10:21.540 4574 4594 Info Unity RemotePhone:AddTrack()
    43. 2023.07.27 10:10:21.540 4574 4594 Info Unity <OnReceiveOffer>d__80:MoveNext()
    44. 2023.07.27 10:10:21.540 4574 4594 Info Unity UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr)
    45. 2023.07.27 10:10:21.540 4574 4594 Info Unity
    46. 2023.07.27 10:10:21.540 4574 4594 Info Unity [CLIENT] enabled camera
    47. 2023.07.27 10:10:21.540 4574 4594 Info Unity RemotePhone:AddTrack()
    48. 2023.07.27 10:10:21.540 4574 4594 Info Unity <OnReceiveOffer>d__80:MoveNext()
    49. 2023.07.27 10:10:21.540 4574 4594 Info Unity UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr)
    50. 2023.07.27 10:10:21.540 4574 4594 Info Unity
    51. 2023.07.27 10:10:21.541 4574 4594 Info Unity Eye camera texture format: ARGB32
    52. 2023.07.27 10:10:21.541 4574 4594 Info Unity EyeCamera:Init(Int32, Int32, Single, Boolean)
    53. 2023.07.27 10:10:21.541 4574 4594 Info Unity RemotePhone:AddTrack()
    54. 2023.07.27 10:10:21.541 4574 4594 Info Unity <OnReceiveOffer>d__80:MoveNext()
    55. 2023.07.27 10:10:21.541 4574 4594 Info Unity UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr)
    56. 2023.07.27 10:10:21.541 4574 4594 Info Unity
    57. 2023.07.27 10:10:21.545 4574 4594 Info Unity [CLIENT] assigned video stream track at resolution HDReady1280x720
    58. 2023.07.27 10:10:21.545 4574 4594 Info Unity RemotePhone:AddTrack()
    59. 2023.07.27 10:10:21.545 4574 4594 Info Unity <OnReceiveOffer>d__80:MoveNext()
    60. 2023.07.27 10:10:21.545 4574 4594 Info Unity UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr)
    61. 2023.07.27 10:10:21.545 4574 4594 Info Unity
    62. 2023.07.27 10:10:21.546 4574 4594 Info Unity [CLIENT] assigned camera target texture to source image texture.
    63. 2023.07.27 10:10:21.546 4574 4594 Info Unity RemotePhone:AddTrack()
    64. 2023.07.27 10:10:21.546 4574 4594 Info Unity <OnReceiveOffer>d__80:MoveNext()
    65. 2023.07.27 10:10:21.546 4574 4594 Info Unity UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr)
    66. 2023.07.27 10:10:21.546 4574 4594 Info Unity
    67. 2023.07.27 10:10:21.546 4574 4594 Info Unity Set video stream track.
    68. 2023.07.27 10:10:21.546 4574 4594 Info Unity WebRTCPhone:AddTrack()
    69. 2023.07.27 10:10:21.546 4574 4594 Info Unity RemotePhone:AddTrack()
    70. 2023.07.27 10:10:21.546 4574 4594 Info Unity <OnReceiveOffer>d__80:MoveNext()
    71. 2023.07.27 10:10:21.546 4574 4594 Info Unity UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr)
    72. 2023.07.27 10:10:21.546 4574 4594 Info Unity
    73. 2023.07.27 10:10:21.547 4574 4594 Info Unity Added video stream track to peer connection.
    74. 2023.07.27 10:10:21.547 4574 4594 Info Unity WebRTCPhone:AddTrack()
    75. 2023.07.27 10:10:21.547 4574 4594 Info Unity RemotePhone:AddTrack()
    76. 2023.07.27 10:10:21.547 4574 4594 Info Unity <OnReceiveOffer>d__80:MoveNext()
    77. 2023.07.27 10:10:21.547 4574 4594 Info Unity UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr)
    78. 2023.07.27 10:10:21.547 4574 4594 Info Unity
    79. 2023.07.27 10:10:21.551 4574 4594 Info Unity video/VP8 has  channels, clock rate: 90000, sdpFmtpLine: implementation_name=Internal
    80. 2023.07.27 10:10:21.551 4574 4594 Info Unity WebRTCPhone:DumpCapabilities()
    81. 2023.07.27 10:10:21.551 4574 4594 Info Unity WebRTCPhone:AddTrack()
    82. 2023.07.27 10:10:21.551 4574 4594 Info Unity RemotePhone:AddTrack()
    83. 2023.07.27 10:10:21.551 4574 4594 Info Unity <OnReceiveOffer>d__80:MoveNext()
    84. 2023.07.27 10:10:21.551 4574 4594 Info Unity UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr)
    85. 2023.07.27 10:10:21.551 4574 4594 Info Unity
    86. 2023.07.27 10:10:21.552 4574 4594 Info Unity video/rtx has  channels, clock rate: 90000, sdpFmtpLine:
    87. 2023.07.27 10:10:21.552 4574 4594 Info Unity WebRTCPhone:DumpCapabilities()
    88. 2023.07.27 10:10:21.552 4574 4594 Info Unity WebRTCPhone:AddTrack()
    89. 2023.07.27 10:10:21.552 4574 4594 Info Unity RemotePhone:AddTrack()
    90. 2023.07.27 10:10:21.552 4574 4594 Info Unity <OnReceiveOffer>d__80:MoveNext()
    91. 2023.07.27 10:10:21.552 4574 4594 Info Unity UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr)
    92. 2023.07.27 10:10:21.552 4574 4594 Info Unity
    93. 2023.07.27 10:10:21.552 4574 4594 Info Unity video/VP8 has  channels, clock rate: 90000, sdpFmtpLine: implementation_name=MediaCodec
    94. 2023.07.27 10:10:21.552 4574 4594 Info Unity WebRTCPhone:DumpCapabilities()
    95. 2023.07.27 10:10:21.552 4574 4594 Info Unity WebRTCPhone:AddTrack()
    96. 2023.07.27 10:10:21.552 4574 4594 Info Unity RemotePhone:AddTrack()
    97. 2023.07.27 10:10:21.552 4574 4594 Info Unity <OnReceiveOffer>d__80:MoveNext()
    98. 2023.07.27 10:10:21.552 4574 4594 Info Unity UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr)
    99. 2023.07.27 10:10:21.552 4574 4594 Info Unity
    100. 2023.07.27 10:10:21.552 4574 4594 Info Unity video/VP9 has  channels, clock rate: 90000, sdpFmtpLine: implementation_name=Internal;profile-id=0
    101. 2023.07.27 10:10:21.552 4574 4594 Info Unity WebRTCPhone:DumpCapabilities()
    102. 2023.07.27 10:10:21.552 4574 4594 Info Unity WebRTCPhone:AddTrack()
    103. 2023.07.27 10:10:21.552 4574 4594 Info Unity RemotePhone:AddTrack()
    104. 2023.07.27 10:10:21.552 4574 4594 Info Unity <OnReceiveOffer>d__80:MoveNext()
    105. 2023.07.27 10:10:21.552 4574 4594 Info Unity UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr)
    106. 2023.07.27 10:10:21.552 4574 4594 Info Unity
    107. 2023.07.27 10:10:21.552 4574 4594 Info Unity video/H264 has  channels, clock rate: 90000, sdpFmtpLine: implementation_name=MediaCodec;level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=42e01f
    108. 2023.07.27 10:10:21.552 4574 4594 Info Unity WebRTCPhone:DumpCapabilities()
    109. 2023.07.27 10:10:21.552 4574 4594 Info Unity WebRTCPhone:AddTrack()
    110. 2023.07.27 10:10:21.552 4574 4594 Info Unity RemotePhone:AddTrack()
    111. 2023.07.27 10:10:21.552 4574 4594 Info Unity <OnReceiveOffer>d__80:MoveNext()
    112. 2023.07.27 10:10:21.552 4574 4594 Info Unity UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr)
    113. 2023.07.27 10:10:21.552 4574 4594 Info Unity
    114. 2023.07.27 10:10:21.553 4574 4594 Info Unity video/AV1 has  channels, clock rate: 90000, sdpFmtpLine: implementation_name=Internal
    115. 2023.07.27 10:10:21.553 4574 4594 Info Unity WebRTCPhone:DumpCapabilities()
    116. 2023.07.27 10:10:21.553 4574 4594 Info Unity WebRTCPhone:AddTrack()
    117. 2023.07.27 10:10:21.553 4574 4594 Info Unity RemotePhone:AddTrack()
    118. 2023.07.27 10:10:21.553 4574 4594 Info Unity <OnReceiveOffer>d__80:MoveNext()
    119. 2023.07.27 10:10:21.553 4574 4594 Info Unity UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr)
    120. 2023.07.27 10:10:21.553 4574 4594 Info Unity
    121. 2023.07.27 10:10:21.553 4574 4594 Info Unity video/red has  channels, clock rate: 90000, sdpFmtpLine:
    122. 2023.07.27 10:10:21.553 4574 4594 Info Unity WebRTCPhone:DumpCapabilities()
    123. 2023.07.27 10:10:21.553 4574 4594 Info Unity WebRTCPhone:AddTrack()
    124. 2023.07.27 10:10:21.553 4574 4594 Info Unity RemotePhone:AddTrack()
    125. 2023.07.27 10:10:21.553 4574 4594 Info Unity <OnReceiveOffer>d__80:MoveNext()
    126. 2023.07.27 10:10:21.553 4574 4594 Info Unity UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr)
    127. 2023.07.27 10:10:21.553 4574 4594 Info Unity
    128. 2023.07.27 10:10:21.553 4574 4594 Info Unity video/ulpfec has  channels, clock rate: 90000, sdpFmtpLine:
    129. 2023.07.27 10:10:21.553 4574 4594 Info Unity WebRTCPhone:DumpCapabilities()
    130. 2023.07.27 10:10:21.553 4574 4594 Info Unity WebRTCPhone:AddTrack()
    131. 2023.07.27 10:10:21.553 4574 4594 Info Unity RemotePhone:AddTrack()
    132. 2023.07.27 10:10:21.553 4574 4594 Info Unity <OnReceiveOffer>d__80:MoveNext()
    133. 2023.07.27 10:10:21.553 4574 4594 Info Unity UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr)
    134. 2023.07.27 10:10:21.553 4574 4594 Info Unity
    135. 2023.07.27 10:10:21.554 4574 4594 Info Unity Set frame rate to: 24
    136. 2023.07.27 10:10:21.554 4574 4594 Info Unity WebRTCPhone:AddTrack()
    137. 2023.07.27 10:10:21.554 4574 4594 Info Unity RemotePhone:AddTrack()
    138. 2023.07.27 10:10:21.554 4574 4594 Info Unity <OnReceiveOffer>d__80:MoveNext()
    139. 2023.07.27 10:10:21.554 4574 4594 Info Unity UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr)
    140. 2023.07.27 10:10:21.554 4574 4594 Info Unity
    141. 2023.07.27 10:10:21.554 4574 4594 Info Unity Added video stream track to senders list.
    142. 2023.07.27 10:10:21.554 4574 4594 Info Unity WebRTCPhone:AddTrack()
    143. 2023.07.27 10:10:21.554 4574 4594 Info Unity RemotePhone:AddTrack()
    144. 2023.07.27 10:10:21.554 4574 4594 Info Unity <OnReceiveOffer>d__80:MoveNext()
    145. 2023.07.27 10:10:21.554 4574 4594 Info Unity UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr)
    146. 2023.07.27 10:10:21.554 4574 4594 Info Unity
    147. 2023.07.27 10:10:21.554 4574 4594 Info Unity Video update started.
    148. 2023.07.27 10:10:21.554 4574 4594 Info Unity WebRTCPhone:AddTrack()
    149. 2023.07.27 10:10:21.554 4574 4594 Info Unity RemotePhone:AddTrack()
    150. 2023.07.27 10:10:21.554 4574 4594 Info Unity <OnReceiveOffer>d__80:MoveNext()
    151. 2023.07.27 10:10:21.554 4574 4594 Info Unity UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr)
    152. 2023.07.27 10:10:21.554 4574 4594 Info Unity
    153. 2023.07.27 10:10:21.554 4574 4594 Info Unity createAnswer start
    154. 2023.07.27 10:10:21.554 4574 4594 Info Unity <OnReceiveOffer>d__80:MoveNext()
    155. 2023.07.27 10:10:21.554 4574 4594 Info Unity UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr)
    156. 2023.07.27 10:10:21.554 4574 4594 Info Unity
    157. 2023.07.27 10:10:21.557 4574 4594 Info Unity [CLIENT]  receive stream added track.
    158. 2023.07.27 10:10:21.557 4574 4594 Info Unity WebRTCPhone:<SetUpPeerConnection>b__36_2(MediaStreamTrackEvent)
    159. 2023.07.27 10:10:21.557 4574 4594 Info Unity Unity.WebRTC.<>c__DisplayClass20_0:<MediaStreamOnAddTrack>b__0()
    160. 2023.07.27 10:10:21.557 4574 4594 Info Unity Unity.WebRTC.WebRTC:SendOrPostCallback(Object)
    161. 2023.07.27 10:10:21.557 4574 4594 Info Unity Unity.WebRTC.WorkRequest:Invoke()
    162. 2023.07.27 10:10:21.557 4574 4594 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:Execute()
    163. 2023.07.27 10:10:21.557 4574 4594 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:ExecuteAndAppendNextExecute()
    164. 2023.07.27 10:10:21.557 4574 4594 Info Unity UnityEngine.WorkRequest:Invoke()
    165. 2023.07.27 10:10:21.557 4574 4594 Info Unity UnityEngine.UnitySynchronizationContext:Exec()
    166. 2023.07.27 10:10:21.557 4574 4594 Info Unity
    167. 2023.07.27 10:10:21.557 4574 4594 Info Unity [CLIENT]  track is videostreamtrack, setting OnVideoReceived.
    168. 2023.07.27 10:10:21.557 4574 4594 Info Unity WebRTCPhone:<SetUpPeerConnection>b__36_2(MediaStreamTrackEvent)
    169. 2023.07.27 10:10:21.557 4574 4594 Info Unity Unity.WebRTC.<>c__DisplayClass20_0:<MediaStreamOnAddTrack>b__0()
    170. 2023.07.27 10:10:21.557 4574 4594 Info Unity Unity.WebRTC.WebRTC:SendOrPostCallback(Object)
    171. 2023.07.27 10:10:21.557 4574 4594 Info Unity Unity.WebRTC.WorkRequest:Invoke()
    172. 2023.07.27 10:10:21.557 4574 4594 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:Execute()
    173. 2023.07.27 10:10:21.557 4574 4594 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:ExecuteAndAppendNextExecute()
    174. 2023.07.27 10:10:21.557 4574 4594 Info Unity UnityEngine.WorkRequest:Invoke()
    175. 2023.07.27 10:10:21.557 4574 4594 Info Unity UnityEngine.UnitySynchronizationContext:Exec()
    176. 2023.07.27 10:10:21.557 4574 4594 Info Unity
    177. 2023.07.27 10:10:21.575 4574 4594 Info Unity Created Answer
    178. 2023.07.27 10:10:21.575 4574 4594 Info Unity <OnCreateAnswerSuccess>d__82:MoveNext()
    179. 2023.07.27 10:10:21.575 4574 4594 Info Unity UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr)
    180. 2023.07.27 10:10:21.575 4574 4594 Info Unity
    181. 2023.07.27 10:10:21.575 4574 4594 Info Unity setLocalDescription start
    182. 2023.07.27 10:10:21.575 4574 4594 Info Unity <OnCreateAnswerSuccess>d__82:MoveNext()
    183. 2023.07.27 10:10:21.575 4574 4594 Info Unity UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr)
    184. 2023.07.27 10:10:21.575 4574 4594 Info Unity
    185. 2023.07.27 10:10:21.585 4574 4594 Info Unity IceConnectionState: Checking
    186. 2023.07.27 10:10:21.585 4574 4594 Info Unity WebRTCPhone:OnIceConnectionChange(RTCIceConnectionState)
    187. 2023.07.27 10:10:21.585 4574 4594 Info Unity Unity.WebRTC.<>c__DisplayClass50_0:<PCOnIceConnectionChange>b__0()
    188. 2023.07.27 10:10:21.585 4574 4594 Info Unity Unity.WebRTC.WebRTC:SendOrPostCallback(Object)
    189. 2023.07.27 10:10:21.585 4574 4594 Info Unity Unity.WebRTC.WorkRequest:Invoke()
    190. 2023.07.27 10:10:21.585 4574 4594 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:Execute()
    191. 2023.07.27 10:10:21.585 4574 4594 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:ExecuteAndAppendNextExecute()
    192. 2023.07.27 10:10:21.585 4574 4594 Info Unity UnityEngine.WorkRequest:Invoke()
    193. 2023.07.27 10:10:21.585 4574 4594 Info Unity UnityEngine.UnitySynchronizationContext:Exec()
    194. 2023.07.27 10:10:21.585 4574 4594 Info Unity
    195. 2023.07.27 10:10:21.594 4574 4594 Info Unity
    196. 2023.07.27 10:10:21.595 4574 4594 Info Unity SetLocalDescription complete
    197. 2023.07.27 10:10:21.595 4574 4594 Info Unity <OnCreateAnswerSuccess>d__82:MoveNext()
    198. 2023.07.27 10:10:21.595 4574 4594 Info Unity UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr)
    199. 2023.07.27 10:10:21.595 4574 4594 Info Unity
    200. 2023.07.27 10:10:21.595 4574 4594 Info Unity Sending answer...
    201. 2023.07.27 10:10:21.595 4574 4594 Info Unity <OnCreateAnswerSuccess>d__82:MoveNext()
    202. 2023.07.27 10:10:21.595 4574 4594 Info Unity UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr)
    203. 2023.07.27 10:10:21.595 4574 4594 Info Unity
    204. 2023.07.27 10:10:21.596 4574 4594 Info Unity Sending string: av=0
    205. 2023.07.27 10:10:21.596 4574 4594 Info Unity o=- 8933771292915269398 2 IN IP4 127.0.0.1
    206. 2023.07.27 10:10:21.596 4574 4594 Info Unity s=-
    207. 2023.07.27 10:10:21.596 4574 4594 Info Unity t=0 0
    208. 2023.07.27 10:10:21.596 4574 4594 Info Unity a=group:BUNDLE 0
    209. 2023.07.27 10:10:21.596 4574 4594 Info Unity a=extmap-allow-mixed
    210. 2023.07.27 10:10:21.596 4574 4594 Info Unity a=msid-semantic: WMS
    211. 2023.07.27 10:10:21.596 4574 4594 Info Unity m=video 9 UDP/TLS/RTP/SAVPF 127 121 125 120 123 118 39 40 117 116 122
    212. 2023.07.27 10:10:21.596 4574 4594 Info Unity c=IN IP4 0.0.0.0
    213. 2023.07.27 10:10:21.596 4574 4594 Info Unity a=rtcp:9 IN IP4 0.0.0.0
    214. 2023.07.27 10:10:21.596 4574 4594 Info Unity a=ice-ufrag:Jfg2
    215. 2023.07.27 10:10:21.596 4574 4594 Info Unity a=ice-pwd:O4nft4DYBVIQm5JjLzvuAUZO
    216. 2023.07.27 10:10:21.596 4574 4594 Info Unity a=ice-options:trickle
    217. 2023.07.27 10:10:21.596 4574 4594 Info Unity a=fingerprint:sha-256 FE:A6:21:7D:AD:55:9D:40:4D:FA:25:1E:62:0E:E1:30:F1:D4:D2:30:01:BE:09:36:DF:18:03:EE:4E:22:23:B9
    218. 2023.07.27 10:10:21.596 4574 4594 Info Unity a=setup:active
    219. 2023.07.27 10:10:21.596 4574 4594 Info Unity a=mid:0
    220. 2023.07.27 10:10:21.596 4574 4594 Info Unity a=extmap:1 urn:ietf:params:rtp-hdrext:toffset
    221. 2023.07.27 10:10:21.596 4574 4594 Info Unity a=extmap:2 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time
    222. 2023.07.27 10:10:21.596 4574 4594 Info Unity a=extmap:3 urn:3gpp:video-orientation
    223. 2023.07.27 10:10:21.596 4574 4594 Info Unity a=extmap:4 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01
    224. 2023.07.27 10:10:21.596 4574 4594 Info Unity a=extmap:5 http://www.webrtc.org/experiments/rtp-hdrext/playout-delay
    225. 2023.07.27 10:10:21.596 4574 4594 Info Unity a=extmap:6 http://www.webrtc.org/experiments/rtp-hdrext/video-content-type
    226. 2023.07.27 10:10:21.596 4574 4594 Info Unity a=extmap:7 http://www.webrtc.org/experiments/rtp-hdrext/video-timing
    227. 2023.07.27 10:10:21.596 4574 4594 Info Unity a=extmap:8 http://www.webrtc.org/experiments/rtp-hdrext/color-space
    228. 2023.07.27 10:10:21.596 4574 4594 Info Unity a=extmap:9 urn:ietf
    229. 2023.07.27 10:10:21.597 4574 4594 Info Unity ICE candidate:
    230. 2023.07.27 10:10:21.597 4574 4594 Info Unity  candidate:1560451633 1 udp 2122262783 2a01:c22:c83e:f200:6253:837e:c196:99be 34372 typ host generation 0 ufrag Jfg2 network-id 4 network-cost 10
    231. 2023.07.27 10:10:21.597 4574 4594 Info Unity WebRTCPhone:OnIceCandidate(RTCIceCandidate)
    232. 2023.07.27 10:10:21.597 4574 4594 Info Unity Unity.WebRTC.<>c__DisplayClass49_0:<PCOnIceCandidate>b__0()
    233. 2023.07.27 10:10:21.597 4574 4594 Info Unity Unity.WebRTC.WebRTC:SendOrPostCallback(Object)
    234. 2023.07.27 10:10:21.597 4574 4594 Info Unity Unity.WebRTC.WorkRequest:Invoke()
    235. 2023.07.27 10:10:21.597 4574 4594 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:Execute()
    236. 2023.07.27 10:10:21.597 4574 4594 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:ExecuteAndAppendNextExecute()
    237. 2023.07.27 10:10:21.597 4574 4594 Info Unity UnityEngine.WorkRequest:Invoke()
    238. 2023.07.27 10:10:21.597 4574 4594 Info Unity UnityEngine.UnitySynchronizationContext:Exec()
    239. 2023.07.27 10:10:21.597 4574 4594 Info Unity
    240. 2023.07.27 10:10:21.599 4574 4594 Info Unity Sending string: ccandidate:1560451633 1 udp 2122262783 2a01:c22:c83e:f200:6253:837e:c196:99be 34372 typ host generation 0 ufrag Jfg2 network-id 4 network-cost 10
    241. 2023.07.27 10:10:21.599 4574 4594 Info Unity 0
    242. 2023.07.27 10:10:21.599 4574 4594 Info Unity 0
    243. 2023.07.27 10:10:21.599 4574 4594 Info Unity EyeChat:SendString(String)
    244. 2023.07.27 10:10:21.599 4574 4594 Info Unity WebRTCPhone:OnIceCandidate(RTCIceCandidate)
    245. 2023.07.27 10:10:21.599 4574 4594 Info Unity Unity.WebRTC.<>c__DisplayClass49_0:<PCOnIceCandidate>b__0()
    246. 2023.07.27 10:10:21.599 4574 4594 Info Unity Unity.WebRTC.WebRTC:SendOrPostCallback(Object)
    247. 2023.07.27 10:10:21.599 4574 4594 Info Unity Unity.WebRTC.WorkRequest:Invoke()
    248. 2023.07.27 10:10:21.599 4574 4594 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:Execute()
    249. 2023.07.27 10:10:21.599 4574 4594 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:ExecuteAndAppendNextExecute()
    250. 2023.07.27 10:10:21.599 4574 4594 Info Unity UnityEngine.WorkRequest:Invoke()
    251. 2023.07.27 10:10:21.599 4574 4594 Info Unity UnityEngine.UnitySynchronizationContext:Exec()
    252. 2023.07.27 10:10:21.599 4574 4594 Info Unity
    253. 2023.07.27 10:10:21.599 4574 4594 Info Unity ICE candidate:
    254. 2023.07.27 10:10:21.599 4574 4594 Info Unity  candidate:1137560377 1 udp 2122194687 192.168.1.185 51797 typ host generation 0 ufrag Jfg2 network-id 3 network-cost 10
    255. 2023.07.27 10:10:21.599 4574 4594 Info Unity WebRTCPhone:OnIceCandidate(RTCIceCandidate)
    256. 2023.07.27 10:10:21.599 4574 4594 Info Unity Unity.WebRTC.<>c__DisplayClass49_0:<PCOnIceCandidate>b__0()
    257. 2023.07.27 10:10:21.599 4574 4594 Info Unity Unity.WebRTC.WebRTC:SendOrPostCallback(Object)
    258. 2023.07.27 10:10:21.599 4574 4594 Info Unity Unity.WebRTC.WorkRequest:Invoke()
    259. 2023.07.27 10:10:21.599 4574 4594 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:Execute()
    260. 2023.07.27 10:10:21.599 4574 4594 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:ExecuteAndAppendNextExecute()
    261. 2023.07.27 10:10:21.599 4574 4594 Info Unity UnityEngine.WorkRequest:Invoke()
    262. 2023.07.27 10:10:21.599 4574 4594 Info Unity UnityEngine.UnitySynchronizationContext:Exec()
    263. 2023.07.27 10:10:21.599 4574 4594 Info Unity
    264. 2023.07.27 10:10:21.599 4574 4594 Info Unity Sending string: ccandidate:1137560377 1 udp 2122194687 192.168.1.185 51797 typ host generation 0 ufrag Jfg2 network-id 3 network-cost 10
    265. 2023.07.27 10:10:21.599 4574 4594 Info Unity 0
    266. 2023.07.27 10:10:21.599 4574 4594 Info Unity 0
    267. 2023.07.27 10:10:21.599 4574 4594 Info Unity EyeChat:SendString(String)
    268. 2023.07.27 10:10:21.599 4574 4594 Info Unity WebRTCPhone:OnIceCandidate(RTCIceCandidate)
    269. 2023.07.27 10:10:21.599 4574 4594 Info Unity Unity.WebRTC.<>c__DisplayClass49_0:<PCOnIceCandidate>b__0()
    270. 2023.07.27 10:10:21.599 4574 4594 Info Unity Unity.WebRTC.WebRTC:SendOrPostCallback(Object)
    271. 2023.07.27 10:10:21.599 4574 4594 Info Unity Unity.WebRTC.WorkRequest:Invoke()
    272. 2023.07.27 10:10:21.599 4574 4594 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:Execute()
    273. 2023.07.27 10:10:21.599 4574 4594 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:ExecuteAndAppendNextExecute()
    274. 2023.07.27 10:10:21.599 4574 4594 Info Unity UnityEngine.WorkRequest:Invoke()
    275. 2023.07.27 10:10:21.599 4574 4594 Info Unity UnityEngine.UnitySynchronizationContext:Exec()
    276. 2023.07.27 10:10:21.599 4574 4594 Info Unity
    277. 2023.07.27 10:10:21.619 4574 4594 Info Unity String message type: c
    278. 2023.07.27 10:10:21.619 4574 4594 Info Unity WebRTCPhone:ReceiveString(String)
    279. 2023.07.27 10:10:21.619 4574 4594 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceive(NetPeer, NetPacketReader, DeliveryMethod)
    280. 2023.07.27 10:10:21.619 4574 4594 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    281. 2023.07.27 10:10:21.619 4574 4594 Info Unity LiteNetLib.NetManager:PollEvents()
    282. 2023.07.27 10:10:21.619 4574 4594 Info Unity EyeChat:Update()
    283. 2023.07.27 10:10:21.619 4574 4594 Info Unity
    284. 2023.07.27 10:10:21.620 4574 4594 Info Unity Adding candidate: candidate:1490540784 1 tcp 1518283007 2a01:c22:c83e:f200:ddf5:f0a6:c5c6:9a08 51961 typ host tcptype passive generation 0 ufrag 5WHn network-id 4 network-cost 10
    285. 2023.07.27 10:10:21.620 4574 4594 Info Unity WebRTCPhone:AddCandidate(RTCIceCandidate)
    286. 2023.07.27 10:10:21.620 4574 4594 Info Unity WebRTCPhone:ReceiveString(String)
    287. 2023.07.27 10:10:21.620 4574 4594 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceive(NetPeer, NetPacketReader, DeliveryMethod)
    288. 2023.07.27 10:10:21.620 4574 4594 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    289. 2023.07.27 10:10:21.620 4574 4594 Info Unity LiteNetLib.NetManager:PollEvents()
    290. 2023.07.27 10:10:21.620 4574 4594 Info Unity EyeChat:Update()
    291. 2023.07.27 10:10:21.620 4574 4594 Info Unity
    292. 2023.07.27 10:10:21.620 4574 4594 Info Unity Received reliable unordered data from 192.168.1.99:5000, assume string message.
    293. 2023.07.27 10:10:21.620 4574 4594 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceive(NetPeer, NetPacketReader, DeliveryMethod)
    294. 2023.07.27 10:10:21.620 4574 4594 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    295. 2023.07.27 10:10:21.620 4574 4594 Info Unity LiteNetLib.NetManager:PollEvents()
    296. 2023.07.27 10:10:21.620 4574 4594 Info Unity EyeChat:Update()
    297. 2023.07.27 10:10:21.620 4574 4594 Info Unity
    298. 2023.07.27 10:10:21.621 4574 4594 Info Unity String message type: c
    299. 2023.07.27 10:10:21.621 4574 4594 Info Unity WebRTCPhone:ReceiveString(String)
    300. 2023.07.27 10:10:21.621 4574 4594 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceive(NetPeer, NetPacketReader, DeliveryMethod)
    301. 2023.07.27 10:10:21.621 4574 4594 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    302. 2023.07.27 10:10:21.621 4574 4594 Info Unity LiteNetLib.NetManager:PollEvents()
    303. 2023.07.27 10:10:21.621 4574 4594 Info Unity EyeChat:Update()
    304. 2023.07.27 10:10:21.621 4574 4594 Info Unity
    305. 2023.07.27 10:10:21.621 4574 4594 Info Unity Adding candidate: candidate:1764961375 1 tcp 1518214911 192.168.1.99 47812 typ host tcptype passive generation 0 ufrag 5WHn network-id 3 network-cost 10
    306. 2023.07.27 10:10:21.621 4574 4594 Info Unity WebRTCPhone:AddCandidate(RTCIceCandidate)
    307. 2023.07.27 10:10:21.621 4574 4594 Info Unity WebRTCPhone:ReceiveString(String)
    308. 2023.07.27 10:10:21.621 4574 4594 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceive(NetPeer, NetPacketReader, DeliveryMethod)
    309. 2023.07.27 10:10:21.621 4574 4594 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    310. 2023.07.27 10:10:21.621 4574 4594 Info Unity LiteNetLib.NetManager:PollEvents()
    311. 2023.07.27 10:10:21.621 4574 4594 Info Unity EyeChat:Update()
    312. 2023.07.27 10:10:21.621 4574 4594 Info Unity
    313. 2023.07.27 10:10:21.685 4574 4594 Info Unity IceConnectionState: Connected
    314. 2023.07.27 10:10:21.685 4574 4594 Info Unity WebRTCPhone:OnIceConnectionChange(RTCIceConnectionState)
    315. 2023.07.27 10:10:21.685 4574 4594 Info Unity Unity.WebRTC.<>c__DisplayClass50_0:<PCOnIceConnectionChange>b__0()
    316. 2023.07.27 10:10:21.685 4574 4594 Info Unity Unity.WebRTC.WebRTC:SendOrPostCallback(Object)
    317. 2023.07.27 10:10:21.685 4574 4594 Info Unity Unity.WebRTC.WorkRequest:Invoke()
    318. 2023.07.27 10:10:21.685 4574 4594 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:Execute()
    319. 2023.07.27 10:10:21.685 4574 4594 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:ExecuteAndAppendNextExecute()
    320. 2023.07.27 10:10:21.685 4574 4594 Info Unity UnityEngine.WorkRequest:Invoke()
    321. 2023.07.27 10:10:21.685 4574 4594 Info Unity UnityEngine.UnitySynchronizationContext:Exec()
    322. 2023.07.27 10:10:21.685 4574 4594 Info Unity
    323. 2023.07.27 10:10:22.001 4574 4667 Info VrApi FPS=65/72,Prd=38ms,Tear=0,Early=10,Stale=5,Stale2/5/10/max=1/0/0/4,VSnc=0,Lat=-1,Fov=0,CPU4/GPU=4/5,2419/587MHz,OC=FF,TA=0/0/0,SP=N/N/N,Mem=2092MHz,Free=1960MB,PLS=0,Temp=23.7C/0.0C,TW=0.99ms,App=10.02ms,GD=0.00ms,CPU&GPU=24.87ms,LCnt=1(DR72,LM0),GPU%=0.66,CPU%=0.38(W0.48),DSF=1.00,CFL=16.76/18.47,LD=0,SF=1.00
    324. 2023.07.27 10:10:22.056 4574 4594 Info Unity
    325. 2023.07.27 10:10:22.086 4574 4594 Info Unity Receiving video...
    326. 2023.07.27 10:10:22.086 4574 4594 Info Unity WebRTCPhone:<SetUpPeerConnection>b__36_3(Texture)
    327. 2023.07.27 10:10:22.086 4574 4594 Info Unity Unity.WebRTC.<>c__DisplayClass22_0:<OnVideoFrameResize>b__0()
    328. 2023.07.27 10:10:22.086 4574 4594 Info Unity Unity.WebRTC.WebRTC:SendOrPostCallback(Object)
    329. 2023.07.27 10:10:22.086 4574 4594 Info Unity Unity.WebRTC.WorkRequest:Invoke()
    330. 2023.07.27 10:10:22.086 4574 4594 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:Execute()
    331. 2023.07.27 10:10:22.086 4574 4594 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:ExecuteAndAppendNextExecute()
    332. 2023.07.27 10:10:22.086 4574 4594 Info Unity UnityEngine.WorkRequest:Invoke()
    333. 2023.07.27 10:10:22.086 4574 4594 Info Unity UnityEngine.UnitySynchronizationContext:Exec()
    334. 2023.07.27 10:10:22.086 4574 4594 Info Unity
    335.  
    Here's the logcat for the Android phone app (which has the ICEConnection State: Completed):

    Code (CSharp):
    1. 0001.01.01 00:00:00.000 -1 -1 Info  --------- beginning of main
    2. 2023.07.27 10:23:40.179 28777 28777 Error Zygote isWhitelistProcess - Process is Whitelisted
    3. 0001.01.01 00:00:00.000 -1 -1 Info  --------- beginning of system
    4. 2023.07.27 10:23:40.180 28777 28777 Error libpersona scanKnoxPersonas
    5. 2023.07.27 10:23:40.180 28777 28777 Error libpersona Couldn't open the File - /data/system/users/0/personalist.xml - No such file or directory
    6. 2023.07.27 10:23:40.184 28777 28777 Warn SELinux SELinux selinux_android_compute_policy_index : Policy Index[2],  Con:u:r:zygote:s0 RAM:SEPF_SM-G930F_8.0.0_0018, [-1 -1 -1 -1 0 1]
    7. 2023.07.27 10:23:40.185 28777 28777 Info SELinux SELinux: seapp_context_lookup: seinfo=untrusted, level=s0:c512,c768, pkgname=com.VR5.phone
    8. 2023.07.27 10:23:40.215 28777 28777 Debug ActivityThread Added TimaKeyStore provider
    9. 2023.07.27 10:23:40.268 28777 28777 Info zygote64 no shared libraies, dex_files: 1
    10. 2023.07.27 10:23:40.517 28777 28777 Info IL2CPP JNI_OnLoad
    11. 2023.07.27 10:23:40.534 28777 28777 Debug ViewRootImpl@7ac2e27[UnityPlayerActivity] setView = DecorView@389b8d4[UnityPlayerActivity] TM=true MM=false
    12. 2023.07.27 10:23:40.547 28777 28777 Verbose InputMethodManager Not IME target window, ignoring
    13. 2023.07.27 10:23:40.547 28777 28777 Debug ViewRootImpl@7ac2e27[UnityPlayerActivity] dispatchAttachedToWindow
    14. 2023.07.27 10:23:40.559 28777 28777 Verbose Surface sf_framedrop debug : 0x4f4c, game : false, logging : 0
    15. 2023.07.27 10:23:40.559 28777 28777 Debug ViewRootImpl@7ac2e27[UnityPlayerActivity] Relayout returned: old=[0,0][0,0] new=[0,0][1080,1920] result=0x7 surface={valid=true 543066869760} changed=true
    16. 2023.07.27 10:23:40.561 28777 28777 Debug SurfaceView BG show() Surface(name=Background for - SurfaceView - com.VR5.phone/com.unity3d.player.UnityPlayerActivity@aa385c3@0) android.view.SurfaceView{aa385c3 VFE...... .F....ID 0,0-1080,1920 #7f010000 app:id/unitySurfaceView}
    17. 2023.07.27 10:23:40.565 28777 28777 Verbose Surface sf_framedrop debug : 0x4f4c, game : false, logging : 0
    18. 2023.07.27 10:23:40.565 28777 28777 Debug SurfaceView surfaceCreated 1 android.view.SurfaceView{aa385c3 VFE...... .F....ID 0,0-1080,1920 #7f010000 app:id/unitySurfaceView}
    19. 2023.07.27 10:23:40.565 28777 28777 Debug SurfaceView surfaceChanged (1080,1920) 1 android.view.SurfaceView{aa385c3 VFE...... .F....ID 0,0-1080,1920 #7f010000 app:id/unitySurfaceView}
    20. 2023.07.27 10:23:40.566 28777 28777 Debug ViewRootImpl@7ac2e27[UnityPlayerActivity] MSG_RESIZED_REPORT: frame=Rect(0, 0 - 1080, 1920) ci=Rect(0, 0 - 0, 0) vi=Rect(0, 0 - 0, 0) or=1
    21. 2023.07.27 10:23:40.566 28777 28777 Debug ViewRootImpl@7ac2e27[UnityPlayerActivity] MSG_WINDOW_FOCUS_CHANGED 1
    22. 2023.07.27 10:23:40.567 28777 28777 Verbose InputMethodManager Starting input: tba=android.view.inputmethod.EditorInfo@2338e40 nm : com.VR5.phone ic=null
    23. 2023.07.27 10:23:40.567 28777 28777 Info InputMethodManager startInputInner - mService.startInputOrWindowGainedFocus
    24. 2023.07.27 10:23:40.569 28777 28777 Verbose InputMethodManager Starting input: tba=android.view.inputmethod.EditorInfo@acb4179 nm : com.VR5.phone ic=null
    25. 2023.07.27 10:23:40.576 28777 28793 Info Unity MemoryManager: Using 'Dynamic Heap' Allocator.
    26. 2023.07.27 10:23:40.591 28777 28777 Verbose Surface sf_framedrop debug : 0x4f4c, game : false, logging : 0
    27. 2023.07.27 10:23:40.591 28777 28777 Debug ViewRootImpl@7ac2e27[UnityPlayerActivity] Relayout returned: old=[0,0][1080,1920] new=[0,0][1080,1920] result=0x7 surface={valid=true 543067123712} changed=true
    28. 2023.07.27 10:23:40.592 28777 28793 Info Unity SystemInfo CPU = ARM64 FP ASIMD AES, Cores = 8, Memory = 3537mb
    29. 2023.07.27 10:23:40.592 28777 28793 Info Unity SystemInfo ARM big.LITTLE configuration: 4 big (mask: 0xf0), 4 little (mask: 0xf)
    30. 2023.07.27 10:23:40.592 28777 28793 Info Unity ApplicationInfo com.VR5.phone version 0.1
    31. 2023.07.27 10:23:40.592 28777 28793 Info Unity Built from '2021.3/staging' branch, Version '2021.3.26f1 (a16dc32e0ff2)', Build type 'Release', Scripting Backend 'il2cpp', CPU 'arm64-v8a', Stripping 'Enabled'
    32. 2023.07.27 10:23:40.618 28777 28777 Debug ViewRootImpl@7ac2e27[UnityPlayerActivity] Relayout returned: old=[0,0][1080,1920] new=[0,0][1080,1920] result=0x1 surface={valid=true 543067123712} changed=false
    33. 2023.07.27 10:23:40.809 28777 28793 Info Unity Company Name: VR5
    34. 2023.07.27 10:23:40.809 28777 28793 Info Unity Product Name: phone
    35. 2023.07.27 10:23:40.811 28777 28793 Error vulkan invalid vkGetInstanceProcAddr(VK_NULL_HANDLE, "vkGetInstanceProcAddr") call
    36. 2023.07.27 10:23:40.811 28777 28793 Error vulkan invalid vkGetInstanceProcAddr(VK_NULL_HANDLE, "vkEnumerateInstanceVersion") call
    37. 2023.07.27 10:23:40.811 28777 28793 Error vulkan invalid vkGetInstanceProcAddr(VK_NULL_HANDLE, "vkEnumerateInstanceVersion") call
    38. 2023.07.27 10:23:40.812 28777 28793 Info vndksupport sphal namespace is not configured for this process. Loading /vendor/lib64/hw/vulkan.exynos5.so from the current namespace instead.
    39. 2023.07.27 10:23:40.812 28777 28793 Debug vulkan searching for layers in '/data/app/com.VR5.phone-IKPEZntlHrkvpZGsmTbUqg==/lib/arm64'
    40. 2023.07.27 10:23:40.812 28777 28793 Debug vulkan searching for layers in '/data/app/com.VR5.phone-IKPEZntlHrkvpZGsmTbUqg==/base.apk!/lib/arm64-v8a'
    41. 2023.07.27 10:23:40.813 28777 28793 Debug vulkan vulkan api version_1_0 1.0.0
    42. 2023.07.27 10:23:40.813 28777 28793 Debug vulkan vulkan header version 46
    43. 2023.07.27 10:23:40.866 28777 28793 Debug mali_winsys EGLint new_window_surface(egl_winsys_display *, void *, EGLSurface, EGLConfig, egl_winsys_surface **, egl_color_buffer_format *, EGLBoolean) returns 0x3000,  [1080x1920]-format:1
    44. 2023.07.27 10:23:40.872 28777 28793 Debug Unity  GL_EXT_debug_marker GL_ARM_rgba8 GL_ARM_mali_shader_binary GL_OES_depth24 GL_OES_depth_texture GL_OES_depth_texture_cube_map GL_OES_packed_depth_stencil GL_OES_rgb8_rgba8 GL_EXT_read_format_bgra GL_OES_compressed_paletted_texture GL_OES_compressed_ETC1_RGB8_texture GL_OES_standard_derivatives GL_OES_EGL_image GL_OES_EGL_image_external GL_OES_EGL_image_external_essl3 GL_OES_EGL_sync GL_OES_texture_npot GL_OES_vertex_half_float GL_OES_required_internalformat GL_OES_vertex_array_object GL_OES_mapbuffer GL_EXT_texture_format_BGRA8888 GL_EXT_texture_rg GL_EXT_texture_type_2_10_10_10_REV GL_OES_fbo_render_mipmap GL_OES_element_index_uint GL_EXT_shadow_samplers GL_OES_texture_compression_astc GL_KHR_texture_compression_astc_ldr GL_KHR_texture_compression_astc_hdr GL_KHR_texture_compression_astc_sliced_3d GL_KHR_debug GL_EXT_occlusion_query_boolean GL_EXT_disjoint_timer_query GL_EXT_blend_minmax GL_EXT_discard_framebuffer GL_OES_get_program_binary GL_OES_texture_3D GL_EXT_texture_storage GL_EXT_multisampled_render_
    45. 2023.07.27 10:23:40.872 28777 28793 Debug Unity to_texture GL_OES_surfaceless_context GL_OES_texture_stencil8 GL_EXT_shader_pixel_local_storage GL_ARM_shader_framebuffer_fetch GL_ARM_shader_framebuffer_fetch_depth_stencil GL_ARM_mali_program_binary GL_EXT_sRGB GL_EXT_sRGB_write_control GL_EXT_texture_sRGB_decode GL_EXT_texture_sRGB_R8 GL_EXT_texture_sRGB_RG8 GL_KHR_blend_equation_advanced GL_KHR_blend_equation_advanced_coherent GL_OES_texture_storage_multisample_2d_array GL_OES_shader_image_atomic GL_EXT_robustness GL_EXT_draw_buffers_indexed GL_OES_draw_buffers_indexed GL_EXT_texture_border_clamp GL_OES_texture_border_clamp GL_EXT_texture_cube_map_array GL_OES_texture_cube_map_array GL_OES_sample_variables GL_OES_sample_shading GL_OES_shader_multisample_interpolation GL_EXT_shader_io_blocks GL_OES_shader_io_blocks GL_EXT_tessellation_shader GL_OES_tessellation_shader GL_EXT_primitive_bounding_box GL_OES_primitive_bounding_box GL_EXT_geometry_shader GL_OES_geometry_shader GL_ANDROID_extension_pack_es31a GL_EXT_gpu_shader5 GL_OES_gpu_shader5 GL_EXT_texture
    46. 2023.07.27 10:23:40.872 28777 28793 Debug Unity _buffer GL_OES_texture_buffer GL_EXT_copy_image GL_OES_copy_image GL_EXT_shader_non_constant_global_initializers GL_EXT_color_buffer_half_float GL_EXT_color_buffer_float GL_EXT_YUV_target GL_OVR_multiview GL_OVR_multiview2 GL_OVR_multiview_multisampled_render_to_texture GL_KHR_robustness GL_KHR_robust_buffer_access_behavior GL_EXT_draw_elements_base_vertex GL_OES_draw_elements_base_vertex GL_EXT_protected_textures GL_EXT_buffer_storage
    47. 2023.07.27 10:23:40.883 28777 28838 Debug libGLESv2 STS_GLApi : DTS, ODTC are not allowed for Package : com.VR5.phone
    48. 2023.07.27 10:23:40.898 28777 28842 Debug AudioTrack Client defaulted notificationFrames to 1365 for frameCount 4096
    49. 2023.07.27 10:23:40.900 28777 28842 Warn AudioTrack Use of stream types is deprecated for operations other than volume control
    50. 2023.07.27 10:23:40.900 28777 28842 Warn AudioTrack See the documentation of AudioTrack() for what to use instead with android.media.AudioAttributes to qualify your playback use case
    51. 2023.07.27 10:23:40.900 28777 28842 Info AudioTrack updateAudioTranstionLength FadeIn[0] FadeOut[0] FadeInRing[0]
    52. 2023.07.27 10:23:41.015 28777 28793 Info IL2CPP Locale en-US
    53. 2023.07.27 10:23:41.070 28777 28793 Warn org.webrtc.Logging HardwareVideoEncoderFactory: No shared EglBase.Context.  Encoders will not use texture mode.
    54. 2023.07.27 10:23:41.072 28777 28793 Warn AudioCapabilities Unsupported mime audio/mpeg-L1
    55. 2023.07.27 10:23:41.072 28777 28793 Warn AudioCapabilities Unsupported mime audio/mpeg-L2
    56. 2023.07.27 10:23:41.073 28777 28793 Warn AudioCapabilities Unsupported mime audio/x-ms-wma
    57. 2023.07.27 10:23:41.073 28777 28793 Warn AudioCapabilities Unsupported mime audio/x-ima
    58. 2023.07.27 10:23:41.075 28777 28793 Warn VideoCapabilities Unrecognized profile 2130706433 for video/avc
    59. 2023.07.27 10:23:41.075 28777 28793 Warn VideoCapabilities Unrecognized profile 2130706434 for video/avc
    60. 2023.07.27 10:23:41.076 28777 28793 Warn VideoCapabilities Unrecognized profile 2130706433 for video/avc
    61. 2023.07.27 10:23:41.076 28777 28793 Warn VideoCapabilities Unrecognized profile 2130706434 for video/avc
    62. 2023.07.27 10:23:41.080 28777 28793 Warn VideoCapabilities Unsupported mime video/wvc1
    63. 2023.07.27 10:23:41.081 28777 28793 Warn VideoCapabilities Unsupported mime video/x-ms-wmv
    64. 2023.07.27 10:23:41.082 28777 28793 Warn VideoCapabilities Unrecognized profile 2130706433 for video/avc
    65. 2023.07.27 10:23:41.082 28777 28793 Warn VideoCapabilities Unrecognized profile 2130706434 for video/avc
    66. 2023.07.27 10:23:41.094 28777 28793 Info VideoCapabilities Unsupported profile 4 for video/mp4v-es
    67. 2023.07.27 10:23:41.103 28777 28793 Warn VideoCapabilities Unrecognized profile/level 1/32 for video/mp4v-es
    68. 2023.07.27 10:23:41.103 28777 28793 Warn VideoCapabilities Unrecognized profile/level 32768/2 for video/mp4v-es
    69. 2023.07.27 10:23:41.103 28777 28793 Warn VideoCapabilities Unrecognized profile/level 32768/64 for video/mp4v-es
    70. 2023.07.27 10:23:41.104 28777 28793 Warn VideoCapabilities Unsupported mime video/wvc1
    71. 2023.07.27 10:23:41.105 28777 28793 Warn VideoCapabilities Unsupported mime video/x-ms-wmv
    72. 2023.07.27 10:23:41.105 28777 28793 Warn VideoCapabilities Unsupported mime video/x-ms-wmv7
    73. 2023.07.27 10:23:41.106 28777 28793 Warn VideoCapabilities Unsupported mime video/x-ms-wmv8
    74. 2023.07.27 10:23:41.107 28777 28793 Warn VideoCapabilities Unsupported mime video/mp43
    75. 2023.07.27 10:23:41.110 28777 28793 Warn VideoCapabilities Unsupported mime video/sorenson
    76. 2023.07.27 10:23:41.112 28777 28793 Warn VideoCapabilities Unrecognized profile 2130706433 for video/avc
    77. 2023.07.27 10:23:41.112 28777 28793 Warn VideoCapabilities Unrecognized profile 2130706434 for video/avc
    78. 2023.07.27 10:23:41.114 28777 28793 Warn VideoCapabilities Unrecognized profile 2130706433 for video/avc
    79. 2023.07.27 10:23:41.114 28777 28793 Warn VideoCapabilities Unrecognized profile 2130706434 for video/avc
    80. 2023.07.27 10:23:41.145 28777 28793 Debug mali_winsys EGLint new_window_surface(egl_winsys_display *, void *, EGLSurface, EGLConfig, egl_winsys_surface **, egl_color_buffer_format *, EGLBoolean) returns 0x3000,  [1080x1920]-format:1
    81. 2023.07.27 10:23:41.148 28777 28793 Verbose MediaRouter Adding route: RouteInfo{ name=Phone, description=null, status=null, category=RouteCategory{ name=System types=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO  groupable=false }, supportedTypes=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO , presentationDisplay=null }
    82. 2023.07.27 10:23:41.151 28777 28793 Verbose MediaRouter Selecting route: RouteInfo{ name=Phone, description=null, status=null, category=RouteCategory{ name=System types=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO  groupable=false }, supportedTypes=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO , presentationDisplay=null }
    83. 2023.07.27 10:23:43.358 28777 28777 Debug ViewRootImpl@7ac2e27[UnityPlayerActivity] Relayout returned: old=[0,0][1080,1920] new=[0,0][1080,1920] result=0x1 surface={valid=true 543067123712} changed=false
    84. 2023.07.27 10:23:43.416 28777 28793 Info CameraManagerGlobal Connecting to camera service
    85. 2023.07.27 10:23:43.418 28777 28793 Debug VendorTagDescriptor addVendorDescriptor: vendor tag id 3854507339 added
    86. 2023.07.27 10:23:43.419 28777 28793 Info CameraManager getCameraCharacteristics : cameraId = 0
    87. 2023.07.27 10:23:43.426 28777 28793 Info chatty uid=10185(u0_a185) UnityMain identical 3 lines
    88. 2023.07.27 10:23:43.428 28777 28793 Info CameraManager getCameraCharacteristics : cameraId = 0
    89. 2023.07.27 10:23:43.433 28777 28793 Info CameraManager getCameraCharacteristics : cameraId = 1
    90. 2023.07.27 10:23:43.436 28777 28793 Info chatty uid=10185(u0_a185) UnityMain identical 3 lines
    91. 2023.07.27 10:23:43.437 28777 28793 Info CameraManager getCameraCharacteristics : cameraId = 1
    92. 2023.07.27 10:23:43.446 28777 28777 Debug ViewRootImpl@7ac2e27[UnityPlayerActivity] Relayout returned: old=[0,0][1080,1920] new=[0,0][1080,1920] result=0x1 surface={valid=true 543067123712} changed=false
    93. 2023.07.27 10:23:43.451 28777 28793 Info Unity Found camera Camera 1.
    94. 2023.07.27 10:23:43.451 28777 28793 Info Unity LocalPhone:Start()
    95. 2023.07.27 10:23:43.451 28777 28793 Info Unity
    96. 2023.07.27 10:23:43.459 28777 28793 Info Unity Set web cam texture (16/16).
    97. 2023.07.27 10:23:43.459 28777 28793 Info Unity LocalPhone:Start()
    98. 2023.07.27 10:23:43.459 28777 28793 Info Unity
    99. 2023.07.27 10:23:43.461 28777 28793 Info Unity Set web cam texture width (16/16).
    100. 2023.07.27 10:23:43.461 28777 28793 Info Unity LocalPhone:Start()
    101. 2023.07.27 10:23:43.461 28777 28793 Info Unity
    102. 2023.07.27 10:23:43.462 28777 28793 Info Unity Set web cam texture FPS: 12
    103. 2023.07.27 10:23:43.462 28777 28793 Info Unity LocalPhone:Start()
    104. 2023.07.27 10:23:43.462 28777 28793 Info Unity
    105. 2023.07.27 10:23:43.464 28777 28793 Info Unity Assigned web cam texture to sourceImage.
    106. 2023.07.27 10:23:43.464 28777 28793 Info Unity LocalPhone:Start()
    107. 2023.07.27 10:23:43.464 28777 28793 Info Unity
    108. 2023.07.27 10:23:43.484 28777 28793 Info Unity On connection callback was set.
    109. 2023.07.27 10:23:43.484 28777 28793 Info Unity EyeChat:Connect(Action)
    110. 2023.07.27 10:23:43.484 28777 28793 Info Unity WebRTCPhone:Connect()
    111. 2023.07.27 10:23:43.484 28777 28793 Info Unity LocalPhone:Start()
    112. 2023.07.27 10:23:43.484 28777 28793 Info Unity
    113. 2023.07.27 10:23:43.485 28777 28793 Info Unity Update time set: 800.
    114. 2023.07.27 10:23:43.485 28777 28793 Info Unity EyeChat:UpdateTime()
    115. 2023.07.27 10:23:43.485 28777 28793 Info Unity EyeChat:Connect(Action)
    116. 2023.07.27 10:23:43.485 28777 28793 Info Unity WebRTCPhone:Connect()
    117. 2023.07.27 10:23:43.485 28777 28793 Info Unity LocalPhone:Start()
    118. 2023.07.27 10:23:43.485 28777 28793 Info Unity
    119. 2023.07.27 10:23:43.495 28777 28793 Info Unity We're host, started netManager.
    120. 2023.07.27 10:23:43.495 28777 28793 Info Unity EyeChat:Connect(Action)
    121. 2023.07.27 10:23:43.495 28777 28793 Info Unity WebRTCPhone:Connect()
    122. 2023.07.27 10:23:43.495 28777 28793 Info Unity LocalPhone:Start()
    123. 2023.07.27 10:23:43.495 28777 28793 Info Unity
    124. 2023.07.27 10:23:43.518 28777 28793 Debug SensorManager registerListener :: 15, Samsung Rotation Vector, 20000, 0,
    125. 2023.07.27 10:23:43.784 28777 28793 Info Unity [SERVER] Received discovery request. Send discovery response
    126. 2023.07.27 10:23:43.784 28777 28793 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceiveUnconnected(IPEndPoint, NetPacketReader, UnconnectedMessageType)
    127. 2023.07.27 10:23:43.784 28777 28793 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    128. 2023.07.27 10:23:43.784 28777 28793 Info Unity LiteNetLib.NetManager:PollEvents()
    129. 2023.07.27 10:23:43.784 28777 28793 Info Unity EyeChat:Update()
    130. 2023.07.27 10:23:43.784 28777 28793 Info Unity
    131. 2023.07.27 10:23:43.787 28777 28793 Info chatty uid=10185(u0_a185) UnityMain identical 1 line
    132. 2023.07.27 10:23:43.884 28777 28793 Info Unity [SERVER] Received discovery request. Send discovery response
    133. 2023.07.27 10:23:43.884 28777 28793 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceiveUnconnected(IPEndPoint, NetPacketReader, UnconnectedMessageType)
    134. 2023.07.27 10:23:43.884 28777 28793 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    135. 2023.07.27 10:23:43.884 28777 28793 Info Unity LiteNetLib.NetManager:PollEvents()
    136. 2023.07.27 10:23:43.884 28777 28793 Info Unity EyeChat:Update()
    137. 2023.07.27 10:23:43.884 28777 28793 Info Unity
    138. 2023.07.27 10:23:43.887 28777 28793 Info Unity Connection request, we're host.
    139. 2023.07.27 10:23:43.887 28777 28793 Info Unity EyeChat:LiteNetLib.INetEventListener.OnConnectionRequest(ConnectionRequest)
    140. 2023.07.27 10:23:43.887 28777 28793 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    141. 2023.07.27 10:23:43.887 28777 28793 Info Unity LiteNetLib.NetManager:PollEvents()
    142. 2023.07.27 10:23:43.887 28777 28793 Info Unity EyeChat:Update()
    143. 2023.07.27 10:23:43.887 28777 28793 Info Unity
    144. 2023.07.27 10:23:43.890 28777 28793 Info Unity Connection request, keys are matching.
    145. 2023.07.27 10:23:43.890 28777 28793 Info Unity EyeChat:LiteNetLib.INetEventListener.OnConnectionRequest(ConnectionRequest)
    146. 2023.07.27 10:23:43.890 28777 28793 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    147. 2023.07.27 10:23:43.890 28777 28793 Info Unity LiteNetLib.NetManager:PollEvents()
    148. 2023.07.27 10:23:43.890 28777 28793 Info Unity EyeChat:Update()
    149. 2023.07.27 10:23:43.890 28777 28793 Info Unity
    150. 2023.07.27 10:23:43.902 28777 28793 Info Unity Connection request, accepted.
    151. 2023.07.27 10:23:43.902 28777 28793 Info Unity EyeChat:LiteNetLib.INetEventListener.OnConnectionRequest(ConnectionRequest)
    152. 2023.07.27 10:23:43.902 28777 28793 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    153. 2023.07.27 10:23:43.902 28777 28793 Info Unity LiteNetLib.NetManager:PollEvents()
    154. 2023.07.27 10:23:43.902 28777 28793 Info Unity EyeChat:Update()
    155. 2023.07.27 10:23:43.902 28777 28793 Info Unity
    156. 2023.07.27 10:23:43.904 28777 28793 Info Unity Peer connected. Set as our peer.
    157. 2023.07.27 10:23:43.904 28777 28793 Info Unity EyeChat:LiteNetLib.INetEventListener.OnConnectionRequest(ConnectionRequest)
    158. 2023.07.27 10:23:43.904 28777 28793 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    159. 2023.07.27 10:23:43.904 28777 28793 Info Unity LiteNetLib.NetManager:PollEvents()
    160. 2023.07.27 10:23:43.904 28777 28793 Info Unity EyeChat:Update()
    161. 2023.07.27 10:23:43.904 28777 28793 Info Unity
    162. 2023.07.27 10:23:43.906 28777 28793 Info Unity Update time set: 15.
    163. 2023.07.27 10:23:43.906 28777 28793 Info Unity EyeChat:UpdateTime()
    164. 2023.07.27 10:23:43.906 28777 28793 Info Unity EyeChat:LiteNetLib.INetEventListener.OnConnectionRequest(ConnectionRequest)
    165. 2023.07.27 10:23:43.906 28777 28793 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    166. 2023.07.27 10:23:43.906 28777 28793 Info Unity LiteNetLib.NetManager:PollEvents()
    167. 2023.07.27 10:23:43.906 28777 28793 Info Unity EyeChat:Update()
    168. 2023.07.27 10:23:43.906 28777 28793 Info Unity
    169. 2023.07.27 10:23:43.911 28777 28793 Info Unity [HOST]  Starting OnConnect.
    170. 2023.07.27 10:23:43.911 28777 28793 Info Unity LocalPhone:OnConnect()
    171. 2023.07.27 10:23:43.911 28777 28793 Info Unity EyeChat:LiteNetLib.INetEventListener.OnConnectionRequest(ConnectionRequest)
    172. 2023.07.27 10:23:43.911 28777 28793 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    173. 2023.07.27 10:23:43.911 28777 28793 Info Unity LiteNetLib.NetManager:PollEvents()
    174. 2023.07.27 10:23:43.911 28777 28793 Info Unity EyeChat:Update()
    175. 2023.07.27 10:23:43.911 28777 28793 Info Unity
    176. 2023.07.27 10:23:43.926 28777 28793 Info CameraManager getCameraCharacteristics : cameraId = 1
    177. 2023.07.27 10:23:43.929 28777 28793 Info CameraManager getCameraCharacteristics : cameraId = 1
    178. 2023.07.27 10:23:44.037 28777 28793 Info CameraManager getCameraCharacteristics : cameraId = 1
    179. 2023.07.27 10:23:44.052 28777 28793 Verbose Surface sf_framedrop debug : 0x4f4c, game : false, logging : 0
    180. 2023.07.27 10:23:44.052 28777 28793 Verbose Surface sf_framedrop debug : 0x4f4c, game : false, logging : 0
    181. 2023.07.27 10:23:44.094 28777 28793 Info Unity Started playing web cam texture.
    182. 2023.07.27 10:23:44.094 28777 28793 Info Unity LocalPhone:OnConnect()
    183. 2023.07.27 10:23:44.094 28777 28793 Info Unity EyeChat:LiteNetLib.INetEventListener.OnConnectionRequest(ConnectionRequest)
    184. 2023.07.27 10:23:44.094 28777 28793 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    185. 2023.07.27 10:23:44.094 28777 28793 Info Unity LiteNetLib.NetManager:PollEvents()
    186. 2023.07.27 10:23:44.094 28777 28793 Info Unity EyeChat:Update()
    187. 2023.07.27 10:23:44.094 28777 28793 Info Unity
    188. 2023.07.27 10:23:44.096 28777 28793 Info Unity [HOST] We connected to 192.168.1.185:50642
    189. 2023.07.27 10:23:44.096 28777 28793 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    190. 2023.07.27 10:23:44.096 28777 28793 Info Unity LiteNetLib.NetManager:PollEvents()
    191. 2023.07.27 10:23:44.096 28777 28793 Info Unity EyeChat:Update()
    192. 2023.07.27 10:23:44.096 28777 28793 Info Unity
    193. 2023.07.27 10:23:44.112 28777 28793 Info Unity Peer 192.168.1.185:50642 connected. We're host, do nothing.
    194. 2023.07.27 10:23:44.112 28777 28793 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    195. 2023.07.27 10:23:44.112 28777 28793 Info Unity LiteNetLib.NetManager:PollEvents()
    196. 2023.07.27 10:23:44.112 28777 28793 Info Unity EyeChat:Update()
    197. 2023.07.27 10:23:44.112 28777 28793 Info Unity
    198. 2023.07.27 10:23:44.113 28777 28793 Info Unity Received reliable unordered data from 192.168.1.185:50642, assume string message.
    199. 2023.07.27 10:23:44.113 28777 28793 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceive(NetPeer, NetPacketReader, DeliveryMethod)
    200. 2023.07.27 10:23:44.113 28777 28793 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    201. 2023.07.27 10:23:44.113 28777 28793 Info Unity LiteNetLib.NetManager:PollEvents()
    202. 2023.07.27 10:23:44.113 28777 28793 Info Unity EyeChat:Update()
    203. 2023.07.27 10:23:44.113 28777 28793 Info Unity
    204. 2023.07.27 10:23:44.128 28777 28853 Warn VideoCapabilities Unrecognized profile 2130706433 for video/avc
    205. 2023.07.27 10:23:44.128 28777 28853 Warn VideoCapabilities Unrecognized profile 2130706434 for video/avc
    206. 2023.07.27 10:23:44.141 28777 28793 Info Unity [HOST]  Peer connection constructed.
    207. 2023.07.27 10:23:44.141 28777 28793 Info Unity WebRTCPhone:SetUpPeerConnection()
    208. 2023.07.27 10:23:44.141 28777 28793 Info Unity LocalPhone:UseWebRTC()
    209. 2023.07.27 10:23:44.141 28777 28793 Info Unity LocalPhone:ReceiveString(String)
    210. 2023.07.27 10:23:44.141 28777 28793 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceive(NetPeer, NetPacketReader, DeliveryMethod)
    211. 2023.07.27 10:23:44.141 28777 28793 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    212. 2023.07.27 10:23:44.141 28777 28793 Info Unity LiteNetLib.NetManager:PollEvents()
    213. 2023.07.27 10:23:44.141 28777 28793 Info Unity EyeChat:Update()
    214. 2023.07.27 10:23:44.141 28777 28793 Info Unity
    215. 2023.07.27 10:23:44.142 28777 28793 Info Unity [HOST]  all handlers for peer connection assigned.
    216. 2023.07.27 10:23:44.142 28777 28793 Info Unity WebRTCPhone:SetUpPeerConnection()
    217. 2023.07.27 10:23:44.142 28777 28793 Info Unity LocalPhone:UseWebRTC()
    218. 2023.07.27 10:23:44.142 28777 28793 Info Unity LocalPhone:ReceiveString(String)
    219. 2023.07.27 10:23:44.142 28777 28793 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceive(NetPeer, NetPacketReader, DeliveryMethod)
    220. 2023.07.27 10:23:44.142 28777 28793 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    221. 2023.07.27 10:23:44.142 28777 28793 Info Unity LiteNetLib.NetManager:PollEvents()
    222. 2023.07.27 10:23:44.142 28777 28793 Info Unity EyeChat:Update()
    223. 2023.07.27 10:23:44.142 28777 28793 Info Unity
    224. 2023.07.27 10:23:44.144 28777 28793 Info Unity [HOST]  receive stream handler assigned.
    225. 2023.07.27 10:23:44.144 28777 28793 Info Unity WebRTCPhone:SetUpPeerConnection()
    226. 2023.07.27 10:23:44.144 28777 28793 Info Unity LocalPhone:UseWebRTC()
    227. 2023.07.27 10:23:44.144 28777 28793 Info Unity LocalPhone:ReceiveString(String)
    228. 2023.07.27 10:23:44.144 28777 28793 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceive(NetPeer, NetPacketReader, DeliveryMethod)
    229. 2023.07.27 10:23:44.144 28777 28793 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    230. 2023.07.27 10:23:44.144 28777 28793 Info Unity LiteNetLib.NetManager:PollEvents()
    231. 2023.07.27 10:23:44.144 28777 28793 Info Unity EyeChat:Update()
    232. 2023.07.27 10:23:44.144 28777 28793 Info Unity
    233. 2023.07.27 10:23:44.155 28777 28793 Info Unity Added video stream track to peer connection.
    234. 2023.07.27 10:23:44.155 28777 28793 Info Unity WebRTCPhone:AddTrack()
    235. 2023.07.27 10:23:44.155 28777 28793 Info Unity LocalPhone:AddTrack()
    236. 2023.07.27 10:23:44.155 28777 28793 Info Unity LocalPhone:ReceiveString(String)
    237. 2023.07.27 10:23:44.155 28777 28793 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceive(NetPeer, NetPacketReader, DeliveryMethod)
    238. 2023.07.27 10:23:44.155 28777 28793 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    239. 2023.07.27 10:23:44.155 28777 28793 Info Unity LiteNetLib.NetManager:PollEvents()
    240. 2023.07.27 10:23:44.155 28777 28793 Info Unity EyeChat:Update()
    241. 2023.07.27 10:23:44.155 28777 28793 Info Unity
    242. 2023.07.27 10:23:44.168 28777 28793 Info Unity video/VP8 has  channels, clock rate: 90000, sdpFmtpLine: implementation_name=Internal
    243. 2023.07.27 10:23:44.168 28777 28793 Info Unity WebRTCPhone:DumpCapabilities()
    244. 2023.07.27 10:23:44.168 28777 28793 Info Unity WebRTCPhone:AddTrack()
    245. 2023.07.27 10:23:44.168 28777 28793 Info Unity LocalPhone:AddTrack()
    246. 2023.07.27 10:23:44.168 28777 28793 Info Unity LocalPhone:ReceiveString(String)
    247. 2023.07.27 10:23:44.168 28777 28793 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceive(NetPeer, NetPacketReader, DeliveryMethod)
    248. 2023.07.27 10:23:44.168 28777 28793 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    249. 2023.07.27 10:23:44.168 28777 28793 Info Unity LiteNetLib.NetManager:PollEvents()
    250. 2023.07.27 10:23:44.168 28777 28793 Info Unity EyeChat:Update()
    251. 2023.07.27 10:23:44.168 28777 28793 Info Unity
    252. 2023.07.27 10:23:44.170 28777 28793 Info Unity video/rtx has  channels, clock rate: 90000, sdpFmtpLine:
    253. 2023.07.27 10:23:44.170 28777 28793 Info Unity WebRTCPhone:DumpCapabilities()
    254. 2023.07.27 10:23:44.170 28777 28793 Info Unity WebRTCPhone:AddTrack()
    255. 2023.07.27 10:23:44.170 28777 28793 Info Unity LocalPhone:AddTrack()
    256. 2023.07.27 10:23:44.170 28777 28793 Info Unity LocalPhone:ReceiveString(String)
    257. 2023.07.27 10:23:44.170 28777 28793 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceive(NetPeer, NetPacketReader, DeliveryMethod)
    258. 2023.07.27 10:23:44.170 28777 28793 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    259. 2023.07.27 10:23:44.170 28777 28793 Info Unity LiteNetLib.NetManager:PollEvents()
    260. 2023.07.27 10:23:44.170 28777 28793 Info Unity EyeChat:Update()
    261. 2023.07.27 10:23:44.170 28777 28793 Info Unity
    262. 2023.07.27 10:23:44.172 28777 28793 Info Unity video/VP8 has  channels, clock rate: 90000, sdpFmtpLine: implementation_name=MediaCodec
    263. 2023.07.27 10:23:44.172 28777 28793 Info Unity WebRTCPhone:DumpCapabilities()
    264. 2023.07.27 10:23:44.172 28777 28793 Info Unity WebRTCPhone:AddTrack()
    265. 2023.07.27 10:23:44.172 28777 28793 Info Unity LocalPhone:AddTrack()
    266. 2023.07.27 10:23:44.172 28777 28793 Info Unity LocalPhone:ReceiveString(String)
    267. 2023.07.27 10:23:44.172 28777 28793 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceive(NetPeer, NetPacketReader, DeliveryMethod)
    268. 2023.07.27 10:23:44.172 28777 28793 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    269. 2023.07.27 10:23:44.172 28777 28793 Info Unity LiteNetLib.NetManager:PollEvents()
    270. 2023.07.27 10:23:44.172 28777 28793 Info Unity EyeChat:Update()
    271. 2023.07.27 10:23:44.172 28777 28793 Info Unity
    272. 2023.07.27 10:23:44.173 28777 28793 Info Unity video/VP9 has  channels, clock rate: 90000, sdpFmtpLine: implementation_name=Internal;profile-id=0
    273. 2023.07.27 10:23:44.173 28777 28793 Info Unity WebRTCPhone:DumpCapabilities()
    274. 2023.07.27 10:23:44.173 28777 28793 Info Unity WebRTCPhone:AddTrack()
    275. 2023.07.27 10:23:44.173 28777 28793 Info Unity LocalPhone:AddTrack()
    276. 2023.07.27 10:23:44.173 28777 28793 Info Unity LocalPhone:ReceiveString(String)
    277. 2023.07.27 10:23:44.173 28777 28793 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceive(NetPeer, NetPacketReader, DeliveryMethod)
    278. 2023.07.27 10:23:44.173 28777 28793 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    279. 2023.07.27 10:23:44.173 28777 28793 Info Unity LiteNetLib.NetManager:PollEvents()
    280. 2023.07.27 10:23:44.173 28777 28793 Info Unity EyeChat:Update()
    281. 2023.07.27 10:23:44.173 28777 28793 Info Unity
    282. 2023.07.27 10:23:44.175 28777 28793 Info Unity video/VP9 has  channels, clock rate: 90000, sdpFmtpLine: implementation_name=MediaCodec
    283. 2023.07.27 10:23:44.175 28777 28793 Info Unity WebRTCPhone:DumpCapabilities()
    284. 2023.07.27 10:23:44.175 28777 28793 Info Unity WebRTCPhone:AddTrack()
    285. 2023.07.27 10:23:44.175 28777 28793 Info Unity LocalPhone:AddTrack()
    286. 2023.07.27 10:23:44.175 28777 28793 Info Unity LocalPhone:ReceiveString(String)
    287. 2023.07.27 10:23:44.175 28777 28793 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceive(NetPeer, NetPacketReader, DeliveryMethod)
    288. 2023.07.27 10:23:44.175 28777 28793 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    289. 2023.07.27 10:23:44.175 28777 28793 Info Unity LiteNetLib.NetManager:PollEvents()
    290. 2023.07.27 10:23:44.175 28777 28793 Info Unity EyeChat:Update()
    291. 2023.07.27 10:23:44.175 28777 28793 Info Unity
    292. 2023.07.27 10:23:44.176 28777 28793 Info Unity video/H264 has  channels, clock rate: 90000, sdpFmtpLine: implementation_name=MediaCodec;level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=640c1f
    293. 2023.07.27 10:23:44.176 28777 28793 Info Unity WebRTCPhone:DumpCapabilities()
    294. 2023.07.27 10:23:44.176 28777 28793 Info Unity WebRTCPhone:AddTrack()
    295. 2023.07.27 10:23:44.176 28777 28793 Info Unity LocalPhone:AddTrack()
    296. 2023.07.27 10:23:44.176 28777 28793 Info Unity LocalPhone:ReceiveString(String)
    297. 2023.07.27 10:23:44.176 28777 28793 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceive(NetPeer, NetPacketReader, DeliveryMethod)
    298. 2023.07.27 10:23:44.176 28777 28793 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    299. 2023.07.27 10:23:44.176 28777 28793 Info Unity LiteNetLib.NetManager:PollEvents()
    300. 2023.07.27 10:23:44.176 28777 28793 Info Unity EyeChat:Update()
    301. 2023.07.27 10:23:44.176 28777 28793 Info Unity
    302. 2023.07.27 10:23:44.178 28777 28793 Info Unity video/H264 has  channels, clock rate: 90000, sdpFmtpLine: implementation_name=MediaCodec;level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=42e01f
    303. 2023.07.27 10:23:44.178 28777 28793 Info Unity WebRTCPhone:DumpCapabilities()
    304. 2023.07.27 10:23:44.178 28777 28793 Info Unity WebRTCPhone:AddTrack()
    305. 2023.07.27 10:23:44.178 28777 28793 Info Unity LocalPhone:AddTrack()
    306. 2023.07.27 10:23:44.178 28777 28793 Info Unity LocalPhone:ReceiveString(String)
    307. 2023.07.27 10:23:44.178 28777 28793 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceive(NetPeer, NetPacketReader, DeliveryMethod)
    308. 2023.07.27 10:23:44.178 28777 28793 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    309. 2023.07.27 10:23:44.178 28777 28793 Info Unity LiteNetLib.NetManager:PollEvents()
    310. 2023.07.27 10:23:44.178 28777 28793 Info Unity EyeChat:Update()
    311. 2023.07.27 10:23:44.178 28777 28793 Info Unity
    312. 2023.07.27 10:23:44.179 28777 28793 Info Unity video/AV1 has  channels, clock rate: 90000, sdpFmtpLine: implementation_name=Internal
    313. 2023.07.27 10:23:44.179 28777 28793 Info Unity WebRTCPhone:DumpCapabilities()
    314. 2023.07.27 10:23:44.179 28777 28793 Info Unity WebRTCPhone:AddTrack()
    315. 2023.07.27 10:23:44.179 28777 28793 Info Unity LocalPhone:AddTrack()
    316. 2023.07.27 10:23:44.179 28777 28793 Info Unity LocalPhone:ReceiveString(String)
    317. 2023.07.27 10:23:44.179 28777 28793 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceive(NetPeer, NetPacketReader, DeliveryMethod)
    318. 2023.07.27 10:23:44.179 28777 28793 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    319. 2023.07.27 10:23:44.179 28777 28793 Info Unity LiteNetLib.NetManager:PollEvents()
    320. 2023.07.27 10:23:44.179 28777 28793 Info Unity EyeChat:Update()
    321. 2023.07.27 10:23:44.179 28777 28793 Info Unity
    322. 2023.07.27 10:23:44.181 28777 28793 Info Unity video/red has  channels, clock rate: 90000, sdpFmtpLine:
    323. 2023.07.27 10:23:44.181 28777 28793 Info Unity WebRTCPhone:DumpCapabilities()
    324. 2023.07.27 10:23:44.181 28777 28793 Info Unity WebRTCPhone:AddTrack()
    325. 2023.07.27 10:23:44.181 28777 28793 Info Unity LocalPhone:AddTrack()
    326. 2023.07.27 10:23:44.181 28777 28793 Info Unity LocalPhone:ReceiveString(String)
    327. 2023.07.27 10:23:44.181 28777 28793 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceive(NetPeer, NetPacketReader, DeliveryMethod)
    328. 2023.07.27 10:23:44.181 28777 28793 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    329. 2023.07.27 10:23:44.181 28777 28793 Info Unity LiteNetLib.NetManager:PollEvents()
    330. 2023.07.27 10:23:44.181 28777 28793 Info Unity EyeChat:Update()
    331. 2023.07.27 10:23:44.181 28777 28793 Info Unity
    332. 2023.07.27 10:23:44.182 28777 28793 Info Unity video/ulpfec has  channels, clock rate: 90000, sdpFmtpLine:
    333. 2023.07.27 10:23:44.182 28777 28793 Info Unity WebRTCPhone:DumpCapabilities()
    334. 2023.07.27 10:23:44.182 28777 28793 Info Unity WebRTCPhone:AddTrack()
    335. 2023.07.27 10:23:44.182 28777 28793 Info Unity LocalPhone:AddTrack()
    336. 2023.07.27 10:23:44.182 28777 28793 Info Unity LocalPhone:ReceiveString(String)
    337. 2023.07.27 10:23:44.182 28777 28793 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceive(NetPeer, NetPacketReader, DeliveryMethod)
    338. 2023.07.27 10:23:44.182 28777 28793 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    339. 2023.07.27 10:23:44.182 28777 28793 Info Unity LiteNetLib.NetManager:PollEvents()
    340. 2023.07.27 10:23:44.182 28777 28793 Info Unity EyeChat:Update()
    341. 2023.07.27 10:23:44.182 28777 28793 Info Unity
    342. 2023.07.27 10:23:44.183 28777 28793 Info Unity Set frame rate to: 12
    343. 2023.07.27 10:23:44.183 28777 28793 Info Unity WebRTCPhone:AddTrack()
    344. 2023.07.27 10:23:44.183 28777 28793 Info Unity LocalPhone:AddTrack()
    345. 2023.07.27 10:23:44.183 28777 28793 Info Unity LocalPhone:ReceiveString(String)
    346. 2023.07.27 10:23:44.183 28777 28793 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceive(NetPeer, NetPacketReader, DeliveryMethod)
    347. 2023.07.27 10:23:44.183 28777 28793 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    348. 2023.07.27 10:23:44.183 28777 28793 Info Unity LiteNetLib.NetManager:PollEvents()
    349. 2023.07.27 10:23:44.183 28777 28793 Info Unity EyeChat:Update()
    350. 2023.07.27 10:23:44.183 28777 28793 Info Unity
    351. 2023.07.27 10:23:44.185 28777 28793 Info Unity Added video stream track to senders list.
    352. 2023.07.27 10:23:44.185 28777 28793 Info Unity WebRTCPhone:AddTrack()
    353. 2023.07.27 10:23:44.185 28777 28793 Info Unity LocalPhone:AddTrack()
    354. 2023.07.27 10:23:44.185 28777 28793 Info Unity LocalPhone:ReceiveString(String)
    355. 2023.07.27 10:23:44.185 28777 28793 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceive(NetPeer, NetPacketReader, DeliveryMethod)
    356. 2023.07.27 10:23:44.185 28777 28793 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    357. 2023.07.27 10:23:44.185 28777 28793 Info Unity LiteNetLib.NetManager:PollEvents()
    358. 2023.07.27 10:23:44.185 28777 28793 Info Unity EyeChat:Update()
    359. 2023.07.27 10:23:44.185 28777 28793 Info Unity
    360. 2023.07.27 10:23:44.188 28777 28793 Info Unity Video update started.
    361. 2023.07.27 10:23:44.188 28777 28793 Info Unity WebRTCPhone:AddTrack()
    362. 2023.07.27 10:23:44.188 28777 28793 Info Unity LocalPhone:AddTrack()
    363. 2023.07.27 10:23:44.188 28777 28793 Info Unity LocalPhone:ReceiveString(String)
    364. 2023.07.27 10:23:44.188 28777 28793 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceive(NetPeer, NetPacketReader, DeliveryMethod)
    365. 2023.07.27 10:23:44.188 28777 28793 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    366. 2023.07.27 10:23:44.188 28777 28793 Info Unity LiteNetLib.NetManager:PollEvents()
    367. 2023.07.27 10:23:44.188 28777 28793 Info Unity EyeChat:Update()
    368. 2023.07.27 10:23:44.188 28777 28793 Info Unity
    369. 2023.07.27 10:23:44.192 28777 28793 Info Unity [HOST]  peer negotiation needed, create offer.
    370. 2023.07.27 10:23:44.192 28777 28793 Info Unity <PeerNegotiationNeeded>d__14:MoveNext()
    371. 2023.07.27 10:23:44.192 28777 28793 Info Unity UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr)
    372. 2023.07.27 10:23:44.192 28777 28793 Info Unity Unity.WebRTC.<>c__DisplayClass53_0:<PCOnNegotiationNeeded>b__0()
    373. 2023.07.27 10:23:44.192 28777 28793 Info Unity Unity.WebRTC.WebRTC:SendOrPostCallback(Object)
    374. 2023.07.27 10:23:44.192 28777 28793 Info Unity Unity.WebRTC.WorkRequest:Invoke()
    375. 2023.07.27 10:23:44.192 28777 28793 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:Execute()
    376. 2023.07.27 10:23:44.192 28777 28793 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:ExecuteAndAppendNextExecute()
    377. 2023.07.27 10:23:44.192 28777 28793 Info Unity UnityEngine.WorkRequest:Invoke()
    378. 2023.07.27 10:23:44.192 28777 28793 Info Unity UnityEngine.UnitySynchronizationContext:Exec()
    379. 2023.07.27 10:23:44.192 28777 28793 Info Unity
    380. 2023.07.27 10:23:44.241 28777 28793 Info Unity Offer from local
    381. 2023.07.27 10:23:44.241 28777 28793 Info Unity <OnCreateOfferSuccess>d__15:MoveNext()
    382. 2023.07.27 10:23:44.241 28777 28793 Info Unity UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr)
    383. 2023.07.27 10:23:44.241 28777 28793 Info Unity <PeerNegotiationNeeded>d__14:MoveNext()
    384. 2023.07.27 10:23:44.241 28777 28793 Info Unity UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr)
    385. 2023.07.27 10:23:44.241 28777 28793 Info Unity
    386. 2023.07.27 10:23:44.245 28777 28793 Info Unity setServerDescription start
    387. 2023.07.27 10:23:44.245 28777 28793 Info Unity <OnCreateOfferSuccess>d__15:MoveNext()
    388. 2023.07.27 10:23:44.245 28777 28793 Info Unity UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr)
    389. 2023.07.27 10:23:44.245 28777 28793 Info Unity <PeerNegotiationNeeded>d__14:MoveNext()
    390. 2023.07.27 10:23:44.245 28777 28793 Info Unity UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr)
    391. 2023.07.27 10:23:44.245 28777 28793 Info Unity
    392. 2023.07.27 10:23:44.253 28777 28852 Warn VideoCapabilities Unrecognized profile 2130706433 for video/avc
    393. 2023.07.27 10:23:44.253 28777 28852 Warn VideoCapabilities Unrecognized profile 2130706434 for video/avc
    394. 2023.07.27 10:23:44.257 28777 28852 Warn VideoCapabilities Unrecognized profile 2130706433 for video/avc
    395. 2023.07.27 10:23:44.257 28777 28852 Warn VideoCapabilities Unrecognized profile 2130706434 for video/avc
    396. 2023.07.27 10:23:44.268 28777 28793 Info Unity [SERVER] Received discovery request. Send discovery response
    397. 2023.07.27 10:23:44.268 28777 28793 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceiveUnconnected(IPEndPoint, NetPacketReader, UnconnectedMessageType)
    398. 2023.07.27 10:23:44.268 28777 28793 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    399. 2023.07.27 10:23:44.268 28777 28793 Info Unity LiteNetLib.NetManager:PollEvents()
    400. 2023.07.27 10:23:44.268 28777 28793 Info Unity EyeChat:Update()
    401. 2023.07.27 10:23:44.268 28777 28793 Info Unity
    402. 2023.07.27 10:23:44.271 28777 28793 Info Unity SetServerDescription complete
    403. 2023.07.27 10:23:44.271 28777 28793 Info Unity <OnCreateOfferSuccess>d__15:MoveNext()
    404. 2023.07.27 10:23:44.271 28777 28793 Info Unity UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr)
    405. 2023.07.27 10:23:44.271 28777 28793 Info Unity
    406. 2023.07.27 10:23:44.272 28777 28793 Info Unity Sending offer...
    407. 2023.07.27 10:23:44.272 28777 28793 Info Unity <OnCreateOfferSuccess>d__15:MoveNext()
    408. 2023.07.27 10:23:44.272 28777 28793 Info Unity UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr)
    409. 2023.07.27 10:23:44.272 28777 28793 Info Unity
    410. 2023.07.27 10:23:44.273 28777 28793 Info Unity Sending string: ov=0
    411. 2023.07.27 10:23:44.273 28777 28793 Info Unity o=- 5881693824843587496 2 IN IP4 127.0.0.1
    412. 2023.07.27 10:23:44.273 28777 28793 Info Unity s=-
    413. 2023.07.27 10:23:44.273 28777 28793 Info Unity t=0 0
    414. 2023.07.27 10:23:44.273 28777 28793 Info Unity a=group:BUNDLE 0
    415. 2023.07.27 10:23:44.273 28777 28793 Info Unity a=extmap-allow-mixed
    416. 2023.07.27 10:23:44.273 28777 28793 Info Unity a=msid-semantic: WMS
    417. 2023.07.27 10:23:44.273 28777 28793 Info Unity m=video 9 UDP/TLS/RTP/SAVPF 127 121 125 120 124 119 123 118 39 40 117 116 122
    418. 2023.07.27 10:23:44.273 28777 28793 Info Unity c=IN IP4 0.0.0.0
    419. 2023.07.27 10:23:44.273 28777 28793 Info Unity a=rtcp:9 IN IP4 0.0.0.0
    420. 2023.07.27 10:23:44.273 28777 28793 Info Unity a=ice-ufrag:Dzjx
    421. 2023.07.27 10:23:44.273 28777 28793 Info Unity a=ice-pwd:dOGFHzuiLqBw3MNFZeT+0XQ/
    422. 2023.07.27 10:23:44.273 28777 28793 Info Unity a=ice-options:trickle
    423. 2023.07.27 10:23:44.273 28777 28793 Info Unity a=fingerprint:sha-256 B7:BB:C8:F9:57:79:86:F1:A5:F6:FF:C6:A9:9E:4B:99:8F:20:32:D0:30:9E:4C:CA:F1:77:32:93:A2:C3:7B:22
    424. 2023.07.27 10:23:44.273 28777 28793 Info Unity a=setup:actpass
    425. 2023.07.27 10:23:44.273 28777 28793 Info Unity a=mid:0
    426. 2023.07.27 10:23:44.273 28777 28793 Info Unity a=extmap:1 urn:ietf:params:rtp-hdrext:toffset
    427. 2023.07.27 10:23:44.273 28777 28793 Info Unity a=extmap:2 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time
    428. 2023.07.27 10:23:44.273 28777 28793 Info Unity a=extmap:3 urn:3gpp:video-orientation
    429. 2023.07.27 10:23:44.273 28777 28793 Info Unity a=extmap:4 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01
    430. 2023.07.27 10:23:44.273 28777 28793 Info Unity a=extmap:5 http://www.webrtc.org/experiments/rtp-hdrext/playout-delay
    431. 2023.07.27 10:23:44.273 28777 28793 Info Unity a=extmap:6 http://www.webrtc.org/experiments/rtp-hdrext/video-content-type
    432. 2023.07.27 10:23:44.273 28777 28793 Info Unity a=extmap:7 http://www.webrtc.org/experiments/rtp-hdrext/video-timing
    433. 2023.07.27 10:23:44.273 28777 28793 Info Unity a=extmap:8 http://www.webrtc.org/experiments/rtp-hdrext/color-space
    434. 2023.07.27 10:23:44.273 28777 28793 Info Unity a=extmap:9
    435. 2023.07.27 10:23:44.314 28777 28793 Info Unity ICE candidate:
    436. 2023.07.27 10:23:44.314 28777 28793 Info Unity  candidate:2801318045 1 udp 2122262783 2a01:c22:c83e:f200:ddf5:f0a6:c5c6:9a08 54344 typ host generation 0 ufrag Dzjx network-id 4 network-cost 10
    437. 2023.07.27 10:23:44.314 28777 28793 Info Unity WebRTCPhone:OnIceCandidate(RTCIceCandidate)
    438. 2023.07.27 10:23:44.314 28777 28793 Info Unity Unity.WebRTC.<>c__DisplayClass49_0:<PCOnIceCandidate>b__0()
    439. 2023.07.27 10:23:44.314 28777 28793 Info Unity Unity.WebRTC.WebRTC:SendOrPostCallback(Object)
    440. 2023.07.27 10:23:44.314 28777 28793 Info Unity Unity.WebRTC.WorkRequest:Invoke()
    441. 2023.07.27 10:23:44.314 28777 28793 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:Execute()
    442. 2023.07.27 10:23:44.314 28777 28793 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:ExecuteAndAppendNextExecute()
    443. 2023.07.27 10:23:44.314 28777 28793 Info Unity UnityEngine.WorkRequest:Invoke()
    444. 2023.07.27 10:23:44.314 28777 28793 Info Unity UnityEngine.UnitySynchronizationContext:Exec()
    445. 2023.07.27 10:23:44.314 28777 28793 Info Unity
    446. 2023.07.27 10:23:44.324 28777 28793 Info Unity Sending string: ccandidate:2801318045 1 udp 2122262783 2a01:c22:c83e:f200:ddf5:f0a6:c5c6:9a08 54344 typ host generation 0 ufrag Dzjx network-id 4 network-cost 10
    447. 2023.07.27 10:23:44.324 28777 28793 Info Unity 0
    448. 2023.07.27 10:23:44.324 28777 28793 Info Unity 0
    449. 2023.07.27 10:23:44.324 28777 28793 Info Unity EyeChat:SendString(String)
    450. 2023.07.27 10:23:44.324 28777 28793 Info Unity WebRTCPhone:OnIceCandidate(RTCIceCandidate)
    451. 2023.07.27 10:23:44.324 28777 28793 Info Unity Unity.WebRTC.<>c__DisplayClass49_0:<PCOnIceCandidate>b__0()
    452. 2023.07.27 10:23:44.324 28777 28793 Info Unity Unity.WebRTC.WebRTC:SendOrPostCallback(Object)
    453. 2023.07.27 10:23:44.324 28777 28793 Info Unity Unity.WebRTC.WorkRequest:Invoke()
    454. 2023.07.27 10:23:44.324 28777 28793 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:Execute()
    455. 2023.07.27 10:23:44.324 28777 28793 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:ExecuteAndAppendNextExecute()
    456. 2023.07.27 10:23:44.324 28777 28793 Info Unity UnityEngine.WorkRequest:Invoke()
    457. 2023.07.27 10:23:44.324 28777 28793 Info Unity UnityEngine.UnitySynchronizationContext:Exec()
    458. 2023.07.27 10:23:44.324 28777 28793 Info Unity
    459. 2023.07.27 10:23:44.326 28777 28793 Info Unity ICE candidate:
    460. 2023.07.27 10:23:44.326 28777 28793 Info Unity  candidate:3768640016 1 udp 2122194687 192.168.1.99 46067 typ host generation 0 ufrag Dzjx network-id 3 network-cost 10
    461. 2023.07.27 10:23:44.326 28777 28793 Info Unity WebRTCPhone:OnIceCandidate(RTCIceCandidate)
    462. 2023.07.27 10:23:44.326 28777 28793 Info Unity Unity.WebRTC.<>c__DisplayClass49_0:<PCOnIceCandidate>b__0()
    463. 2023.07.27 10:23:44.326 28777 28793 Info Unity Unity.WebRTC.WebRTC:SendOrPostCallback(Object)
    464. 2023.07.27 10:23:44.326 28777 28793 Info Unity Unity.WebRTC.WorkRequest:Invoke()
    465. 2023.07.27 10:23:44.326 28777 28793 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:Execute()
    466. 2023.07.27 10:23:44.326 28777 28793 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:ExecuteAndAppendNextExecute()
    467. 2023.07.27 10:23:44.326 28777 28793 Info Unity UnityEngine.WorkRequest:Invoke()
    468. 2023.07.27 10:23:44.326 28777 28793 Info Unity UnityEngine.UnitySynchronizationContext:Exec()
    469. 2023.07.27 10:23:44.326 28777 28793 Info Unity
    470. 2023.07.27 10:23:44.328 28777 28793 Info Unity Sending string: ccandidate:3768640016 1 udp 2122194687 192.168.1.99 46067 typ host generation 0 ufrag Dzjx network-id 3 network-cost 10
    471. 2023.07.27 10:23:44.328 28777 28793 Info Unity 0
    472. 2023.07.27 10:23:44.328 28777 28793 Info Unity 0
    473. 2023.07.27 10:23:44.328 28777 28793 Info Unity EyeChat:SendString(String)
    474. 2023.07.27 10:23:44.328 28777 28793 Info Unity WebRTCPhone:OnIceCandidate(RTCIceCandidate)
    475. 2023.07.27 10:23:44.328 28777 28793 Info Unity Unity.WebRTC.<>c__DisplayClass49_0:<PCOnIceCandidate>b__0()
    476. 2023.07.27 10:23:44.328 28777 28793 Info Unity Unity.WebRTC.WebRTC:SendOrPostCallback(Object)
    477. 2023.07.27 10:23:44.328 28777 28793 Info Unity Unity.WebRTC.WorkRequest:Invoke()
    478. 2023.07.27 10:23:44.328 28777 28793 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:Execute()
    479. 2023.07.27 10:23:44.328 28777 28793 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:ExecuteAndAppendNextExecute()
    480. 2023.07.27 10:23:44.328 28777 28793 Info Unity UnityEngine.WorkRequest:Invoke()
    481. 2023.07.27 10:23:44.328 28777 28793 Info Unity UnityEngine.UnitySynchronizationContext:Exec()
    482. 2023.07.27 10:23:44.328 28777 28793 Info Unity
    483. 2023.07.27 10:23:44.369 28777 28793 Info Unity Received reliable unordered data from 192.168.1.185:50642, assume string message.
    484. 2023.07.27 10:23:44.369 28777 28793 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceive(NetPeer, NetPacketReader, DeliveryMethod)
    485. 2023.07.27 10:23:44.369 28777 28793 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    486. 2023.07.27 10:23:44.369 28777 28793 Info Unity LiteNetLib.NetManager:PollEvents()
    487. 2023.07.27 10:23:44.369 28777 28793 Info Unity EyeChat:Update()
    488. 2023.07.27 10:23:44.369 28777 28793 Info Unity
    489. 2023.07.27 10:23:44.406 28777 28793 Info Unity ICE candidate:
    490. 2023.07.27 10:23:44.406 28777 28793 Info Unity  candidate:3627506181 1 tcp 1518283007 2a01:c22:c83e:f200:ddf5:f0a6:c5c6:9a08 56387 typ host tcptype passive generation 0 ufrag Dzjx network-id 4 network-cost 10
    491. 2023.07.27 10:23:44.406 28777 28793 Info Unity WebRTCPhone:OnIceCandidate(RTCIceCandidate)
    492. 2023.07.27 10:23:44.406 28777 28793 Info Unity Unity.WebRTC.<>c__DisplayClass49_0:<PCOnIceCandidate>b__0()
    493. 2023.07.27 10:23:44.406 28777 28793 Info Unity Unity.WebRTC.WebRTC:SendOrPostCallback(Object)
    494. 2023.07.27 10:23:44.406 28777 28793 Info Unity Unity.WebRTC.WorkRequest:Invoke()
    495. 2023.07.27 10:23:44.406 28777 28793 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:Execute()
    496. 2023.07.27 10:23:44.406 28777 28793 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:ExecuteAndAppendNextExecute()
    497. 2023.07.27 10:23:44.406 28777 28793 Info Unity UnityEngine.WorkRequest:Invoke()
    498. 2023.07.27 10:23:44.406 28777 28793 Info Unity UnityEngine.UnitySynchronizationContext:Exec()
    499. 2023.07.27 10:23:44.406 28777 28793 Info Unity
    500. 2023.07.27 10:23:44.409 28777 28793 Info Unity Sending string: ccandidate:3627506181 1 tcp 1518283007 2a01:c22:c83e:f200:ddf5:f0a6:c5c6:9a08 56387 typ host tcptype passive generation 0 ufrag Dzjx network-id 4 network-cost 10
    501. 2023.07.27 10:23:44.409 28777 28793 Info Unity 0
    502. 2023.07.27 10:23:44.409 28777 28793 Info Unity 0
    503. 2023.07.27 10:23:44.409 28777 28793 Info Unity EyeChat:SendString(String)
    504. 2023.07.27 10:23:44.409 28777 28793 Info Unity WebRTCPhone:OnIceCandidate(RTCIceCandidate)
    505. 2023.07.27 10:23:44.409 28777 28793 Info Unity Unity.WebRTC.<>c__DisplayClass49_0:<PCOnIceCandidate>b__0()
    506. 2023.07.27 10:23:44.409 28777 28793 Info Unity Unity.WebRTC.WebRTC:SendOrPostCallback(Object)
    507. 2023.07.27 10:23:44.409 28777 28793 Info Unity Unity.WebRTC.WorkRequest:Invoke()
    508. 2023.07.27 10:23:44.409 28777 28793 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:Execute()
    509. 2023.07.27 10:23:44.409 28777 28793 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:ExecuteAndAppendNextExecute()
    510. 2023.07.27 10:23:44.409 28777 28793 Info Unity UnityEngine.WorkRequest:Invoke()
    511. 2023.07.27 10:23:44.409 28777 28793 Info Unity UnityEngine.UnitySynchronizationContext:Exec()
    512. 2023.07.27 10:23:44.409 28777 28793 Info Unity
    513. 2023.07.27 10:23:44.412 28777 28793 Info Unity ICE candidate:
    514. 2023.07.27 10:23:44.412 28777 28793 Info Unity  candidate:2658074760 1 tcp 1518214911 192.168.1.99 44078 typ host tcptype passive generation 0 ufrag Dzjx network-id 3 network-cost 10
    515. 2023.07.27 10:23:44.412 28777 28793 Info Unity WebRTCPhone:OnIceCandidate(RTCIceCandidate)
    516. 2023.07.27 10:23:44.412 28777 28793 Info Unity Unity.WebRTC.<>c__DisplayClass49_0:<PCOnIceCandidate>b__0()
    517. 2023.07.27 10:23:44.412 28777 28793 Info Unity Unity.WebRTC.WebRTC:SendOrPostCallback(Object)
    518. 2023.07.27 10:23:44.412 28777 28793 Info Unity Unity.WebRTC.WorkRequest:Invoke()
    519. 2023.07.27 10:23:44.412 28777 28793 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:Execute()
    520. 2023.07.27 10:23:44.412 28777 28793 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:ExecuteAndAppendNextExecute()
    521. 2023.07.27 10:23:44.412 28777 28793 Info Unity UnityEngine.WorkRequest:Invoke()
    522. 2023.07.27 10:23:44.412 28777 28793 Info Unity UnityEngine.UnitySynchronizationContext:Exec()
    523. 2023.07.27 10:23:44.412 28777 28793 Info Unity
    524. 2023.07.27 10:23:44.415 28777 28793 Info Unity Sending string: ccandidate:2658074760 1 tcp 1518214911 192.168.1.99 44078 typ host tcptype passive generation 0 ufrag Dzjx network-id 3 network-cost 10
    525. 2023.07.27 10:23:44.415 28777 28793 Info Unity 0
    526. 2023.07.27 10:23:44.415 28777 28793 Info Unity 0
    527. 2023.07.27 10:23:44.415 28777 28793 Info Unity EyeChat:SendString(String)
    528. 2023.07.27 10:23:44.415 28777 28793 Info Unity WebRTCPhone:OnIceCandidate(RTCIceCandidate)
    529. 2023.07.27 10:23:44.415 28777 28793 Info Unity Unity.WebRTC.<>c__DisplayClass49_0:<PCOnIceCandidate>b__0()
    530. 2023.07.27 10:23:44.415 28777 28793 Info Unity Unity.WebRTC.WebRTC:SendOrPostCallback(Object)
    531. 2023.07.27 10:23:44.415 28777 28793 Info Unity Unity.WebRTC.WorkRequest:Invoke()
    532. 2023.07.27 10:23:44.415 28777 28793 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:Execute()
    533. 2023.07.27 10:23:44.415 28777 28793 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:ExecuteAndAppendNextExecute()
    534. 2023.07.27 10:23:44.415 28777 28793 Info Unity UnityEngine.WorkRequest:Invoke()
    535. 2023.07.27 10:23:44.415 28777 28793 Info Unity UnityEngine.UnitySynchronizationContext:Exec()
    536. 2023.07.27 10:23:44.415 28777 28793 Info Unity
    537. 2023.07.27 10:23:44.503 28777 28793 Info Unity Received reliable unordered data from 192.168.1.185:50642, assume string message.
    538. 2023.07.27 10:23:44.503 28777 28793 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceive(NetPeer, NetPacketReader, DeliveryMethod)
    539. 2023.07.27 10:23:44.503 28777 28793 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    540. 2023.07.27 10:23:44.503 28777 28793 Info Unity LiteNetLib.NetManager:PollEvents()
    541. 2023.07.27 10:23:44.503 28777 28793 Info Unity EyeChat:Update()
    542. 2023.07.27 10:23:44.503 28777 28793 Info Unity
    543. 2023.07.27 10:23:44.506 28777 28793 Info Unity String message type: a
    544. 2023.07.27 10:23:44.506 28777 28793 Info Unity WebRTCPhone:ReceiveString(String)
    545. 2023.07.27 10:23:44.506 28777 28793 Info Unity LocalPhone:ReceiveString(String)
    546. 2023.07.27 10:23:44.506 28777 28793 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceive(NetPeer, NetPacketReader, DeliveryMethod)
    547. 2023.07.27 10:23:44.506 28777 28793 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    548. 2023.07.27 10:23:44.506 28777 28793 Info Unity LiteNetLib.NetManager:PollEvents()
    549. 2023.07.27 10:23:44.506 28777 28793 Info Unity EyeChat:Update()
    550. 2023.07.27 10:23:44.506 28777 28793 Info Unity
    551. 2023.07.27 10:23:44.510 28777 28793 Info Unity [HOST] setRemoteDescription start
    552. 2023.07.27 10:23:44.510 28777 28793 Info Unity <OnReceiveAnswer>d__98:MoveNext()
    553. 2023.07.27 10:23:44.510 28777 28793 Info Unity UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr)
    554. 2023.07.27 10:23:44.510 28777 28793 Info Unity WebRTCPhone:ReceiveString(String)
    555. 2023.07.27 10:23:44.510 28777 28793 Info Unity LocalPhone:ReceiveString(String)
    556. 2023.07.27 10:23:44.510 28777 28793 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceive(NetPeer, NetPacketReader, DeliveryMethod)
    557. 2023.07.27 10:23:44.510 28777 28793 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    558. 2023.07.27 10:23:44.510 28777 28793 Info Unity LiteNetLib.NetManager:PollEvents()
    559. 2023.07.27 10:23:44.510 28777 28793 Info Unity EyeChat:Update()
    560. 2023.07.27 10:23:44.510 28777 28793 Info Unity
    561. 2023.07.27 10:23:44.533 28777 28793 Info Unity Received reliable unordered data from 192.168.1.185:50642, assume string message.
    562. 2023.07.27 10:23:44.533 28777 28793 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceive(NetPeer, NetPacketReader, DeliveryMethod)
    563. 2023.07.27 10:23:44.533 28777 28793 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    564. 2023.07.27 10:23:44.533 28777 28793 Info Unity LiteNetLib.NetManager:PollEvents()
    565. 2023.07.27 10:23:44.533 28777 28793 Info Unity EyeChat:Update()
    566. 2023.07.27 10:23:44.533 28777 28793 Info Unity
    567. 2023.07.27 10:23:44.536 28777 28793 Info Unity String message type: c
    568. 2023.07.27 10:23:44.536 28777 28793 Info Unity WebRTCPhone:ReceiveString(String)
    569. 2023.07.27 10:23:44.536 28777 28793 Info Unity LocalPhone:ReceiveString(String)
    570. 2023.07.27 10:23:44.536 28777 28793 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceive(NetPeer, NetPacketReader, DeliveryMethod)
    571. 2023.07.27 10:23:44.536 28777 28793 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    572. 2023.07.27 10:23:44.536 28777 28793 Info Unity LiteNetLib.NetManager:PollEvents()
    573. 2023.07.27 10:23:44.536 28777 28793 Info Unity EyeChat:Update()
    574. 2023.07.27 10:23:44.536 28777 28793 Info Unity
    575. 2023.07.27 10:23:44.538 28777 28793 Info Unity Adding candidate: candidate:2895079344 1 udp 2122262783 2a01:c22:c83e:f200:6253:837e:c196:99be 45366 typ host generation 0 ufrag mwq7 network-id 4 network-cost 10
    576. 2023.07.27 10:23:44.538 28777 28793 Info Unity WebRTCPhone:AddCandidate(RTCIceCandidate)
    577. 2023.07.27 10:23:44.538 28777 28793 Info Unity WebRTCPhone:ReceiveString(String)
    578. 2023.07.27 10:23:44.538 28777 28793 Info Unity LocalPhone:ReceiveString(String)
    579. 2023.07.27 10:23:44.538 28777 28793 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceive(NetPeer, NetPacketReader, DeliveryMethod)
    580. 2023.07.27 10:23:44.538 28777 28793 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    581. 2023.07.27 10:23:44.538 28777 28793 Info Unity LiteNetLib.NetManager:PollEvents()
    582. 2023.07.27 10:23:44.538 28777 28793 Info Unity EyeChat:Update()
    583. 2023.07.27 10:23:44.538 28777 28793 Info Unity
    584. 2023.07.27 10:23:44.541 28777 28793 Info Unity Received reliable unordered data from 192.168.1.185:50642, assume string message.
    585. 2023.07.27 10:23:44.541 28777 28793 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceive(NetPeer, NetPacketReader, DeliveryMethod)
    586. 2023.07.27 10:23:44.541 28777 28793 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    587. 2023.07.27 10:23:44.541 28777 28793 Info Unity LiteNetLib.NetManager:PollEvents()
    588. 2023.07.27 10:23:44.541 28777 28793 Info Unity EyeChat:Update()
    589. 2023.07.27 10:23:44.541 28777 28793 Info Unity
    590. 2023.07.27 10:23:44.543 28777 28793 Info Unity String message type: c
    591. 2023.07.27 10:23:44.543 28777 28793 Info Unity WebRTCPhone:ReceiveString(String)
    592. 2023.07.27 10:23:44.543 28777 28793 Info Unity LocalPhone:ReceiveString(String)
    593. 2023.07.27 10:23:44.543 28777 28793 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceive(NetPeer, NetPacketReader, DeliveryMethod)
    594. 2023.07.27 10:23:44.543 28777 28793 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    595. 2023.07.27 10:23:44.543 28777 28793 Info Unity LiteNetLib.NetManager:PollEvents()
    596. 2023.07.27 10:23:44.543 28777 28793 Info Unity EyeChat:Update()
    597. 2023.07.27 10:23:44.543 28777 28793 Info Unity
    598. 2023.07.27 10:23:44.545 28777 28793 Info Unity Adding candidate: candidate:2722767059 1 udp 2122194687 192.168.1.185 55098 typ host generation 0 ufrag mwq7 network-id 3 network-cost 10
    599. 2023.07.27 10:23:44.545 28777 28793 Info Unity WebRTCPhone:AddCandidate(RTCIceCandidate)
    600. 2023.07.27 10:23:44.545 28777 28793 Info Unity WebRTCPhone:ReceiveString(String)
    601. 2023.07.27 10:23:44.545 28777 28793 Info Unity LocalPhone:ReceiveString(String)
    602. 2023.07.27 10:23:44.545 28777 28793 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceive(NetPeer, NetPacketReader, DeliveryMethod)
    603. 2023.07.27 10:23:44.545 28777 28793 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    604. 2023.07.27 10:23:44.545 28777 28793 Info Unity LiteNetLib.NetManager:PollEvents()
    605. 2023.07.27 10:23:44.545 28777 28793 Info Unity EyeChat:Update()
    606. 2023.07.27 10:23:44.545 28777 28793 Info Unity
    607. 2023.07.27 10:23:44.549 28777 28793 Info Unity IceConnectionState: Checking
    608. 2023.07.27 10:23:44.549 28777 28793 Info Unity WebRTCPhone:OnIceConnectionChange(RTCIceConnectionState)
    609. 2023.07.27 10:23:44.549 28777 28793 Info Unity Unity.WebRTC.<>c__DisplayClass50_0:<PCOnIceConnectionChange>b__0()
    610. 2023.07.27 10:23:44.549 28777 28793 Info Unity Unity.WebRTC.WebRTC:SendOrPostCallback(Object)
    611. 2023.07.27 10:23:44.549 28777 28793 Info Unity Unity.WebRTC.WorkRequest:Invoke()
    612. 2023.07.27 10:23:44.549 28777 28793 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:Execute()
    613. 2023.07.27 10:23:44.549 28777 28793 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:ExecuteAndAppendNextExecute()
    614. 2023.07.27 10:23:44.549 28777 28793 Info Unity UnityEngine.WorkRequest:Invoke()
    615. 2023.07.27 10:23:44.549 28777 28793 Info Unity UnityEngine.UnitySynchronizationContext:Exec()
    616. 2023.07.27 10:23:44.549 28777 28793 Info Unity
    617. 2023.07.27 10:23:44.552 28777 28793 Info Unity [HOST]  OnTrack, add to receive stream.
    618. 2023.07.27 10:23:44.552 28777 28793 Info Unity WebRTCPhone:<SetUpPeerConnection>b__46_1(RTCTrackEvent)
    619. 2023.07.27 10:23:44.552 28777 28793 Info Unity Unity.WebRTC.<>c__DisplayClass55_0:<PCOnTrack>b__0()
    620. 2023.07.27 10:23:44.552 28777 28793 Info Unity Unity.WebRTC.WebRTC:SendOrPostCallback(Object)
    621. 2023.07.27 10:23:44.552 28777 28793 Info Unity Unity.WebRTC.WorkRequest:Invoke()
    622. 2023.07.27 10:23:44.552 28777 28793 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:Execute()
    623. 2023.07.27 10:23:44.552 28777 28793 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:ExecuteAndAppendNextExecute()
    624. 2023.07.27 10:23:44.552 28777 28793 Info Unity UnityEngine.WorkRequest:Invoke()
    625. 2023.07.27 10:23:44.552 28777 28793 Info Unity UnityEngine.UnitySynchronizationContext:Exec()
    626. 2023.07.27 10:23:44.552 28777 28793 Info Unity
    627. 2023.07.27 10:23:44.579 28777 28793 Info Unity IceConnectionState: Connected
    628. 2023.07.27 10:23:44.579 28777 28793 Info Unity WebRTCPhone:OnIceConnectionChange(RTCIceConnectionState)
    629. 2023.07.27 10:23:44.579 28777 28793 Info Unity Unity.WebRTC.<>c__DisplayClass50_0:<PCOnIceConnectionChange>b__0()
    630. 2023.07.27 10:23:44.579 28777 28793 Info Unity Unity.WebRTC.WebRTC:SendOrPostCallback(Object)
    631. 2023.07.27 10:23:44.579 28777 28793 Info Unity Unity.WebRTC.WorkRequest:Invoke()
    632. 2023.07.27 10:23:44.579 28777 28793 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:Execute()
    633. 2023.07.27 10:23:44.579 28777 28793 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:ExecuteAndAppendNextExecute()
    634. 2023.07.27 10:23:44.579 28777 28793 Info Unity UnityEngine.WorkRequest:Invoke()
    635. 2023.07.27 10:23:44.579 28777 28793 Info Unity UnityEngine.UnitySynchronizationContext:Exec()
    636. 2023.07.27 10:23:44.579 28777 28793 Info Unity
    637. 2023.07.27 10:23:44.581 28777 28793 Info Unity IceConnectionState: Completed
    638. 2023.07.27 10:23:44.581 28777 28793 Info Unity WebRTCPhone:OnIceConnectionChange(RTCIceConnectionState)
    639. 2023.07.27 10:23:44.581 28777 28793 Info Unity Unity.WebRTC.<>c__DisplayClass50_0:<PCOnIceConnectionChange>b__0()
    640. 2023.07.27 10:23:44.581 28777 28793 Info Unity Unity.WebRTC.WebRTC:SendOrPostCallback(Object)
    641. 2023.07.27 10:23:44.581 28777 28793 Info Unity Unity.WebRTC.WorkRequest:Invoke()
    642. 2023.07.27 10:23:44.581 28777 28793 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:Execute()
    643. 2023.07.27 10:23:44.581 28777 28793 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:ExecuteAndAppendNextExecute()
    644. 2023.07.27 10:23:44.581 28777 28793 Info Unity UnityEngine.WorkRequest:Invoke()
    645. 2023.07.27 10:23:44.581 28777 28793 Info Unity UnityEngine.UnitySynchronizationContext:Exec()
    646. 2023.07.27 10:23:44.581 28777 28793 Info Unity
    647. 2023.07.27 10:23:44.586 28777 28793 Info Unity [HOST]  SetRemoteDescription complete
    648. 2023.07.27 10:23:44.586 28777 28793 Info Unity <OnReceiveAnswer>d__98:MoveNext()
    649. 2023.07.27 10:23:44.586 28777 28793 Info Unity UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr)
    650. 2023.07.27 10:23:44.586 28777 28793 Info Unity
    651. 2023.07.27 10:23:44.588 28777 28793 Info Unity [HOST]  receive stream added track.
    652. 2023.07.27 10:23:44.588 28777 28793 Info Unity WebRTCPhone:<SetUpPeerConnection>b__46_2(MediaStreamTrackEvent)
    653. 2023.07.27 10:23:44.588 28777 28793 Info Unity Unity.WebRTC.<>c__DisplayClass20_0:<MediaStreamOnAddTrack>b__0()
    654. 2023.07.27 10:23:44.588 28777 28793 Info Unity Unity.WebRTC.WebRTC:SendOrPostCallback(Object)
    655. 2023.07.27 10:23:44.588 28777 28793 Info Unity Unity.WebRTC.WorkRequest:Invoke()
    656. 2023.07.27 10:23:44.588 28777 28793 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:Execute()
    657. 2023.07.27 10:23:44.588 28777 28793 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:ExecuteAndAppendNextExecute()
    658. 2023.07.27 10:23:44.588 28777 28793 Info Unity UnityEngine.WorkRequest:Invoke()
    659. 2023.07.27 10:23:44.588 28777 28793 Info Unity UnityEngine.UnitySynchronizationContext:Exec()
    660. 2023.07.27 10:23:44.588 28777 28793 Info Unity
    661. 2023.07.27 10:23:44.590 28777 28793 Info Unity [HOST]  track is videostreamtrack, setting OnVideoReceived.
    662. 2023.07.27 10:23:44.590 28777 28793 Info Unity WebRTCPhone:<SetUpPeerConnection>b__46_2(MediaStreamTrackEvent)
    663. 2023.07.27 10:23:44.590 28777 28793 Info Unity Unity.WebRTC.<>c__DisplayClass20_0:<MediaStreamOnAddTrack>b__0()
    664. 2023.07.27 10:23:44.590 28777 28793 Info Unity Unity.WebRTC.WebRTC:SendOrPostCallback(Object)
    665. 2023.07.27 10:23:44.590 28777 28793 Info Unity Unity.WebRTC.WorkRequest:Invoke()
    666. 2023.07.27 10:23:44.590 28777 28793 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:Execute()
    667. 2023.07.27 10:23:44.590 28777 28793 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:ExecuteAndAppendNextExecute()
    668. 2023.07.27 10:23:44.590 28777 28793 Info Unity UnityEngine.WorkRequest:Invoke()
    669. 2023.07.27 10:23:44.590 28777 28793 Info Unity UnityEngine.UnitySynchronizationContext:Exec()
    670. 2023.07.27 10:23:44.590 28777 28793 Info Unity
    671. 2023.07.27 10:23:44.768 28777 28793 Info Unity Receiving video...
    672. 2023.07.27 10:23:44.768 28777 28793 Info Unity WebRTCPhone:<SetUpPeerConnection>b__46_3(Texture)
    673. 2023.07.27 10:23:44.768 28777 28793 Info Unity Unity.WebRTC.<>c__DisplayClass14_0:<OnVideoFrameResize>b__0()
    674. 2023.07.27 10:23:44.768 28777 28793 Info Unity Unity.WebRTC.WebRTC:SendOrPostCallback(Object)
    675. 2023.07.27 10:23:44.768 28777 28793 Info Unity Unity.WebRTC.WorkRequest:Invoke()
    676. 2023.07.27 10:23:44.768 28777 28793 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:Execute()
    677. 2023.07.27 10:23:44.768 28777 28793 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:ExecuteAndAppendNextExecute()
    678. 2023.07.27 10:23:44.768 28777 28793 Info Unity UnityEngine.WorkRequest:Invoke()
    679. 2023.07.27 10:23:44.768 28777 28793 Info Unity UnityEngine.UnitySynchronizationContext:Exec()
    680. 2023.07.27 10:23:44.768 28777 28793 Info Unity
     
    Last edited: Jul 27, 2023
  43. KayH

    KayH

    Joined:
    Jan 6, 2017
    Posts:
    110
    I guess this thread might not be the best place to seek a solution for this problem. Should I make a new thread for it?
     
  44. gtk2k

    gtk2k

    Joined:
    Aug 13, 2014
    Posts:
    285
    Why is there a log for SetLocalDescription() but not for SetRemoteDescription() ?

    This is a sample for bi-directional streaming in Quest <-> Editor.
    Doesn't work on 2022.3.5f1. Try running it with Unity 2022.3.5f1 or earlier (2021 recommended).
    https://github.com/gtk2k/QuestStreaming
     
  45. KayH

    KayH

    Joined:
    Jan 6, 2017
    Posts:
    110
    Good catch, I'll look into that on Monday.
    I'm on Unity 2021.3.26f1.
     
  46. KayH

    KayH

    Joined:
    Jan 6, 2017
    Posts:
    110
    So I checked and actually there is, although it is badly worded on my part. It's "setClientDescription", which is supposed to refer to setting the remote description on the client side. Quest is the client. My bad, sorry:

    Code (CSharp):
    1. 2023.07.27 10:10:21.510 4574 4594 Info Unity setClientDescription start
    2. 2023.07.27 10:10:21.510 4574 4594 Info Unity <OnReceiveOffer>d__80:MoveNext()
    3. 2023.07.27 10:10:21.510 4574 4594 Info Unity UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr)
    4. 2023.07.27 10:10:21.510 4574 4594 Info Unity WebRTCPhone:ReceiveString(String)
    5. 2023.07.27 10:10:21.510 4574 4594 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceive(NetPeer, NetPacketReader, DeliveryMethod)
    6. 2023.07.27 10:10:21.510 4574 4594 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    7. 2023.07.27 10:10:21.510 4574 4594 Info Unity LiteNetLib.NetManager:PollEvents()
    8. 2023.07.27 10:10:21.510 4574 4594 Info Unity EyeChat:Update()
    9. 2023.07.27 10:10:21.510 4574 4594 Info Unity
    10. 2023.07.27 10:10:21.518 4574 4594 Info Unity [CLIENT]  OnTrack, add to receive stream.
    11. 2023.07.27 10:10:21.518 4574 4594 Info Unity WebRTCPhone:<SetUpPeerConnection>b__36_1(RTCTrackEvent)
    12. 2023.07.27 10:10:21.518 4574 4594 Info Unity Unity.WebRTC.<>c__DisplayClass55_0:<PCOnTrack>b__0()
    13. 2023.07.27 10:10:21.518 4574 4594 Info Unity Unity.WebRTC.WebRTC:SendOrPostCallback(Object)
    14. 2023.07.27 10:10:21.518 4574 4594 Info Unity Unity.WebRTC.WorkRequest:Invoke()
    15. 2023.07.27 10:10:21.518 4574 4594 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:Execute()
    16. 2023.07.27 10:10:21.518 4574 4594 Info Unity Unity.WebRTC.ExecutableUnitySynchronizationContext:ExecuteAndAppendNextExecute()
    17. 2023.07.27 10:10:21.518 4574 4594 Info Unity UnityEngine.WorkRequest:Invoke()
    18. 2023.07.27 10:10:21.518 4574 4594 Info Unity UnityEngine.UnitySynchronizationContext:Exec()
    19. 2023.07.27 10:10:21.518 4574 4594 Info Unity
    20. 2023.07.27 10:10:21.537 4574 4594 Info Unity Adding candidate: candidate:642383357 1 udp 2122262783 2a01:c22:c83e:f200:ddf5:f0a6:c5c6:9a08 51690 typ host generation 0 ufrag 5WHn network-id 4 network-cost 10
    21. 2023.07.27 10:10:21.537 4574 4594 Info Unity WebRTCPhone:AddCandidate(RTCIceCandidate)
    22. 2023.07.27 10:10:21.537 4574 4594 Info Unity WebRTCPhone:ReceiveString(String)
    23. 2023.07.27 10:10:21.537 4574 4594 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceive(NetPeer, NetPacketReader, DeliveryMethod)
    24. 2023.07.27 10:10:21.537 4574 4594 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    25. 2023.07.27 10:10:21.537 4574 4594 Info Unity LiteNetLib.NetManager:PollEvents()
    26. 2023.07.27 10:10:21.537 4574 4594 Info Unity EyeChat:Update()
    27. 2023.07.27 10:10:21.537 4574 4594 Info Unity
    28. 2023.07.27 10:10:21.539 4574 4594 Info Unity Adding candidate: candidate:397216082 1 udp 2122194687 192.168.1.99 50647 typ host generation 0 ufrag 5WHn network-id 3 network-cost 10
    29. 2023.07.27 10:10:21.539 4574 4594 Info Unity WebRTCPhone:AddCandidate(RTCIceCandidate)
    30. 2023.07.27 10:10:21.539 4574 4594 Info Unity WebRTCPhone:ReceiveString(String)
    31. 2023.07.27 10:10:21.539 4574 4594 Info Unity EyeChat:LiteNetLib.INetEventListener.OnNetworkReceive(NetPeer, NetPacketReader, DeliveryMethod)
    32. 2023.07.27 10:10:21.539 4574 4594 Info Unity LiteNetLib.NetManager:ProcessEvent(NetEvent)
    33. 2023.07.27 10:10:21.539 4574 4594 Info Unity LiteNetLib.NetManager:PollEvents()
    34. 2023.07.27 10:10:21.539 4574 4594 Info Unity EyeChat:Update()
    35. 2023.07.27 10:10:21.539 4574 4594 Info Unity
    36. 2023.07.27 10:10:21.540 4574 4594 Info Unity SetClientDescription complete
    37. 2023.07.27 10:10:21.540 4574 4594 Info Unity <OnReceiveOffer>d__80:MoveNext()
    38. 2023.07.27 10:10:21.540 4574 4594 Info Unity UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr)
    39. 2023.07.27 10:10:21.540 4574 4594 Info Unity
    40.  
     
  47. gtk2k

    gtk2k

    Joined:
    Aug 13, 2014
    Posts:
    285
    I think this is the log on the Quest side, but I would like you to show me the log on the Editor side.
    Also, I would like you to compare the behavior with the sample I uploaded.
     
  48. KayH

    KayH

    Joined:
    Jan 6, 2017
    Posts:
    110
    I will get back to you soon, hopefully. But for some reason LiteNetLib, which I use for the signalling process, cannot make a connection anymore between PC and the Android app. Which means no logs for the moment.

    I first encountered this problem last week, hoping it would remedy itself. I tried rebooting the PC, and using a different router. Neither helped. LiteNetLib uses UDP, maybe some Windows update caused this problem.
     
  49. KayH

    KayH

    Joined:
    Jan 6, 2017
    Posts:
    110
    I opened your sample as a new project with Unity 23.3.26f1. Since it was saved in a higher Unity version it had to be reimported. This caused the cs game object to have a missing script. I assume it should be CameraStreamer.cs, but adding it doesn't fill in the missing parameters. For cam I attached Main Camera, for display, the game object named display. I don't know what to use for the string signalingURL.

    It throws an empty string exception on the device.
     
  50. gtk2k

    gtk2k

    Joined:
    Aug 13, 2014
    Posts:
    285
    URL of the signaling server.
    This sample uses WebSocket for signaling, so set "ws://~" or "wss://~".