Michael Kitange
Results
1
issues of
Michael Kitange
```kotlin val peerConnectionFactory = PeerConnectionFactory(audioDeviceModule) val customVideoSource = CustomVideoSource() val customTrack = peerConnectionFactory.createVideoTrack("custom-src", customVideoSource) connection = peerConnectionFactory.createPeerConnection(config, peerObserver) connection.addTrack(customTrack, listOf(customTrack.id)) val data = //generate yuv frame byte array val nativeI420Buffer...