使用 google webrtc 我一直面临这个问题,这是创建视频源的代码
private VideoTrack getVideoTrack() {
this.capturer = createCapturer();
return factory.createVideoTrack("video1", factory.createVideoSource(this.capturer));
}
但我遇到了一个错误
'createVideoSource(boolean)' in 'org.webrtc.PeerConnectionFactory' cannot be applied to '(org.webrtc.CameraVideoCapturer)'
知道为什么它会出错吗?
谢谢。