Unity-Technologies / com.unity.webrtc

WebRTC package for Unity
Other
738 stars 185 forks source link

fix: Fix the issue that video streaming doesn't work from camera device on Android #945

Closed karasusan closed 11 months ago

karasusan commented 11 months ago

Since Unity 2022.1, WebCamTexture.graphicsFormat returns R8G8B8A8_SRGB on Android Vulkan. WebRTC doesn't support this graphics format when using Vulkan, and throw exception.

To make workaround, created another texture and copy texture in every frame to convert graphics format whch is supported by WebRTC package.