@sbhjt-gr/react-native-webrtc 124.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.clang-format +11 -0
- package/.claude/settings.local.json +9 -0
- package/.eslintignore +6 -0
- package/.nvmrc +1 -0
- package/ISSUE_TEMPLATE.md +40 -0
- package/LICENSE +22 -0
- package/README.md +103 -0
- package/android/build.gradle +37 -0
- package/android/consumer-rules.pro +3 -0
- package/android/src/main/AndroidManifest.xml +11 -0
- package/android/src/main/java/com/oney/WebRTCModule/AbstractVideoCaptureController.java +113 -0
- package/android/src/main/java/com/oney/WebRTCModule/CameraCaptureController.java +338 -0
- package/android/src/main/java/com/oney/WebRTCModule/CameraEventsHandler.java +49 -0
- package/android/src/main/java/com/oney/WebRTCModule/DataChannelWrapper.java +99 -0
- package/android/src/main/java/com/oney/WebRTCModule/DataPacketCryptorManager.java +63 -0
- package/android/src/main/java/com/oney/WebRTCModule/DisplayUtils.java +16 -0
- package/android/src/main/java/com/oney/WebRTCModule/EglUtils.java +66 -0
- package/android/src/main/java/com/oney/WebRTCModule/GetUserMediaImpl.java +539 -0
- package/android/src/main/java/com/oney/WebRTCModule/LibraryLoader.java +21 -0
- package/android/src/main/java/com/oney/WebRTCModule/MediaProjectionNotification.java +70 -0
- package/android/src/main/java/com/oney/WebRTCModule/MediaProjectionService.java +82 -0
- package/android/src/main/java/com/oney/WebRTCModule/PeerConnectionObserver.java +588 -0
- package/android/src/main/java/com/oney/WebRTCModule/RTCCryptoManager.java +493 -0
- package/android/src/main/java/com/oney/WebRTCModule/RTCVideoViewManager.java +98 -0
- package/android/src/main/java/com/oney/WebRTCModule/ReactBridgeUtil.java +36 -0
- package/android/src/main/java/com/oney/WebRTCModule/ScreenCaptureController.java +94 -0
- package/android/src/main/java/com/oney/WebRTCModule/SerializeUtils.java +342 -0
- package/android/src/main/java/com/oney/WebRTCModule/StringUtils.java +101 -0
- package/android/src/main/java/com/oney/WebRTCModule/ThreadUtils.java +41 -0
- package/android/src/main/java/com/oney/WebRTCModule/TrackCapturerEventsEmitter.java +34 -0
- package/android/src/main/java/com/oney/WebRTCModule/VideoTrackAdapter.java +137 -0
- package/android/src/main/java/com/oney/WebRTCModule/WebRTCModule.java +1643 -0
- package/android/src/main/java/com/oney/WebRTCModule/WebRTCModuleOptions.java +33 -0
- package/android/src/main/java/com/oney/WebRTCModule/WebRTCModulePackage.java +21 -0
- package/android/src/main/java/com/oney/WebRTCModule/WebRTCView.java +583 -0
- package/android/src/main/java/com/oney/WebRTCModule/palabra/PalabraClient.java +464 -0
- package/android/src/main/java/com/oney/WebRTCModule/palabra/PalabraConfig.java +17 -0
- package/android/src/main/java/com/oney/WebRTCModule/palabra/PalabraListener.java +7 -0
- package/android/src/main/java/com/oney/WebRTCModule/videoEffects/ProcessorProvider.java +38 -0
- package/android/src/main/java/com/oney/WebRTCModule/videoEffects/VideoEffectProcessor.java +59 -0
- package/android/src/main/java/com/oney/WebRTCModule/videoEffects/VideoFrameProcessor.java +19 -0
- package/android/src/main/java/com/oney/WebRTCModule/videoEffects/VideoFrameProcessorFactoryInterface.java +12 -0
- package/android/src/main/java/com/oney/WebRTCModule/webrtcutils/H264AndSoftwareVideoDecoderFactory.java +73 -0
- package/android/src/main/java/com/oney/WebRTCModule/webrtcutils/H264AndSoftwareVideoEncoderFactory.java +73 -0
- package/android/src/main/java/com/oney/WebRTCModule/webrtcutils/SoftwareVideoDecoderFactoryProxy.java +36 -0
- package/android/src/main/java/com/oney/WebRTCModule/webrtcutils/SoftwareVideoEncoderFactoryProxy.java +36 -0
- package/android/src/main/java/org/webrtc/Camera1Helper.java +54 -0
- package/android/src/main/java/org/webrtc/Camera2Helper.java +52 -0
- package/android/src/main/res/values/strings.xml +5 -0
- package/android/src/main/res/values/styles.xml +8 -0
- package/apple/.placeholder +0 -0
- package/ios/RCTWebRTC/CaptureController.h +18 -0
- package/ios/RCTWebRTC/CaptureController.m +29 -0
- package/ios/RCTWebRTC/CapturerEventsDelegate.h +12 -0
- package/ios/RCTWebRTC/DataChannelWrapper.h +27 -0
- package/ios/RCTWebRTC/DataChannelWrapper.m +42 -0
- package/ios/RCTWebRTC/I420Converter.h +22 -0
- package/ios/RCTWebRTC/I420Converter.m +164 -0
- package/ios/RCTWebRTC/PIPController.h +24 -0
- package/ios/RCTWebRTC/PIPController.m +234 -0
- package/ios/RCTWebRTC/PalabraAudioSink.h +13 -0
- package/ios/RCTWebRTC/PalabraAudioSink.m +18 -0
- package/ios/RCTWebRTC/PalabraClient.h +36 -0
- package/ios/RCTWebRTC/PalabraClient.m +584 -0
- package/ios/RCTWebRTC/RCTConvert+WebRTC.h +16 -0
- package/ios/RCTWebRTC/RCTConvert+WebRTC.m +206 -0
- package/ios/RCTWebRTC/RTCMediaStreamTrack+React.h +10 -0
- package/ios/RCTWebRTC/RTCMediaStreamTrack+React.m +16 -0
- package/ios/RCTWebRTC/RTCVideoViewManager.h +29 -0
- package/ios/RCTWebRTC/RTCVideoViewManager.m +411 -0
- package/ios/RCTWebRTC/SampleBufferVideoCallView.h +12 -0
- package/ios/RCTWebRTC/SampleBufferVideoCallView.m +178 -0
- package/ios/RCTWebRTC/ScreenCaptureController.h +20 -0
- package/ios/RCTWebRTC/ScreenCaptureController.m +83 -0
- package/ios/RCTWebRTC/ScreenCapturePickerViewManager.h +7 -0
- package/ios/RCTWebRTC/ScreenCapturePickerViewManager.m +60 -0
- package/ios/RCTWebRTC/ScreenCapturer.h +19 -0
- package/ios/RCTWebRTC/ScreenCapturer.m +264 -0
- package/ios/RCTWebRTC/SerializeUtils.h +28 -0
- package/ios/RCTWebRTC/SerializeUtils.m +314 -0
- package/ios/RCTWebRTC/SocketConnection.h +13 -0
- package/ios/RCTWebRTC/SocketConnection.m +137 -0
- package/ios/RCTWebRTC/TrackCapturerEventsEmitter.h +14 -0
- package/ios/RCTWebRTC/TrackCapturerEventsEmitter.m +37 -0
- package/ios/RCTWebRTC/VideoCaptureController.h +21 -0
- package/ios/RCTWebRTC/VideoCaptureController.m +328 -0
- package/ios/RCTWebRTC/WebRTCModule+Palabra.h +4 -0
- package/ios/RCTWebRTC/WebRTCModule+Palabra.m +83 -0
- package/ios/RCTWebRTC/WebRTCModule+Permissions.m +75 -0
- package/ios/RCTWebRTC/WebRTCModule+RTCAudioSession.m +20 -0
- package/ios/RCTWebRTC/WebRTCModule+RTCDataChannel.h +14 -0
- package/ios/RCTWebRTC/WebRTCModule+RTCDataChannel.m +165 -0
- package/ios/RCTWebRTC/WebRTCModule+RTCFrameCryptor.m +611 -0
- package/ios/RCTWebRTC/WebRTCModule+RTCMediaStream.h +14 -0
- package/ios/RCTWebRTC/WebRTCModule+RTCMediaStream.m +533 -0
- package/ios/RCTWebRTC/WebRTCModule+RTCPeerConnection.h +24 -0
- package/ios/RCTWebRTC/WebRTCModule+RTCPeerConnection.m +1004 -0
- package/ios/RCTWebRTC/WebRTCModule+Transceivers.m +267 -0
- package/ios/RCTWebRTC/WebRTCModule+VideoTrackAdapter.h +12 -0
- package/ios/RCTWebRTC/WebRTCModule+VideoTrackAdapter.m +166 -0
- package/ios/RCTWebRTC/WebRTCModule.h +51 -0
- package/ios/RCTWebRTC/WebRTCModule.m +151 -0
- package/ios/RCTWebRTC/WebRTCModuleOptions.h +24 -0
- package/ios/RCTWebRTC/WebRTCModuleOptions.m +31 -0
- package/ios/RCTWebRTC/videoEffects/ProcessorProvider.h +9 -0
- package/ios/RCTWebRTC/videoEffects/ProcessorProvider.m +23 -0
- package/ios/RCTWebRTC/videoEffects/VideoEffectProcessor.h +13 -0
- package/ios/RCTWebRTC/videoEffects/VideoEffectProcessor.m +23 -0
- package/ios/RCTWebRTC/videoEffects/VideoFrameProcessor.h +8 -0
- package/ios/RCTWebRTC.xcodeproj/project.pbxproj +404 -0
- package/ios/RCTWebRTC.xcworkspace/contents.xcworkspacedata +10 -0
- package/lib/commonjs/Constraints.js +2 -0
- package/lib/commonjs/Constraints.js.map +1 -0
- package/lib/commonjs/EventEmitter.js +51 -0
- package/lib/commonjs/EventEmitter.js.map +1 -0
- package/lib/commonjs/Logger.js +47 -0
- package/lib/commonjs/Logger.js.map +1 -0
- package/lib/commonjs/MediaDevices.js +54 -0
- package/lib/commonjs/MediaDevices.js.map +1 -0
- package/lib/commonjs/MediaStream.js +137 -0
- package/lib/commonjs/MediaStream.js.map +1 -0
- package/lib/commonjs/MediaStreamError.js +19 -0
- package/lib/commonjs/MediaStreamError.js.map +1 -0
- package/lib/commonjs/MediaStreamErrorEvent.js +17 -0
- package/lib/commonjs/MediaStreamErrorEvent.js.map +1 -0
- package/lib/commonjs/MediaStreamTrack.js +203 -0
- package/lib/commonjs/MediaStreamTrack.js.map +1 -0
- package/lib/commonjs/MediaStreamTrackEvent.js +26 -0
- package/lib/commonjs/MediaStreamTrackEvent.js.map +1 -0
- package/lib/commonjs/MessageEvent.js +27 -0
- package/lib/commonjs/MessageEvent.js.map +1 -0
- package/lib/commonjs/Permissions.js +116 -0
- package/lib/commonjs/Permissions.js.map +1 -0
- package/lib/commonjs/RTCAudioSession.js +33 -0
- package/lib/commonjs/RTCAudioSession.js.map +1 -0
- package/lib/commonjs/RTCDataChannel.js +165 -0
- package/lib/commonjs/RTCDataChannel.js.map +1 -0
- package/lib/commonjs/RTCDataChannelEvent.js +26 -0
- package/lib/commonjs/RTCDataChannelEvent.js.map +1 -0
- package/lib/commonjs/RTCDataPacketCryptor.js +76 -0
- package/lib/commonjs/RTCDataPacketCryptor.js.map +1 -0
- package/lib/commonjs/RTCDataPacketCryptorFactory.js +27 -0
- package/lib/commonjs/RTCDataPacketCryptorFactory.js.map +1 -0
- package/lib/commonjs/RTCErrorEvent.js +23 -0
- package/lib/commonjs/RTCErrorEvent.js.map +1 -0
- package/lib/commonjs/RTCFrameCryptor.js +138 -0
- package/lib/commonjs/RTCFrameCryptor.js.map +1 -0
- package/lib/commonjs/RTCFrameCryptorFactory.js +81 -0
- package/lib/commonjs/RTCFrameCryptorFactory.js.map +1 -0
- package/lib/commonjs/RTCIceCandidate.js +34 -0
- package/lib/commonjs/RTCIceCandidate.js.map +1 -0
- package/lib/commonjs/RTCIceCandidateEvent.js +28 -0
- package/lib/commonjs/RTCIceCandidateEvent.js.map +1 -0
- package/lib/commonjs/RTCKeyProvider.js +111 -0
- package/lib/commonjs/RTCKeyProvider.js.map +1 -0
- package/lib/commonjs/RTCPIPView.js +38 -0
- package/lib/commonjs/RTCPIPView.js.map +1 -0
- package/lib/commonjs/RTCPIPView.web.js +23 -0
- package/lib/commonjs/RTCPIPView.web.js.map +1 -0
- package/lib/commonjs/RTCPeerConnection.js +694 -0
- package/lib/commonjs/RTCPeerConnection.js.map +1 -0
- package/lib/commonjs/RTCRtcpParameters.js +24 -0
- package/lib/commonjs/RTCRtcpParameters.js.map +1 -0
- package/lib/commonjs/RTCRtpCapabilities.js +22 -0
- package/lib/commonjs/RTCRtpCapabilities.js.map +1 -0
- package/lib/commonjs/RTCRtpCodecCapability.js +19 -0
- package/lib/commonjs/RTCRtpCodecCapability.js.map +1 -0
- package/lib/commonjs/RTCRtpCodecParameters.js +38 -0
- package/lib/commonjs/RTCRtpCodecParameters.js.map +1 -0
- package/lib/commonjs/RTCRtpEncodingParameters.js +78 -0
- package/lib/commonjs/RTCRtpEncodingParameters.js.map +1 -0
- package/lib/commonjs/RTCRtpHeaderExtension.js +27 -0
- package/lib/commonjs/RTCRtpHeaderExtension.js.map +1 -0
- package/lib/commonjs/RTCRtpParameters.js +35 -0
- package/lib/commonjs/RTCRtpParameters.js.map +1 -0
- package/lib/commonjs/RTCRtpReceiveParameters.js +15 -0
- package/lib/commonjs/RTCRtpReceiveParameters.js.map +1 -0
- package/lib/commonjs/RTCRtpReceiver.js +53 -0
- package/lib/commonjs/RTCRtpReceiver.js.map +1 -0
- package/lib/commonjs/RTCRtpSendParameters.js +49 -0
- package/lib/commonjs/RTCRtpSendParameters.js.map +1 -0
- package/lib/commonjs/RTCRtpSender.js +67 -0
- package/lib/commonjs/RTCRtpSender.js.map +1 -0
- package/lib/commonjs/RTCRtpTransceiver.js +81 -0
- package/lib/commonjs/RTCRtpTransceiver.js.map +1 -0
- package/lib/commonjs/RTCSessionDescription.js +33 -0
- package/lib/commonjs/RTCSessionDescription.js.map +1 -0
- package/lib/commonjs/RTCTrackEvent.js +38 -0
- package/lib/commonjs/RTCTrackEvent.js.map +1 -0
- package/lib/commonjs/RTCUtil.js +186 -0
- package/lib/commonjs/RTCUtil.js.map +1 -0
- package/lib/commonjs/RTCView.js +16 -0
- package/lib/commonjs/RTCView.js.map +1 -0
- package/lib/commonjs/RTCView.web.js +62 -0
- package/lib/commonjs/RTCView.web.js.map +1 -0
- package/lib/commonjs/ScreenCapturePickerView.js +10 -0
- package/lib/commonjs/ScreenCapturePickerView.js.map +1 -0
- package/lib/commonjs/ScreenCapturePickerView.web.js +10 -0
- package/lib/commonjs/ScreenCapturePickerView.web.js.map +1 -0
- package/lib/commonjs/getDisplayMedia.js +33 -0
- package/lib/commonjs/getDisplayMedia.js.map +1 -0
- package/lib/commonjs/getUserMedia.js +101 -0
- package/lib/commonjs/getUserMedia.js.map +1 -0
- package/lib/commonjs/index.js +224 -0
- package/lib/commonjs/index.js.map +1 -0
- package/lib/commonjs/index.web.js +175 -0
- package/lib/commonjs/index.web.js.map +1 -0
- package/lib/commonjs/webStream.js +35 -0
- package/lib/commonjs/webStream.js.map +1 -0
- package/lib/module/Constraints.js +2 -0
- package/lib/module/Constraints.js.map +1 -0
- package/lib/module/EventEmitter.js +41 -0
- package/lib/module/EventEmitter.js.map +1 -0
- package/lib/module/Logger.js +39 -0
- package/lib/module/Logger.js.map +1 -0
- package/lib/module/MediaDevices.js +46 -0
- package/lib/module/MediaDevices.js.map +1 -0
- package/lib/module/MediaStream.js +129 -0
- package/lib/module/MediaStream.js.map +1 -0
- package/lib/module/MediaStreamError.js +12 -0
- package/lib/module/MediaStreamError.js.map +1 -0
- package/lib/module/MediaStreamErrorEvent.js +10 -0
- package/lib/module/MediaStreamErrorEvent.js.map +1 -0
- package/lib/module/MediaStreamTrack.js +195 -0
- package/lib/module/MediaStreamTrack.js.map +1 -0
- package/lib/module/MediaStreamTrackEvent.js +19 -0
- package/lib/module/MediaStreamTrackEvent.js.map +1 -0
- package/lib/module/MessageEvent.js +20 -0
- package/lib/module/MessageEvent.js.map +1 -0
- package/lib/module/Permissions.js +109 -0
- package/lib/module/Permissions.js.map +1 -0
- package/lib/module/RTCAudioSession.js +26 -0
- package/lib/module/RTCAudioSession.js.map +1 -0
- package/lib/module/RTCDataChannel.js +155 -0
- package/lib/module/RTCDataChannel.js.map +1 -0
- package/lib/module/RTCDataChannelEvent.js +19 -0
- package/lib/module/RTCDataChannelEvent.js.map +1 -0
- package/lib/module/RTCDataPacketCryptor.js +66 -0
- package/lib/module/RTCDataPacketCryptor.js.map +1 -0
- package/lib/module/RTCDataPacketCryptorFactory.js +19 -0
- package/lib/module/RTCDataPacketCryptorFactory.js.map +1 -0
- package/lib/module/RTCErrorEvent.js +16 -0
- package/lib/module/RTCErrorEvent.js.map +1 -0
- package/lib/module/RTCFrameCryptor.js +128 -0
- package/lib/module/RTCFrameCryptor.js.map +1 -0
- package/lib/module/RTCFrameCryptorFactory.js +70 -0
- package/lib/module/RTCFrameCryptorFactory.js.map +1 -0
- package/lib/module/RTCIceCandidate.js +27 -0
- package/lib/module/RTCIceCandidate.js.map +1 -0
- package/lib/module/RTCIceCandidateEvent.js +21 -0
- package/lib/module/RTCIceCandidateEvent.js.map +1 -0
- package/lib/module/RTCKeyProvider.js +101 -0
- package/lib/module/RTCKeyProvider.js.map +1 -0
- package/lib/module/RTCPIPView.js +26 -0
- package/lib/module/RTCPIPView.js.map +1 -0
- package/lib/module/RTCPIPView.web.js +11 -0
- package/lib/module/RTCPIPView.web.js.map +1 -0
- package/lib/module/RTCPeerConnection.js +684 -0
- package/lib/module/RTCPeerConnection.js.map +1 -0
- package/lib/module/RTCRtcpParameters.js +17 -0
- package/lib/module/RTCRtcpParameters.js.map +1 -0
- package/lib/module/RTCRtpCapabilities.js +15 -0
- package/lib/module/RTCRtpCapabilities.js.map +1 -0
- package/lib/module/RTCRtpCodecCapability.js +12 -0
- package/lib/module/RTCRtpCodecCapability.js.map +1 -0
- package/lib/module/RTCRtpCodecParameters.js +31 -0
- package/lib/module/RTCRtpCodecParameters.js.map +1 -0
- package/lib/module/RTCRtpEncodingParameters.js +71 -0
- package/lib/module/RTCRtpEncodingParameters.js.map +1 -0
- package/lib/module/RTCRtpHeaderExtension.js +20 -0
- package/lib/module/RTCRtpHeaderExtension.js.map +1 -0
- package/lib/module/RTCRtpParameters.js +27 -0
- package/lib/module/RTCRtpParameters.js.map +1 -0
- package/lib/module/RTCRtpReceiveParameters.js +7 -0
- package/lib/module/RTCRtpReceiveParameters.js.map +1 -0
- package/lib/module/RTCRtpReceiver.js +45 -0
- package/lib/module/RTCRtpReceiver.js.map +1 -0
- package/lib/module/RTCRtpSendParameters.js +41 -0
- package/lib/module/RTCRtpSendParameters.js.map +1 -0
- package/lib/module/RTCRtpSender.js +59 -0
- package/lib/module/RTCRtpSender.js.map +1 -0
- package/lib/module/RTCRtpTransceiver.js +74 -0
- package/lib/module/RTCRtpTransceiver.js.map +1 -0
- package/lib/module/RTCSessionDescription.js +26 -0
- package/lib/module/RTCSessionDescription.js.map +1 -0
- package/lib/module/RTCTrackEvent.js +31 -0
- package/lib/module/RTCTrackEvent.js.map +1 -0
- package/lib/module/RTCUtil.js +176 -0
- package/lib/module/RTCUtil.js.map +1 -0
- package/lib/module/RTCView.js +11 -0
- package/lib/module/RTCView.js.map +1 -0
- package/lib/module/RTCView.web.js +54 -0
- package/lib/module/RTCView.web.js.map +1 -0
- package/lib/module/ScreenCapturePickerView.js +3 -0
- package/lib/module/ScreenCapturePickerView.js.map +1 -0
- package/lib/module/ScreenCapturePickerView.web.js +4 -0
- package/lib/module/ScreenCapturePickerView.web.js.map +1 -0
- package/lib/module/getDisplayMedia.js +26 -0
- package/lib/module/getDisplayMedia.js.map +1 -0
- package/lib/module/getUserMedia.js +92 -0
- package/lib/module/getUserMedia.js.map +1 -0
- package/lib/module/index.js +60 -0
- package/lib/module/index.js.map +1 -0
- package/lib/module/index.web.js +114 -0
- package/lib/module/index.web.js.map +1 -0
- package/lib/module/webStream.js +27 -0
- package/lib/module/webStream.js.map +1 -0
- package/lib/typescript/Constraints.d.ts +19 -0
- package/lib/typescript/EventEmitter.d.ts +6 -0
- package/lib/typescript/Logger.d.ts +13 -0
- package/lib/typescript/MediaDevices.d.ts +30 -0
- package/lib/typescript/MediaStream.d.ts +48 -0
- package/lib/typescript/MediaStreamError.d.ts +6 -0
- package/lib/typescript/MediaStreamErrorEvent.d.ts +6 -0
- package/lib/typescript/MediaStreamTrack.d.ts +101 -0
- package/lib/typescript/MediaStreamTrackEvent.d.ts +19 -0
- package/lib/typescript/MessageEvent.d.ts +20 -0
- package/lib/typescript/Permissions.d.ts +55 -0
- package/lib/typescript/RTCAudioSession.d.ts +10 -0
- package/lib/typescript/RTCDataChannel.d.ts +43 -0
- package/lib/typescript/RTCDataChannelEvent.d.ts +19 -0
- package/lib/typescript/RTCDataPacketCryptor.d.ts +12 -0
- package/lib/typescript/RTCDataPacketCryptorFactory.d.ts +6 -0
- package/lib/typescript/RTCErrorEvent.d.ts +12 -0
- package/lib/typescript/RTCFrameCryptor.d.ts +47 -0
- package/lib/typescript/RTCFrameCryptorFactory.d.ts +21 -0
- package/lib/typescript/RTCIceCandidate.d.ts +17 -0
- package/lib/typescript/RTCIceCandidateEvent.d.ts +20 -0
- package/lib/typescript/RTCKeyProvider.d.ts +21 -0
- package/lib/typescript/RTCPIPView.d.ts +15 -0
- package/lib/typescript/RTCPIPView.web.d.ts +13 -0
- package/lib/typescript/RTCPeerConnection.d.ts +117 -0
- package/lib/typescript/RTCRtcpParameters.d.ts +10 -0
- package/lib/typescript/RTCRtpCapabilities.d.ts +9 -0
- package/lib/typescript/RTCRtpCodecCapability.d.ts +7 -0
- package/lib/typescript/RTCRtpCodecParameters.d.ts +16 -0
- package/lib/typescript/RTCRtpEncodingParameters.d.ts +23 -0
- package/lib/typescript/RTCRtpHeaderExtension.d.ts +12 -0
- package/lib/typescript/RTCRtpParameters.d.ts +19 -0
- package/lib/typescript/RTCRtpReceiveParameters.d.ts +4 -0
- package/lib/typescript/RTCRtpReceiver.d.ts +21 -0
- package/lib/typescript/RTCRtpSendParameters.d.ts +20 -0
- package/lib/typescript/RTCRtpSender.d.ts +22 -0
- package/lib/typescript/RTCRtpTransceiver.d.ts +31 -0
- package/lib/typescript/RTCSessionDescription.d.ts +12 -0
- package/lib/typescript/RTCTrackEvent.d.ts +29 -0
- package/lib/typescript/RTCUtil.d.ts +37 -0
- package/lib/typescript/RTCView.d.ts +117 -0
- package/lib/typescript/RTCView.web.d.ts +25 -0
- package/lib/typescript/ScreenCapturePickerView.d.ts +2 -0
- package/lib/typescript/ScreenCapturePickerView.web.d.ts +1 -0
- package/lib/typescript/getDisplayMedia.d.ts +2 -0
- package/lib/typescript/getUserMedia.d.ts +7 -0
- package/lib/typescript/index.d.ts +22 -0
- package/lib/typescript/index.web.d.ts +101 -0
- package/lib/typescript/webStream.d.ts +3 -0
- package/livekit-react-native-webrtc.podspec +29 -0
- package/macos/RCTWebRTC.xcodeproj/project.pbxproj +324 -0
- package/macos/RCTWebRTC.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/macos/RCTWebRTC.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/metro.config.js +7 -0
- package/metro.config.macos.js +14 -0
- package/package.json +66 -0
- package/react-native.config.js +11 -0
- package/src/.eslintrc.cjs +67 -0
- package/src/Constraints.ts +21 -0
- package/src/EventEmitter.ts +65 -0
- package/src/Logger.ts +49 -0
- package/src/MediaDevices.ts +53 -0
- package/src/MediaStream.ts +161 -0
- package/src/MediaStreamError.ts +12 -0
- package/src/MediaStreamErrorEvent.ts +11 -0
- package/src/MediaStreamTrack.ts +284 -0
- package/src/MediaStreamTrackEvent.ts +25 -0
- package/src/MessageEvent.ts +26 -0
- package/src/Permissions.ts +133 -0
- package/src/RTCAudioSession.ts +25 -0
- package/src/RTCDataChannel.ts +190 -0
- package/src/RTCDataChannelEvent.ts +28 -0
- package/src/RTCDataPacketCryptor.ts +90 -0
- package/src/RTCDataPacketCryptorFactory.ts +25 -0
- package/src/RTCErrorEvent.ts +21 -0
- package/src/RTCFrameCryptor.ts +163 -0
- package/src/RTCFrameCryptorFactory.ts +102 -0
- package/src/RTCIceCandidate.ts +29 -0
- package/src/RTCIceCandidateEvent.ts +26 -0
- package/src/RTCKeyProvider.ts +117 -0
- package/src/RTCPIPView.tsx +47 -0
- package/src/RTCPIPView.web.tsx +18 -0
- package/src/RTCPeerConnection.ts +832 -0
- package/src/RTCRtcpParameters.ts +23 -0
- package/src/RTCRtpCapabilities.ts +16 -0
- package/src/RTCRtpCodecCapability.ts +13 -0
- package/src/RTCRtpCodecParameters.ts +44 -0
- package/src/RTCRtpEncodingParameters.ts +90 -0
- package/src/RTCRtpHeaderExtension.ts +27 -0
- package/src/RTCRtpParameters.ts +37 -0
- package/src/RTCRtpReceiveParameters.ts +7 -0
- package/src/RTCRtpReceiver.ts +60 -0
- package/src/RTCRtpSendParameters.ts +63 -0
- package/src/RTCRtpSender.ts +78 -0
- package/src/RTCRtpTransceiver.ts +107 -0
- package/src/RTCSessionDescription.ts +30 -0
- package/src/RTCTrackEvent.ts +42 -0
- package/src/RTCUtil.ts +211 -0
- package/src/RTCView.ts +122 -0
- package/src/RTCView.web.tsx +82 -0
- package/src/ScreenCapturePickerView.ts +4 -0
- package/src/ScreenCapturePickerView.web.tsx +3 -0
- package/src/getDisplayMedia.ts +30 -0
- package/src/getUserMedia.ts +111 -0
- package/src/index.ts +107 -0
- package/src/index.web.ts +191 -0
- package/src/webStream.ts +33 -0
- package/tools/format.sh +6 -0
- package/tools/release.sh +45 -0
- package/tsconfig.json +17 -0
|
@@ -0,0 +1,267 @@
|
|
|
1
|
+
#import <objc/runtime.h>
|
|
2
|
+
|
|
3
|
+
#import <React/RCTBridge.h>
|
|
4
|
+
#import <React/RCTBridgeModule.h>
|
|
5
|
+
|
|
6
|
+
#import <WebRTC/RTCRtpCodecCapability.h>
|
|
7
|
+
#import <WebRTC/RTCRtpReceiver.h>
|
|
8
|
+
#import <WebRTC/RTCRtpSender.h>
|
|
9
|
+
|
|
10
|
+
#import "SerializeUtils.h"
|
|
11
|
+
#import "WebRTCModule.h"
|
|
12
|
+
|
|
13
|
+
@implementation WebRTCModule (Transceivers)
|
|
14
|
+
|
|
15
|
+
RCT_EXPORT_BLOCKING_SYNCHRONOUS_METHOD(senderGetCapabilities : (NSString *)kind) {
|
|
16
|
+
__block id params;
|
|
17
|
+
|
|
18
|
+
dispatch_sync(self.workerQueue, ^{
|
|
19
|
+
RTCRtpCapabilities *capabilities = [self.peerConnectionFactory rtpSenderCapabilitiesForKind:kind];
|
|
20
|
+
params = [SerializeUtils capabilitiesToJSON:capabilities];
|
|
21
|
+
});
|
|
22
|
+
|
|
23
|
+
return params;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
RCT_EXPORT_BLOCKING_SYNCHRONOUS_METHOD(receiverGetCapabilities : (NSString *)kind) {
|
|
27
|
+
__block id params;
|
|
28
|
+
|
|
29
|
+
dispatch_sync(self.workerQueue, ^{
|
|
30
|
+
RTCRtpCapabilities *capabilities = [self.peerConnectionFactory rtpReceiverCapabilitiesForKind:kind];
|
|
31
|
+
params = [SerializeUtils capabilitiesToJSON:capabilities];
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
return params;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
RCT_EXPORT_METHOD(senderReplaceTrack
|
|
38
|
+
: (nonnull NSNumber *)objectID senderId
|
|
39
|
+
: (NSString *)senderId trackId
|
|
40
|
+
: (NSString *)trackId resolver
|
|
41
|
+
: (RCTPromiseResolveBlock)resolve rejecter
|
|
42
|
+
: (RCTPromiseRejectBlock)reject) {
|
|
43
|
+
RTCPeerConnection *peerConnection = self.peerConnections[objectID];
|
|
44
|
+
|
|
45
|
+
if (peerConnection == nil) {
|
|
46
|
+
RCTLogWarn(@"PeerConnection %@ not found in senderReplaceTrack()", objectID);
|
|
47
|
+
reject(@"E_INVALID", @"Peer Connection is not initialized", nil);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
RTCRtpTransceiver *transceiver = nil;
|
|
51
|
+
for (RTCRtpTransceiver *t in peerConnection.transceivers) {
|
|
52
|
+
if ([senderId isEqual:t.sender.senderId]) {
|
|
53
|
+
transceiver = t;
|
|
54
|
+
break;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
if (transceiver == nil) {
|
|
59
|
+
RCTLogWarn(@"senderReplaceTrack() transceiver is null");
|
|
60
|
+
reject(@"E_INVALID", @"Could not get transceive", nil);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
RTCRtpSender *sender = transceiver.sender;
|
|
64
|
+
RTCMediaStreamTrack *track = self.localTracks[trackId];
|
|
65
|
+
[sender setTrack:track];
|
|
66
|
+
resolve(@true);
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
RCT_EXPORT_METHOD(senderSetParameters
|
|
70
|
+
: (nonnull NSNumber *)objectID senderId
|
|
71
|
+
: (NSString *)senderId options
|
|
72
|
+
: (NSDictionary *)options resolver
|
|
73
|
+
: (RCTPromiseResolveBlock)resolve rejecter
|
|
74
|
+
: (RCTPromiseRejectBlock)reject) {
|
|
75
|
+
RTCPeerConnection *peerConnection = self.peerConnections[objectID];
|
|
76
|
+
|
|
77
|
+
if (peerConnection == nil) {
|
|
78
|
+
RCTLogWarn(@"PeerConnection %@ not found in senderSetParameters()", objectID);
|
|
79
|
+
reject(@"E_INVALID", @"Peer Connection is not initialized", nil);
|
|
80
|
+
return;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
RTCRtpTransceiver *transceiver = nil;
|
|
84
|
+
for (RTCRtpTransceiver *t in peerConnection.transceivers) {
|
|
85
|
+
if ([senderId isEqual:t.sender.senderId]) {
|
|
86
|
+
transceiver = t;
|
|
87
|
+
break;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
if (transceiver == nil) {
|
|
92
|
+
RCTLogWarn(@"senderSetParameters() transceiver is null");
|
|
93
|
+
reject(@"E_INVALID", @"Could not get transceiver", nil);
|
|
94
|
+
return;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
RTCRtpSender *sender = transceiver.sender;
|
|
98
|
+
RTCRtpParameters *parameters = sender.parameters;
|
|
99
|
+
[sender setParameters:[self updateParametersWithOptions:options params:parameters]];
|
|
100
|
+
|
|
101
|
+
resolve([SerializeUtils parametersToJSON:sender.parameters]);
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
RCT_EXPORT_METHOD(transceiverSetDirection
|
|
105
|
+
: (nonnull NSNumber *)objectID senderId
|
|
106
|
+
: (NSString *)senderId direction
|
|
107
|
+
: (NSString *)direction resolver
|
|
108
|
+
: (RCTPromiseResolveBlock)resolve rejecter
|
|
109
|
+
: (RCTPromiseRejectBlock)reject) {
|
|
110
|
+
RTCPeerConnection *peerConnection = self.peerConnections[objectID];
|
|
111
|
+
|
|
112
|
+
if (peerConnection == nil) {
|
|
113
|
+
RCTLogWarn(@"transceiverSetDirection() PeerConnection %@ not found in transceiverSetDirection()", objectID);
|
|
114
|
+
reject(@"E_INVALID", @"Peer Connection is not initialized", nil);
|
|
115
|
+
return;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
RTCRtpTransceiver *transceiver = nil;
|
|
119
|
+
for (RTCRtpTransceiver *t in peerConnection.transceivers) {
|
|
120
|
+
if ([senderId isEqual:t.sender.senderId]) {
|
|
121
|
+
transceiver = t;
|
|
122
|
+
break;
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
if (transceiver == nil) {
|
|
127
|
+
RCTLogWarn(@"transceiverSetDirection() transceiver is null");
|
|
128
|
+
reject(@"E_INVALID", @"Could not get transceiver", nil);
|
|
129
|
+
return;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
NSError *error;
|
|
133
|
+
[transceiver setDirection:[SerializeUtils parseDirection:direction] error:&error];
|
|
134
|
+
|
|
135
|
+
if (error) {
|
|
136
|
+
reject(@"E_SET_DIRECTION", @"Could not set direction", error);
|
|
137
|
+
} else {
|
|
138
|
+
resolve(@true);
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
RCT_EXPORT_METHOD(transceiverStop
|
|
143
|
+
: (nonnull NSNumber *)objectID senderId
|
|
144
|
+
: (NSString *)senderId resolver
|
|
145
|
+
: (RCTPromiseResolveBlock)resolve rejecter
|
|
146
|
+
: (RCTPromiseRejectBlock)reject) {
|
|
147
|
+
RTCPeerConnection *peerConnection = self.peerConnections[objectID];
|
|
148
|
+
|
|
149
|
+
if (peerConnection == nil) {
|
|
150
|
+
RCTLogWarn(@"PeerConnection %@ not found in transceiverStop()", objectID);
|
|
151
|
+
reject(@"E_INVALID", @"Peer Connection is not initialized", nil);
|
|
152
|
+
return;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
RTCRtpTransceiver *transceiver = nil;
|
|
156
|
+
for (RTCRtpTransceiver *t in peerConnection.transceivers) {
|
|
157
|
+
if ([senderId isEqual:t.sender.senderId]) {
|
|
158
|
+
transceiver = t;
|
|
159
|
+
break;
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
if (transceiver == nil) {
|
|
164
|
+
RCTLogWarn(@"senderSetParameters() transceiver is null");
|
|
165
|
+
reject(@"E_INVALID", @"Could not get transceiver", nil);
|
|
166
|
+
return;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
[transceiver stopInternal];
|
|
170
|
+
|
|
171
|
+
resolve(@true);
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
RCT_EXPORT_BLOCKING_SYNCHRONOUS_METHOD(transceiverSetCodecPreferences
|
|
175
|
+
: (nonnull NSNumber *)objectID senderId
|
|
176
|
+
: (NSString *)senderId codecPreferences
|
|
177
|
+
: (NSArray *)codecPreferences) {
|
|
178
|
+
RTCPeerConnection *peerConnection = self.peerConnections[objectID];
|
|
179
|
+
|
|
180
|
+
if (peerConnection == nil) {
|
|
181
|
+
RCTLogWarn(@"PeerConnection %@ not found in transceiverSetCodecPreferences()", objectID);
|
|
182
|
+
return nil;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
RTCRtpTransceiver *transceiver = nil;
|
|
186
|
+
for (RTCRtpTransceiver *t in peerConnection.transceivers) {
|
|
187
|
+
if ([senderId isEqual:t.sender.senderId]) {
|
|
188
|
+
transceiver = t;
|
|
189
|
+
break;
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
if (transceiver == nil) {
|
|
194
|
+
RCTLogWarn(@"transceiverSetCodecPreferences() transceiver is null");
|
|
195
|
+
return nil;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
// Get the available codecs
|
|
199
|
+
RTCRtpTransceiverDirection direction = transceiver.direction;
|
|
200
|
+
NSMutableArray *availableCodecs = [NSMutableArray new];
|
|
201
|
+
NSString *kind = transceiver.mediaType == RTCRtpMediaTypeAudio ? @"audio" : @"video";
|
|
202
|
+
if (direction == RTCRtpTransceiverDirectionSendRecv || direction == RTCRtpTransceiverDirectionSendOnly) {
|
|
203
|
+
RTCRtpCapabilities *capabilities = [self.peerConnectionFactory rtpSenderCapabilitiesForKind:kind];
|
|
204
|
+
for (RTCRtpCodecCapability *codec in capabilities.codecs) {
|
|
205
|
+
NSDictionary *codecDict = [SerializeUtils codecCapabilityToJSON:codec];
|
|
206
|
+
[availableCodecs addObject:@{
|
|
207
|
+
@"dict" : codecDict,
|
|
208
|
+
@"codec" : codec,
|
|
209
|
+
}];
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
if (direction == RTCRtpTransceiverDirectionSendRecv || direction == RTCRtpTransceiverDirectionRecvOnly) {
|
|
213
|
+
RTCRtpCapabilities *capabilities = [self.peerConnectionFactory rtpReceiverCapabilitiesForKind:kind];
|
|
214
|
+
for (RTCRtpCodecCapability *codec in capabilities.codecs) {
|
|
215
|
+
NSDictionary *codecDict = [SerializeUtils codecCapabilityToJSON:codec];
|
|
216
|
+
[availableCodecs addObject:@{
|
|
217
|
+
@"dict" : codecDict,
|
|
218
|
+
@"codec" : codec,
|
|
219
|
+
}];
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
// Convert JSON codec capabilities to the actual objects.
|
|
224
|
+
// Codec preferences is order sensitive.
|
|
225
|
+
NSMutableArray *codecsToSet = [NSMutableArray new];
|
|
226
|
+
|
|
227
|
+
for (NSDictionary *codecDict in codecPreferences) {
|
|
228
|
+
for (NSDictionary *entry in availableCodecs) {
|
|
229
|
+
NSDictionary *availableCodecDict = [entry objectForKey:@"dict"];
|
|
230
|
+
if ([codecDict isEqualToDictionary:availableCodecDict]) {
|
|
231
|
+
[codecsToSet addObject:[entry objectForKey:@"codec"]];
|
|
232
|
+
break;
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
transceiver.codecPreferences = codecsToSet;
|
|
238
|
+
return nil;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
- (RTCRtpParameters *)updateParametersWithOptions:(NSDictionary *)options params:(RTCRtpParameters *)params {
|
|
242
|
+
NSArray *encodingsArray = options[@"encodings"];
|
|
243
|
+
NSArray *encodings = params.encodings;
|
|
244
|
+
|
|
245
|
+
if ([encodingsArray count] != [encodings count]) {
|
|
246
|
+
return nil;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
for (int i = 0; i < [encodingsArray count]; i++) {
|
|
250
|
+
NSDictionary *encodingUpdate = encodingsArray[i];
|
|
251
|
+
RTCRtpEncodingParameters *encoding = encodings[i];
|
|
252
|
+
|
|
253
|
+
encoding.isActive = [encodingUpdate[@"active"] boolValue];
|
|
254
|
+
encoding.rid = encodingUpdate[@"rid"];
|
|
255
|
+
encoding.maxBitrateBps = encodingUpdate[@"maxBitrate"];
|
|
256
|
+
encoding.maxFramerate = encodingUpdate[@"maxFramerate"];
|
|
257
|
+
encoding.scaleResolutionDownBy = encodingUpdate[@"scaleResolutionDownBy"];
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
if ([options objectForKey:@"degradationPreference"]) {
|
|
261
|
+
params.degradationPreference = [options objectForKey:@"degradationPreference"];
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
return params;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
@end
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
|
|
2
|
+
#import <WebRTC/RTCPeerConnection.h>
|
|
3
|
+
#import "WebRTCModule.h"
|
|
4
|
+
|
|
5
|
+
@interface RTCPeerConnection (VideoTrackAdapter)
|
|
6
|
+
|
|
7
|
+
@property(nonatomic, strong) NSMutableDictionary<NSString *, id> *videoTrackAdapters;
|
|
8
|
+
|
|
9
|
+
- (void)addVideoTrackAdapter:(RTCVideoTrack *)track;
|
|
10
|
+
- (void)removeVideoTrackAdapter:(RTCVideoTrack *)track;
|
|
11
|
+
|
|
12
|
+
@end
|
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
|
|
2
|
+
#import <Foundation/Foundation.h>
|
|
3
|
+
#include <libkern/OSAtomic.h>
|
|
4
|
+
#import <objc/runtime.h>
|
|
5
|
+
#import <stdatomic.h>
|
|
6
|
+
|
|
7
|
+
#import <React/RCTBridge.h>
|
|
8
|
+
#import <React/RCTEventDispatcher.h>
|
|
9
|
+
#import <React/RCTLog.h>
|
|
10
|
+
|
|
11
|
+
#import <WebRTC/RTCVideoRenderer.h>
|
|
12
|
+
#import <WebRTC/RTCVideoTrack.h>
|
|
13
|
+
|
|
14
|
+
#import "WebRTCModule+RTCPeerConnection.h"
|
|
15
|
+
#import "WebRTCModule+VideoTrackAdapter.h"
|
|
16
|
+
#import "WebRTCModule.h"
|
|
17
|
+
|
|
18
|
+
/* Mute detection timer intervals. The initial timeout will be longer to
|
|
19
|
+
* accommodate for source startup.
|
|
20
|
+
*/
|
|
21
|
+
static const NSTimeInterval INITIAL_MUTE_DELAY = 3;
|
|
22
|
+
static const NSTimeInterval MUTE_DELAY = 1.5;
|
|
23
|
+
|
|
24
|
+
/* Entity responsible for detecting track mute / unmute events. It's implemented
|
|
25
|
+
* as a video renderer, which counts the number of frames, and if it sees them
|
|
26
|
+
* stalled for the default interval it will emit a mute event. If frames keep
|
|
27
|
+
* being received, the track unmute event will be emitted.
|
|
28
|
+
*/
|
|
29
|
+
@interface TrackMuteDetector : NSObject<RTCVideoRenderer>
|
|
30
|
+
|
|
31
|
+
@property(copy, nonatomic) NSNumber *peerConnectionId;
|
|
32
|
+
@property(copy, nonatomic) NSString *trackId;
|
|
33
|
+
@property(weak, nonatomic) WebRTCModule *module;
|
|
34
|
+
|
|
35
|
+
@end
|
|
36
|
+
|
|
37
|
+
@implementation TrackMuteDetector {
|
|
38
|
+
BOOL _disposed;
|
|
39
|
+
atomic_ullong _frameCount;
|
|
40
|
+
BOOL _muted;
|
|
41
|
+
dispatch_source_t _timer;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
- (instancetype)initWith:(NSNumber *)peerConnectionId trackId:(NSString *)trackId webRTCModule:(WebRTCModule *)module {
|
|
45
|
+
self = [super init];
|
|
46
|
+
if (self) {
|
|
47
|
+
self.peerConnectionId = peerConnectionId;
|
|
48
|
+
self.trackId = trackId;
|
|
49
|
+
self.module = module;
|
|
50
|
+
|
|
51
|
+
_disposed = NO;
|
|
52
|
+
_frameCount = 0;
|
|
53
|
+
_muted = NO;
|
|
54
|
+
_timer = nil;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
return self;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
- (void)dispose {
|
|
61
|
+
_disposed = YES;
|
|
62
|
+
if (_timer != nil) {
|
|
63
|
+
dispatch_source_cancel(_timer);
|
|
64
|
+
_timer = nil;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
- (void)emitMuteEvent:(BOOL)muted {
|
|
69
|
+
[self.module sendEventWithName:kEventMediaStreamTrackMuteChanged
|
|
70
|
+
body:@{@"pcId" : self.peerConnectionId, @"trackId" : self.trackId, @"muted" : @(muted)}];
|
|
71
|
+
RCTLog(@"[VideoTrackAdapter] %@ event for pc %@ track %@",
|
|
72
|
+
muted ? @"Mute" : @"Unmute",
|
|
73
|
+
self.peerConnectionId,
|
|
74
|
+
self.trackId);
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
- (void)start {
|
|
78
|
+
if (_disposed) {
|
|
79
|
+
return;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
if (_timer != nil) {
|
|
83
|
+
dispatch_source_cancel(_timer);
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
// Create a timer using GCD, since NSTimer requires a runloop to be present
|
|
87
|
+
// on the calling thread.
|
|
88
|
+
_timer = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, 0, 0, dispatch_get_main_queue());
|
|
89
|
+
|
|
90
|
+
// Schedule the timer with a larger initial delay than the interval.
|
|
91
|
+
dispatch_source_set_timer(_timer,
|
|
92
|
+
dispatch_time(DISPATCH_TIME_NOW, INITIAL_MUTE_DELAY * NSEC_PER_SEC),
|
|
93
|
+
MUTE_DELAY * NSEC_PER_SEC,
|
|
94
|
+
(1ull * NSEC_PER_SEC) / 10);
|
|
95
|
+
|
|
96
|
+
__block unsigned long long lastFrameCount = _frameCount;
|
|
97
|
+
dispatch_source_set_event_handler(_timer, ^() {
|
|
98
|
+
if (self->_disposed) {
|
|
99
|
+
return;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
BOOL isMuted = lastFrameCount == self->_frameCount;
|
|
103
|
+
if (isMuted != self->_muted) {
|
|
104
|
+
self->_muted = isMuted;
|
|
105
|
+
[self emitMuteEvent:isMuted];
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
lastFrameCount = self->_frameCount;
|
|
109
|
+
});
|
|
110
|
+
|
|
111
|
+
dispatch_resume(_timer);
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
- (void)renderFrame:(nullable RTCVideoFrame *)frame {
|
|
115
|
+
atomic_fetch_add(&_frameCount, 1);
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
- (void)setSize:(CGSize)size {
|
|
119
|
+
// XXX unneeded for our purposes, but part of RTCVideoRenderer.
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
@end
|
|
123
|
+
|
|
124
|
+
@implementation RTCPeerConnection (VideoTrackAdapter)
|
|
125
|
+
|
|
126
|
+
- (NSMutableDictionary<NSString *, id> *)videoTrackAdapters {
|
|
127
|
+
return objc_getAssociatedObject(self, _cmd);
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
- (void)setVideoTrackAdapters:(NSMutableDictionary<NSString *, id> *)videoTrackAdapters {
|
|
131
|
+
objc_setAssociatedObject(
|
|
132
|
+
self, @selector(videoTrackAdapters), videoTrackAdapters, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
- (void)addVideoTrackAdapter:(RTCVideoTrack *)track {
|
|
136
|
+
NSString *trackId = track.trackId;
|
|
137
|
+
if ([self.videoTrackAdapters objectForKey:trackId] != nil) {
|
|
138
|
+
RCTLogWarn(@"[VideoTrackAdapter] Adapter already exists for track %@", trackId);
|
|
139
|
+
return;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
TrackMuteDetector *muteDetector = [[TrackMuteDetector alloc] initWith:self.reactTag
|
|
143
|
+
trackId:trackId
|
|
144
|
+
webRTCModule:self.webRTCModule];
|
|
145
|
+
[self.videoTrackAdapters setObject:muteDetector forKey:trackId];
|
|
146
|
+
[track addRenderer:muteDetector];
|
|
147
|
+
[muteDetector start];
|
|
148
|
+
|
|
149
|
+
RCTLogTrace(@"[VideoTrackAdapter] Adapter created for track %@", trackId);
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
- (void)removeVideoTrackAdapter:(RTCVideoTrack *)track {
|
|
153
|
+
NSString *trackId = track.trackId;
|
|
154
|
+
TrackMuteDetector *muteDetector = [self.videoTrackAdapters objectForKey:trackId];
|
|
155
|
+
if (muteDetector == nil) {
|
|
156
|
+
RCTLogWarn(@"[VideoTrackAdapter] Adapter doesn't exist for track %@", trackId);
|
|
157
|
+
return;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
[track removeRenderer:muteDetector];
|
|
161
|
+
[muteDetector dispose];
|
|
162
|
+
[self.videoTrackAdapters removeObjectForKey:trackId];
|
|
163
|
+
RCTLogTrace(@"[VideoTrackAdapter] Adapter removed for track %@", trackId);
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
@end
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
#import <AVFoundation/AVFoundation.h>
|
|
2
|
+
#import <Foundation/Foundation.h>
|
|
3
|
+
|
|
4
|
+
#import <React/RCTBridgeModule.h>
|
|
5
|
+
#import <React/RCTConvert.h>
|
|
6
|
+
#import <React/RCTEventEmitter.h>
|
|
7
|
+
|
|
8
|
+
#import <WebRTC/WebRTC.h>
|
|
9
|
+
|
|
10
|
+
@class PalabraClient;
|
|
11
|
+
|
|
12
|
+
static NSString *const kEventPeerConnectionSignalingStateChanged = @"peerConnectionSignalingStateChanged";
|
|
13
|
+
static NSString *const kEventPeerConnectionStateChanged = @"peerConnectionStateChanged";
|
|
14
|
+
static NSString *const kEventPeerConnectionOnRenegotiationNeeded = @"peerConnectionOnRenegotiationNeeded";
|
|
15
|
+
static NSString *const kEventPeerConnectionIceConnectionChanged = @"peerConnectionIceConnectionChanged";
|
|
16
|
+
static NSString *const kEventPeerConnectionIceGatheringChanged = @"peerConnectionIceGatheringChanged";
|
|
17
|
+
static NSString *const kEventPeerConnectionGotICECandidate = @"peerConnectionGotICECandidate";
|
|
18
|
+
static NSString *const kEventPeerConnectionDidOpenDataChannel = @"peerConnectionDidOpenDataChannel";
|
|
19
|
+
static NSString *const kEventDataChannelDidChangeBufferedAmount = @"dataChannelDidChangeBufferedAmount";
|
|
20
|
+
static NSString *const kEventDataChannelStateChanged = @"dataChannelStateChanged";
|
|
21
|
+
static NSString *const kEventDataChannelReceiveMessage = @"dataChannelReceiveMessage";
|
|
22
|
+
static NSString *const kEventMediaStreamTrackMuteChanged = @"mediaStreamTrackMuteChanged";
|
|
23
|
+
static NSString *const kEventMediaStreamTrackEnded = @"mediaStreamTrackEnded";
|
|
24
|
+
static NSString *const kEventPeerConnectionOnRemoveTrack = @"peerConnectionOnRemoveTrack";
|
|
25
|
+
static NSString *const kEventPeerConnectionOnTrack = @"peerConnectionOnTrack";
|
|
26
|
+
static NSString *const kEventFrameCryptionStateChanged = @"frameCryptionStateChanged";
|
|
27
|
+
static NSString *const kEventPalabraTranscription = @"palabraTranscription";
|
|
28
|
+
static NSString *const kEventPalabraConnectionState = @"palabraConnectionState";
|
|
29
|
+
static NSString *const kEventPalabraError = @"palabraError";
|
|
30
|
+
|
|
31
|
+
@interface WebRTCModule : RCTEventEmitter<RCTBridgeModule>
|
|
32
|
+
|
|
33
|
+
@property(nonatomic, strong) dispatch_queue_t workerQueue;
|
|
34
|
+
|
|
35
|
+
@property(nonatomic, strong) RTCPeerConnectionFactory *peerConnectionFactory;
|
|
36
|
+
@property(nonatomic, strong) id<RTCVideoDecoderFactory> decoderFactory;
|
|
37
|
+
@property(nonatomic, strong) id<RTCVideoEncoderFactory> encoderFactory;
|
|
38
|
+
|
|
39
|
+
@property(nonatomic, strong) NSMutableDictionary<NSNumber *, RTCPeerConnection *> *peerConnections;
|
|
40
|
+
@property(nonatomic, strong) NSMutableDictionary<NSString *, RTCMediaStream *> *localStreams;
|
|
41
|
+
@property(nonatomic, strong) NSMutableDictionary<NSString *, RTCMediaStreamTrack *> *localTracks;
|
|
42
|
+
|
|
43
|
+
@property(nonatomic, strong) NSMutableDictionary<NSString *, RTCFrameCryptor *> *frameCryptors;
|
|
44
|
+
@property(nonatomic, strong) NSMutableDictionary<NSString *, RTCFrameCryptorKeyProvider *> *keyProviders;
|
|
45
|
+
@property(nonatomic, strong) NSMutableDictionary<NSString *, RTCDataPacketCryptor *> *dataPacketCryptors;
|
|
46
|
+
|
|
47
|
+
@property(nonatomic, strong) PalabraClient *palabraClient;
|
|
48
|
+
|
|
49
|
+
- (RTCMediaStream *)streamForReactTag:(NSString *)reactTag;
|
|
50
|
+
|
|
51
|
+
@end
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
#if !TARGET_OS_OSX
|
|
2
|
+
#import <UIKit/UIKit.h>
|
|
3
|
+
#endif
|
|
4
|
+
|
|
5
|
+
#import <React/RCTBridge.h>
|
|
6
|
+
#import <React/RCTEventDispatcher.h>
|
|
7
|
+
#import <React/RCTLog.h>
|
|
8
|
+
#import <React/RCTUtils.h>
|
|
9
|
+
|
|
10
|
+
#import "WebRTCModule+RTCPeerConnection.h"
|
|
11
|
+
#import "WebRTCModule.h"
|
|
12
|
+
#import "WebRTCModuleOptions.h"
|
|
13
|
+
|
|
14
|
+
@interface WebRTCModule ()
|
|
15
|
+
@end
|
|
16
|
+
|
|
17
|
+
@implementation WebRTCModule
|
|
18
|
+
|
|
19
|
+
+ (BOOL)requiresMainQueueSetup {
|
|
20
|
+
return NO;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
- (void)dealloc {
|
|
24
|
+
[_localTracks removeAllObjects];
|
|
25
|
+
_localTracks = nil;
|
|
26
|
+
[_localStreams removeAllObjects];
|
|
27
|
+
_localStreams = nil;
|
|
28
|
+
|
|
29
|
+
for (NSNumber *peerConnectionId in _peerConnections) {
|
|
30
|
+
RTCPeerConnection *peerConnection = _peerConnections[peerConnectionId];
|
|
31
|
+
peerConnection.delegate = nil;
|
|
32
|
+
[peerConnection close];
|
|
33
|
+
}
|
|
34
|
+
[_peerConnections removeAllObjects];
|
|
35
|
+
|
|
36
|
+
_peerConnectionFactory = nil;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
- (instancetype)init {
|
|
40
|
+
self = [super init];
|
|
41
|
+
if (self) {
|
|
42
|
+
WebRTCModuleOptions *options = [WebRTCModuleOptions sharedInstance];
|
|
43
|
+
id<RTCAudioDevice> audioDevice = options.audioDevice;
|
|
44
|
+
id<RTCVideoDecoderFactory> decoderFactory = options.videoDecoderFactory;
|
|
45
|
+
id<RTCVideoEncoderFactory> encoderFactory = options.videoEncoderFactory;
|
|
46
|
+
id<RTCAudioProcessingModule> audioProcessingModule = options.audioProcessingModule;
|
|
47
|
+
NSDictionary *fieldTrials = options.fieldTrials;
|
|
48
|
+
RTCLoggingSeverity loggingSeverity = options.loggingSeverity;
|
|
49
|
+
|
|
50
|
+
// Initialize field trials.
|
|
51
|
+
if (fieldTrials == nil) {
|
|
52
|
+
// Fix for dual-sim connectivity:
|
|
53
|
+
// https://bugs.chromium.org/p/webrtc/issues/detail?id=10966
|
|
54
|
+
fieldTrials = @{kRTCFieldTrialUseNWPathMonitor : kRTCFieldTrialEnabledValue};
|
|
55
|
+
}
|
|
56
|
+
RTCInitFieldTrialDictionary(fieldTrials);
|
|
57
|
+
|
|
58
|
+
// Initialize logging.
|
|
59
|
+
RTCSetMinDebugLogLevel(loggingSeverity);
|
|
60
|
+
|
|
61
|
+
if (encoderFactory == nil) {
|
|
62
|
+
encoderFactory = [[RTCDefaultVideoEncoderFactory alloc] init];
|
|
63
|
+
}
|
|
64
|
+
if (decoderFactory == nil) {
|
|
65
|
+
decoderFactory = [[RTCDefaultVideoDecoderFactory alloc] init];
|
|
66
|
+
}
|
|
67
|
+
_encoderFactory = encoderFactory;
|
|
68
|
+
_decoderFactory = decoderFactory;
|
|
69
|
+
|
|
70
|
+
RCTLogInfo(@"Using video encoder factory: %@", NSStringFromClass([encoderFactory class]));
|
|
71
|
+
RCTLogInfo(@"Using video decoder factory: %@", NSStringFromClass([decoderFactory class]));
|
|
72
|
+
|
|
73
|
+
if (audioProcessingModule != nil) {
|
|
74
|
+
if (audioDevice != nil) {
|
|
75
|
+
NSLog(@"Both audioProcessingModule and audioDevice are provided, but only one can be used. Ignoring "
|
|
76
|
+
@"audioDevice.");
|
|
77
|
+
}
|
|
78
|
+
RCTLogInfo(@"Using audio processing module: %@", NSStringFromClass([audioProcessingModule class]));
|
|
79
|
+
_peerConnectionFactory =
|
|
80
|
+
[[RTCPeerConnectionFactory alloc] initWithAudioDeviceModuleType:RTCAudioDeviceModuleTypeAudioEngine
|
|
81
|
+
bypassVoiceProcessing:NO
|
|
82
|
+
encoderFactory:encoderFactory
|
|
83
|
+
decoderFactory:decoderFactory
|
|
84
|
+
audioProcessingModule:audioProcessingModule];
|
|
85
|
+
} else {
|
|
86
|
+
RCTLogInfo(@"Using audio device: %@", NSStringFromClass([audioDevice class]));
|
|
87
|
+
_peerConnectionFactory = [[RTCPeerConnectionFactory alloc] initWithEncoderFactory:encoderFactory
|
|
88
|
+
decoderFactory:decoderFactory
|
|
89
|
+
audioDevice:audioDevice];
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
_peerConnections = [NSMutableDictionary new];
|
|
93
|
+
_localStreams = [NSMutableDictionary new];
|
|
94
|
+
_localTracks = [NSMutableDictionary new];
|
|
95
|
+
|
|
96
|
+
_frameCryptors = [NSMutableDictionary new];
|
|
97
|
+
_keyProviders = [NSMutableDictionary new];
|
|
98
|
+
_dataPacketCryptors = [NSMutableDictionary new];
|
|
99
|
+
|
|
100
|
+
dispatch_queue_attr_t attributes =
|
|
101
|
+
dispatch_queue_attr_make_with_qos_class(DISPATCH_QUEUE_SERIAL, QOS_CLASS_USER_INITIATED, -1);
|
|
102
|
+
_workerQueue = dispatch_queue_create("WebRTCModule.queue", attributes);
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
return self;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
- (RTCMediaStream *)streamForReactTag:(NSString *)reactTag {
|
|
109
|
+
RTCMediaStream *stream = _localStreams[reactTag];
|
|
110
|
+
if (!stream) {
|
|
111
|
+
for (NSNumber *peerConnectionId in _peerConnections) {
|
|
112
|
+
RTCPeerConnection *peerConnection = _peerConnections[peerConnectionId];
|
|
113
|
+
stream = peerConnection.remoteStreams[reactTag];
|
|
114
|
+
if (stream) {
|
|
115
|
+
break;
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
return stream;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
RCT_EXPORT_MODULE();
|
|
123
|
+
|
|
124
|
+
- (dispatch_queue_t)methodQueue {
|
|
125
|
+
return _workerQueue;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
- (NSArray<NSString *> *)supportedEvents {
|
|
129
|
+
return @[
|
|
130
|
+
kEventPeerConnectionSignalingStateChanged,
|
|
131
|
+
kEventPeerConnectionStateChanged,
|
|
132
|
+
kEventPeerConnectionOnRenegotiationNeeded,
|
|
133
|
+
kEventPeerConnectionIceConnectionChanged,
|
|
134
|
+
kEventPeerConnectionIceGatheringChanged,
|
|
135
|
+
kEventPeerConnectionGotICECandidate,
|
|
136
|
+
kEventPeerConnectionDidOpenDataChannel,
|
|
137
|
+
kEventDataChannelDidChangeBufferedAmount,
|
|
138
|
+
kEventDataChannelStateChanged,
|
|
139
|
+
kEventDataChannelReceiveMessage,
|
|
140
|
+
kEventMediaStreamTrackMuteChanged,
|
|
141
|
+
kEventMediaStreamTrackEnded,
|
|
142
|
+
kEventPeerConnectionOnRemoveTrack,
|
|
143
|
+
kEventPeerConnectionOnTrack,
|
|
144
|
+
kEventFrameCryptionStateChanged,
|
|
145
|
+
kEventPalabraTranscription,
|
|
146
|
+
kEventPalabraConnectionState,
|
|
147
|
+
kEventPalabraError
|
|
148
|
+
];
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
@end
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
#import <Foundation/Foundation.h>
|
|
2
|
+
#import <WebRTC/WebRTC.h>
|
|
3
|
+
|
|
4
|
+
NS_ASSUME_NONNULL_BEGIN
|
|
5
|
+
|
|
6
|
+
@interface WebRTCModuleOptions : NSObject
|
|
7
|
+
|
|
8
|
+
@property(nonatomic, strong, nullable) id<RTCVideoDecoderFactory> videoDecoderFactory;
|
|
9
|
+
@property(nonatomic, strong, nullable) id<RTCVideoEncoderFactory> videoEncoderFactory;
|
|
10
|
+
@property(nonatomic, strong, nullable) id<RTCAudioDevice> audioDevice;
|
|
11
|
+
@property(nonatomic, strong, nullable) id<RTCAudioProcessingModule> audioProcessingModule;
|
|
12
|
+
@property(nonatomic, strong, nullable) NSDictionary *fieldTrials;
|
|
13
|
+
@property(nonatomic, assign) RTCLoggingSeverity loggingSeverity;
|
|
14
|
+
@property(nonatomic, assign) BOOL enableMultitaskingCameraAccess;
|
|
15
|
+
|
|
16
|
+
@property(nonatomic, assign) double defaultTrackVolume;
|
|
17
|
+
|
|
18
|
+
#pragma mark - This class is a singleton
|
|
19
|
+
|
|
20
|
+
+ (instancetype _Nonnull)sharedInstance;
|
|
21
|
+
|
|
22
|
+
@end
|
|
23
|
+
|
|
24
|
+
NS_ASSUME_NONNULL_END
|