@recallai/desktop-sdk 2024.1.28-ed4c05a2ec5340a21818e8292a2c8f86359502da
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/WebRTC.framework/Headers/RTCAudioSource.h +32 -0
- package/WebRTC.framework/Headers/RTCAudioTrack.h +28 -0
- package/WebRTC.framework/Headers/RTCCVPixelBuffer.h +52 -0
- package/WebRTC.framework/Headers/RTCCallbackLogger.h +41 -0
- package/WebRTC.framework/Headers/RTCCameraVideoCapturer.h +56 -0
- package/WebRTC.framework/Headers/RTCCertificate.h +44 -0
- package/WebRTC.framework/Headers/RTCCodecSpecificInfo.h +24 -0
- package/WebRTC.framework/Headers/RTCCodecSpecificInfoH264.h +27 -0
- package/WebRTC.framework/Headers/RTCConfiguration.h +262 -0
- package/WebRTC.framework/Headers/RTCCryptoOptions.h +63 -0
- package/WebRTC.framework/Headers/RTCDataChannel.h +132 -0
- package/WebRTC.framework/Headers/RTCDataChannelConfiguration.h +52 -0
- package/WebRTC.framework/Headers/RTCDefaultVideoDecoderFactory.h +26 -0
- package/WebRTC.framework/Headers/RTCDefaultVideoEncoderFactory.h +31 -0
- package/WebRTC.framework/Headers/RTCDispatcher.h +46 -0
- package/WebRTC.framework/Headers/RTCDtmfSender.h +71 -0
- package/WebRTC.framework/Headers/RTCEncodedImage.h +52 -0
- package/WebRTC.framework/Headers/RTCFieldTrials.h +30 -0
- package/WebRTC.framework/Headers/RTCFileLogger.h +74 -0
- package/WebRTC.framework/Headers/RTCFileVideoCapturer.h +51 -0
- package/WebRTC.framework/Headers/RTCH264ProfileLevelId.h +60 -0
- package/WebRTC.framework/Headers/RTCI420Buffer.h +22 -0
- package/WebRTC.framework/Headers/RTCIceCandidate.h +49 -0
- package/WebRTC.framework/Headers/RTCIceCandidateErrorEvent.h +42 -0
- package/WebRTC.framework/Headers/RTCIceServer.h +114 -0
- package/WebRTC.framework/Headers/RTCLegacyStatsReport.h +37 -0
- package/WebRTC.framework/Headers/RTCLogging.h +66 -0
- package/WebRTC.framework/Headers/RTCMTLNSVideoView.h +22 -0
- package/WebRTC.framework/Headers/RTCMacros.h +63 -0
- package/WebRTC.framework/Headers/RTCMediaConstraints.h +46 -0
- package/WebRTC.framework/Headers/RTCMediaSource.h +34 -0
- package/WebRTC.framework/Headers/RTCMediaStream.h +49 -0
- package/WebRTC.framework/Headers/RTCMediaStreamTrack.h +50 -0
- package/WebRTC.framework/Headers/RTCMetrics.h +23 -0
- package/WebRTC.framework/Headers/RTCMetricsSampleInfo.h +48 -0
- package/WebRTC.framework/Headers/RTCMutableI420Buffer.h +23 -0
- package/WebRTC.framework/Headers/RTCMutableYUVPlanarBuffer.h +28 -0
- package/WebRTC.framework/Headers/RTCNativeI420Buffer.h +23 -0
- package/WebRTC.framework/Headers/RTCNativeMutableI420Buffer.h +24 -0
- package/WebRTC.framework/Headers/RTCPeerConnection.h +397 -0
- package/WebRTC.framework/Headers/RTCPeerConnectionFactory.h +113 -0
- package/WebRTC.framework/Headers/RTCPeerConnectionFactoryOptions.h +38 -0
- package/WebRTC.framework/Headers/RTCRtcpParameters.h +30 -0
- package/WebRTC.framework/Headers/RTCRtpCodecParameters.h +73 -0
- package/WebRTC.framework/Headers/RTCRtpEncodingParameters.h +76 -0
- package/WebRTC.framework/Headers/RTCRtpHeaderExtension.h +33 -0
- package/WebRTC.framework/Headers/RTCRtpParameters.h +58 -0
- package/WebRTC.framework/Headers/RTCRtpReceiver.h +86 -0
- package/WebRTC.framework/Headers/RTCRtpSender.h +54 -0
- package/WebRTC.framework/Headers/RTCRtpTransceiver.h +137 -0
- package/WebRTC.framework/Headers/RTCSSLAdapter.h +20 -0
- package/WebRTC.framework/Headers/RTCSSLCertificateVerifier.h +25 -0
- package/WebRTC.framework/Headers/RTCSessionDescription.h +48 -0
- package/WebRTC.framework/Headers/RTCStatisticsReport.h +55 -0
- package/WebRTC.framework/Headers/RTCTracing.h +21 -0
- package/WebRTC.framework/Headers/RTCVideoCapturer.h +35 -0
- package/WebRTC.framework/Headers/RTCVideoCodecInfo.h +36 -0
- package/WebRTC.framework/Headers/RTCVideoDecoder.h +41 -0
- package/WebRTC.framework/Headers/RTCVideoDecoderAV1.h +25 -0
- package/WebRTC.framework/Headers/RTCVideoDecoderFactory.h +32 -0
- package/WebRTC.framework/Headers/RTCVideoDecoderFactoryH264.h +18 -0
- package/WebRTC.framework/Headers/RTCVideoDecoderH264.h +18 -0
- package/WebRTC.framework/Headers/RTCVideoDecoderVP8.h +25 -0
- package/WebRTC.framework/Headers/RTCVideoDecoderVP9.h +27 -0
- package/WebRTC.framework/Headers/RTCVideoEncoder.h +59 -0
- package/WebRTC.framework/Headers/RTCVideoEncoderAV1.h +27 -0
- package/WebRTC.framework/Headers/RTCVideoEncoderFactory.h +52 -0
- package/WebRTC.framework/Headers/RTCVideoEncoderFactoryH264.h +18 -0
- package/WebRTC.framework/Headers/RTCVideoEncoderH264.h +22 -0
- package/WebRTC.framework/Headers/RTCVideoEncoderQpThresholds.h +28 -0
- package/WebRTC.framework/Headers/RTCVideoEncoderSettings.h +42 -0
- package/WebRTC.framework/Headers/RTCVideoEncoderVP8.h +25 -0
- package/WebRTC.framework/Headers/RTCVideoEncoderVP9.h +27 -0
- package/WebRTC.framework/Headers/RTCVideoFrame.h +86 -0
- package/WebRTC.framework/Headers/RTCVideoFrameBuffer.h +40 -0
- package/WebRTC.framework/Headers/RTCVideoRenderer.h +43 -0
- package/WebRTC.framework/Headers/RTCVideoSource.h +37 -0
- package/WebRTC.framework/Headers/RTCVideoTrack.h +38 -0
- package/WebRTC.framework/Headers/RTCVideoViewShading.h +39 -0
- package/WebRTC.framework/Headers/RTCYUVPlanarBuffer.h +46 -0
- package/WebRTC.framework/Headers/WebRTC.h +90 -0
- package/WebRTC.framework/Modules/module.modulemap +6 -0
- package/WebRTC.framework/Resources/Info.plist +36 -0
- package/WebRTC.framework/Versions/A/Headers/RTCAudioSource.h +32 -0
- package/WebRTC.framework/Versions/A/Headers/RTCAudioTrack.h +28 -0
- package/WebRTC.framework/Versions/A/Headers/RTCCVPixelBuffer.h +52 -0
- package/WebRTC.framework/Versions/A/Headers/RTCCallbackLogger.h +41 -0
- package/WebRTC.framework/Versions/A/Headers/RTCCameraVideoCapturer.h +56 -0
- package/WebRTC.framework/Versions/A/Headers/RTCCertificate.h +44 -0
- package/WebRTC.framework/Versions/A/Headers/RTCCodecSpecificInfo.h +24 -0
- package/WebRTC.framework/Versions/A/Headers/RTCCodecSpecificInfoH264.h +27 -0
- package/WebRTC.framework/Versions/A/Headers/RTCConfiguration.h +262 -0
- package/WebRTC.framework/Versions/A/Headers/RTCCryptoOptions.h +63 -0
- package/WebRTC.framework/Versions/A/Headers/RTCDataChannel.h +132 -0
- package/WebRTC.framework/Versions/A/Headers/RTCDataChannelConfiguration.h +52 -0
- package/WebRTC.framework/Versions/A/Headers/RTCDefaultVideoDecoderFactory.h +26 -0
- package/WebRTC.framework/Versions/A/Headers/RTCDefaultVideoEncoderFactory.h +31 -0
- package/WebRTC.framework/Versions/A/Headers/RTCDispatcher.h +46 -0
- package/WebRTC.framework/Versions/A/Headers/RTCDtmfSender.h +71 -0
- package/WebRTC.framework/Versions/A/Headers/RTCEncodedImage.h +52 -0
- package/WebRTC.framework/Versions/A/Headers/RTCFieldTrials.h +30 -0
- package/WebRTC.framework/Versions/A/Headers/RTCFileLogger.h +74 -0
- package/WebRTC.framework/Versions/A/Headers/RTCFileVideoCapturer.h +51 -0
- package/WebRTC.framework/Versions/A/Headers/RTCH264ProfileLevelId.h +60 -0
- package/WebRTC.framework/Versions/A/Headers/RTCI420Buffer.h +22 -0
- package/WebRTC.framework/Versions/A/Headers/RTCIceCandidate.h +49 -0
- package/WebRTC.framework/Versions/A/Headers/RTCIceCandidateErrorEvent.h +42 -0
- package/WebRTC.framework/Versions/A/Headers/RTCIceServer.h +114 -0
- package/WebRTC.framework/Versions/A/Headers/RTCLegacyStatsReport.h +37 -0
- package/WebRTC.framework/Versions/A/Headers/RTCLogging.h +66 -0
- package/WebRTC.framework/Versions/A/Headers/RTCMTLNSVideoView.h +22 -0
- package/WebRTC.framework/Versions/A/Headers/RTCMacros.h +63 -0
- package/WebRTC.framework/Versions/A/Headers/RTCMediaConstraints.h +46 -0
- package/WebRTC.framework/Versions/A/Headers/RTCMediaSource.h +34 -0
- package/WebRTC.framework/Versions/A/Headers/RTCMediaStream.h +49 -0
- package/WebRTC.framework/Versions/A/Headers/RTCMediaStreamTrack.h +50 -0
- package/WebRTC.framework/Versions/A/Headers/RTCMetrics.h +23 -0
- package/WebRTC.framework/Versions/A/Headers/RTCMetricsSampleInfo.h +48 -0
- package/WebRTC.framework/Versions/A/Headers/RTCMutableI420Buffer.h +23 -0
- package/WebRTC.framework/Versions/A/Headers/RTCMutableYUVPlanarBuffer.h +28 -0
- package/WebRTC.framework/Versions/A/Headers/RTCNativeI420Buffer.h +23 -0
- package/WebRTC.framework/Versions/A/Headers/RTCNativeMutableI420Buffer.h +24 -0
- package/WebRTC.framework/Versions/A/Headers/RTCPeerConnection.h +397 -0
- package/WebRTC.framework/Versions/A/Headers/RTCPeerConnectionFactory.h +113 -0
- package/WebRTC.framework/Versions/A/Headers/RTCPeerConnectionFactoryOptions.h +38 -0
- package/WebRTC.framework/Versions/A/Headers/RTCRtcpParameters.h +30 -0
- package/WebRTC.framework/Versions/A/Headers/RTCRtpCodecParameters.h +73 -0
- package/WebRTC.framework/Versions/A/Headers/RTCRtpEncodingParameters.h +76 -0
- package/WebRTC.framework/Versions/A/Headers/RTCRtpHeaderExtension.h +33 -0
- package/WebRTC.framework/Versions/A/Headers/RTCRtpParameters.h +58 -0
- package/WebRTC.framework/Versions/A/Headers/RTCRtpReceiver.h +86 -0
- package/WebRTC.framework/Versions/A/Headers/RTCRtpSender.h +54 -0
- package/WebRTC.framework/Versions/A/Headers/RTCRtpTransceiver.h +137 -0
- package/WebRTC.framework/Versions/A/Headers/RTCSSLAdapter.h +20 -0
- package/WebRTC.framework/Versions/A/Headers/RTCSSLCertificateVerifier.h +25 -0
- package/WebRTC.framework/Versions/A/Headers/RTCSessionDescription.h +48 -0
- package/WebRTC.framework/Versions/A/Headers/RTCStatisticsReport.h +55 -0
- package/WebRTC.framework/Versions/A/Headers/RTCTracing.h +21 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoCapturer.h +35 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoCodecInfo.h +36 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoDecoder.h +41 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoDecoderAV1.h +25 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoDecoderFactory.h +32 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoDecoderFactoryH264.h +18 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoDecoderH264.h +18 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoDecoderVP8.h +25 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoDecoderVP9.h +27 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoEncoder.h +59 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderAV1.h +27 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderFactory.h +52 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderFactoryH264.h +18 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderH264.h +22 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderQpThresholds.h +28 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderSettings.h +42 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderVP8.h +25 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderVP9.h +27 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoFrame.h +86 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoFrameBuffer.h +40 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoRenderer.h +43 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoSource.h +37 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoTrack.h +38 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoViewShading.h +39 -0
- package/WebRTC.framework/Versions/A/Headers/RTCYUVPlanarBuffer.h +46 -0
- package/WebRTC.framework/Versions/A/Headers/WebRTC.h +90 -0
- package/WebRTC.framework/Versions/A/Modules/module.modulemap +6 -0
- package/WebRTC.framework/Versions/A/Resources/Info.plist +36 -0
- package/WebRTC.framework/Versions/A/WebRTC +0 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCAudioSource.h +32 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCAudioTrack.h +28 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCCVPixelBuffer.h +52 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCCallbackLogger.h +41 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCCameraVideoCapturer.h +56 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCCertificate.h +44 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCCodecSpecificInfo.h +24 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCCodecSpecificInfoH264.h +27 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCConfiguration.h +262 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCCryptoOptions.h +63 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCDataChannel.h +132 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCDataChannelConfiguration.h +52 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCDefaultVideoDecoderFactory.h +26 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCDefaultVideoEncoderFactory.h +31 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCDispatcher.h +46 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCDtmfSender.h +71 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCEncodedImage.h +52 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCFieldTrials.h +30 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCFileLogger.h +74 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCFileVideoCapturer.h +51 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCH264ProfileLevelId.h +60 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCI420Buffer.h +22 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCIceCandidate.h +49 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCIceCandidateErrorEvent.h +42 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCIceServer.h +114 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCLegacyStatsReport.h +37 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCLogging.h +66 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCMTLNSVideoView.h +22 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCMacros.h +63 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCMediaConstraints.h +46 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCMediaSource.h +34 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCMediaStream.h +49 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCMediaStreamTrack.h +50 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCMetrics.h +23 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCMetricsSampleInfo.h +48 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCMutableI420Buffer.h +23 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCMutableYUVPlanarBuffer.h +28 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCNativeI420Buffer.h +23 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCNativeMutableI420Buffer.h +24 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCPeerConnection.h +397 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCPeerConnectionFactory.h +113 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCPeerConnectionFactoryOptions.h +38 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCRtcpParameters.h +30 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCRtpCodecParameters.h +73 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCRtpEncodingParameters.h +76 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCRtpHeaderExtension.h +33 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCRtpParameters.h +58 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCRtpReceiver.h +86 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCRtpSender.h +54 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCRtpTransceiver.h +137 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCSSLAdapter.h +20 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCSSLCertificateVerifier.h +25 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCSessionDescription.h +48 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCStatisticsReport.h +55 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCTracing.h +21 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoCapturer.h +35 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoCodecInfo.h +36 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoDecoder.h +41 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoDecoderAV1.h +25 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoDecoderFactory.h +32 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoDecoderFactoryH264.h +18 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoDecoderH264.h +18 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoDecoderVP8.h +25 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoDecoderVP9.h +27 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoEncoder.h +59 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoEncoderAV1.h +27 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoEncoderFactory.h +52 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoEncoderFactoryH264.h +18 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoEncoderH264.h +22 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoEncoderQpThresholds.h +28 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoEncoderSettings.h +42 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoEncoderVP8.h +25 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoEncoderVP9.h +27 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoFrame.h +86 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoFrameBuffer.h +40 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoRenderer.h +43 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoSource.h +37 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoTrack.h +38 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoViewShading.h +39 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCYUVPlanarBuffer.h +46 -0
- package/WebRTC.framework/Versions/Current/Headers/WebRTC.h +90 -0
- package/WebRTC.framework/Versions/Current/Modules/module.modulemap +6 -0
- package/WebRTC.framework/Versions/Current/Resources/Info.plist +36 -0
- package/WebRTC.framework/Versions/Current/WebRTC +0 -0
- package/WebRTC.framework/WebRTC +0 -0
- package/binding.gyp +16 -0
- package/desktop_sdk_macos.framework/Headers/desktop_sdk_macos-Swift.h +606 -0
- package/desktop_sdk_macos.framework/Headers/desktop_sdk_macos.h +18 -0
- package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo +0 -0
- package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/Project/x86_64-apple-macos.swiftsourceinfo +0 -0
- package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.abi.json +7423 -0
- package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.private.swiftinterface +216 -0
- package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.swiftdoc +0 -0
- package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.swiftinterface +216 -0
- package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.swiftmodule +0 -0
- package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.abi.json +7423 -0
- package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.private.swiftinterface +216 -0
- package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.swiftdoc +0 -0
- package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.swiftinterface +216 -0
- package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.swiftmodule +0 -0
- package/desktop_sdk_macos.framework/Modules/module.modulemap +11 -0
- package/desktop_sdk_macos.framework/Resources/Info.plist +46 -0
- package/desktop_sdk_macos.framework/Versions/A/Headers/desktop_sdk_macos-Swift.h +606 -0
- package/desktop_sdk_macos.framework/Versions/A/Headers/desktop_sdk_macos.h +18 -0
- package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo +0 -0
- package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/Project/x86_64-apple-macos.swiftsourceinfo +0 -0
- package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.abi.json +7423 -0
- package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.private.swiftinterface +216 -0
- package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.swiftdoc +0 -0
- package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.swiftinterface +216 -0
- package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.swiftmodule +0 -0
- package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.abi.json +7423 -0
- package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.private.swiftinterface +216 -0
- package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.swiftdoc +0 -0
- package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.swiftinterface +216 -0
- package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.swiftmodule +0 -0
- package/desktop_sdk_macos.framework/Versions/A/Modules/module.modulemap +11 -0
- package/desktop_sdk_macos.framework/Versions/A/Resources/Info.plist +46 -0
- package/desktop_sdk_macos.framework/Versions/A/desktop_sdk_macos +0 -0
- package/desktop_sdk_macos.framework/Versions/Current/Headers/desktop_sdk_macos-Swift.h +606 -0
- package/desktop_sdk_macos.framework/Versions/Current/Headers/desktop_sdk_macos.h +18 -0
- package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo +0 -0
- package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/Project/x86_64-apple-macos.swiftsourceinfo +0 -0
- package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.abi.json +7423 -0
- package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.private.swiftinterface +216 -0
- package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.swiftdoc +0 -0
- package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.swiftinterface +216 -0
- package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.swiftmodule +0 -0
- package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.abi.json +7423 -0
- package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.private.swiftinterface +216 -0
- package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.swiftdoc +0 -0
- package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.swiftinterface +216 -0
- package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.swiftmodule +0 -0
- package/desktop_sdk_macos.framework/Versions/Current/Modules/module.modulemap +11 -0
- package/desktop_sdk_macos.framework/Versions/Current/Resources/Info.plist +46 -0
- package/desktop_sdk_macos.framework/Versions/Current/desktop_sdk_macos +0 -0
- package/desktop_sdk_macos.framework/desktop_sdk_macos +0 -0
- package/index.d.ts +9 -0
- package/index.js +14 -0
- package/package.json +9 -0
- package/src/RecallAiDesktopSdk.h +2 -0
- package/src/main.cc +47 -0
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2015 The WebRTC project authors. All Rights Reserved.
|
|
3
|
+
*
|
|
4
|
+
* Use of this source code is governed by a BSD-style license
|
|
5
|
+
* that can be found in the LICENSE file in the root of the source
|
|
6
|
+
* tree. An additional intellectual property rights grant can be found
|
|
7
|
+
* in the file PATENTS. All contributing project authors may
|
|
8
|
+
* be found in the AUTHORS file in the root of the source tree.
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
#import <AvailabilityMacros.h>
|
|
12
|
+
#import <Foundation/Foundation.h>
|
|
13
|
+
|
|
14
|
+
#import <WebRTC/RTCMacros.h>
|
|
15
|
+
|
|
16
|
+
NS_ASSUME_NONNULL_BEGIN
|
|
17
|
+
|
|
18
|
+
RTC_OBJC_EXPORT
|
|
19
|
+
@interface RTC_OBJC_TYPE (RTCDataBuffer) : NSObject
|
|
20
|
+
|
|
21
|
+
/** NSData representation of the underlying buffer. */
|
|
22
|
+
@property(nonatomic, readonly) NSData *data;
|
|
23
|
+
|
|
24
|
+
/** Indicates whether `data` contains UTF-8 or binary data. */
|
|
25
|
+
@property(nonatomic, readonly) BOOL isBinary;
|
|
26
|
+
|
|
27
|
+
- (instancetype)init NS_UNAVAILABLE;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Initialize an RTCDataBuffer from NSData. `isBinary` indicates whether `data`
|
|
31
|
+
* contains UTF-8 or binary data.
|
|
32
|
+
*/
|
|
33
|
+
- (instancetype)initWithData:(NSData *)data isBinary:(BOOL)isBinary;
|
|
34
|
+
|
|
35
|
+
@end
|
|
36
|
+
|
|
37
|
+
@class RTC_OBJC_TYPE(RTCDataChannel);
|
|
38
|
+
RTC_OBJC_EXPORT
|
|
39
|
+
@protocol RTC_OBJC_TYPE
|
|
40
|
+
(RTCDataChannelDelegate)<NSObject>
|
|
41
|
+
|
|
42
|
+
/** The data channel state changed. */
|
|
43
|
+
- (void)dataChannelDidChangeState : (RTC_OBJC_TYPE(RTCDataChannel) *)dataChannel;
|
|
44
|
+
|
|
45
|
+
/** The data channel successfully received a data buffer. */
|
|
46
|
+
- (void)dataChannel:(RTC_OBJC_TYPE(RTCDataChannel) *)dataChannel
|
|
47
|
+
didReceiveMessageWithBuffer:(RTC_OBJC_TYPE(RTCDataBuffer) *)buffer;
|
|
48
|
+
|
|
49
|
+
@optional
|
|
50
|
+
/** The data channel's `bufferedAmount` changed. */
|
|
51
|
+
- (void)dataChannel:(RTC_OBJC_TYPE(RTCDataChannel) *)dataChannel
|
|
52
|
+
didChangeBufferedAmount:(uint64_t)amount;
|
|
53
|
+
|
|
54
|
+
@end
|
|
55
|
+
|
|
56
|
+
/** Represents the state of the data channel. */
|
|
57
|
+
typedef NS_ENUM(NSInteger, RTCDataChannelState) {
|
|
58
|
+
RTCDataChannelStateConnecting,
|
|
59
|
+
RTCDataChannelStateOpen,
|
|
60
|
+
RTCDataChannelStateClosing,
|
|
61
|
+
RTCDataChannelStateClosed,
|
|
62
|
+
};
|
|
63
|
+
|
|
64
|
+
RTC_OBJC_EXPORT
|
|
65
|
+
@interface RTC_OBJC_TYPE (RTCDataChannel) : NSObject
|
|
66
|
+
|
|
67
|
+
/**
|
|
68
|
+
* A label that can be used to distinguish this data channel from other data
|
|
69
|
+
* channel objects.
|
|
70
|
+
*/
|
|
71
|
+
@property(nonatomic, readonly) NSString *label;
|
|
72
|
+
|
|
73
|
+
/** Whether the data channel can send messages in unreliable mode. */
|
|
74
|
+
@property(nonatomic, readonly) BOOL isReliable DEPRECATED_ATTRIBUTE;
|
|
75
|
+
|
|
76
|
+
/** Returns whether this data channel is ordered or not. */
|
|
77
|
+
@property(nonatomic, readonly) BOOL isOrdered;
|
|
78
|
+
|
|
79
|
+
/** Deprecated. Use maxPacketLifeTime. */
|
|
80
|
+
@property(nonatomic, readonly) NSUInteger maxRetransmitTime DEPRECATED_ATTRIBUTE;
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* The length of the time window (in milliseconds) during which transmissions
|
|
84
|
+
* and retransmissions may occur in unreliable mode.
|
|
85
|
+
*/
|
|
86
|
+
@property(nonatomic, readonly) uint16_t maxPacketLifeTime;
|
|
87
|
+
|
|
88
|
+
/**
|
|
89
|
+
* The maximum number of retransmissions that are attempted in unreliable mode.
|
|
90
|
+
*/
|
|
91
|
+
@property(nonatomic, readonly) uint16_t maxRetransmits;
|
|
92
|
+
|
|
93
|
+
/**
|
|
94
|
+
* The name of the sub-protocol used with this data channel, if any. Otherwise
|
|
95
|
+
* this returns an empty string.
|
|
96
|
+
*/
|
|
97
|
+
@property(nonatomic, readonly) NSString *protocol;
|
|
98
|
+
|
|
99
|
+
/**
|
|
100
|
+
* Returns whether this data channel was negotiated by the application or not.
|
|
101
|
+
*/
|
|
102
|
+
@property(nonatomic, readonly) BOOL isNegotiated;
|
|
103
|
+
|
|
104
|
+
/** Deprecated. Use channelId. */
|
|
105
|
+
@property(nonatomic, readonly) NSInteger streamId DEPRECATED_ATTRIBUTE;
|
|
106
|
+
|
|
107
|
+
/** The identifier for this data channel. */
|
|
108
|
+
@property(nonatomic, readonly) int channelId;
|
|
109
|
+
|
|
110
|
+
/** The state of the data channel. */
|
|
111
|
+
@property(nonatomic, readonly) RTCDataChannelState readyState;
|
|
112
|
+
|
|
113
|
+
/**
|
|
114
|
+
* The number of bytes of application data that have been queued using
|
|
115
|
+
* `sendData:` but that have not yet been transmitted to the network.
|
|
116
|
+
*/
|
|
117
|
+
@property(nonatomic, readonly) uint64_t bufferedAmount;
|
|
118
|
+
|
|
119
|
+
/** The delegate for this data channel. */
|
|
120
|
+
@property(nonatomic, weak) id<RTC_OBJC_TYPE(RTCDataChannelDelegate)> delegate;
|
|
121
|
+
|
|
122
|
+
- (instancetype)init NS_UNAVAILABLE;
|
|
123
|
+
|
|
124
|
+
/** Closes the data channel. */
|
|
125
|
+
- (void)close;
|
|
126
|
+
|
|
127
|
+
/** Attempt to send `data` on this data channel's underlying data transport. */
|
|
128
|
+
- (BOOL)sendData:(RTC_OBJC_TYPE(RTCDataBuffer) *)data;
|
|
129
|
+
|
|
130
|
+
@end
|
|
131
|
+
|
|
132
|
+
NS_ASSUME_NONNULL_END
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2015 The WebRTC project authors. All Rights Reserved.
|
|
3
|
+
*
|
|
4
|
+
* Use of this source code is governed by a BSD-style license
|
|
5
|
+
* that can be found in the LICENSE file in the root of the source
|
|
6
|
+
* tree. An additional intellectual property rights grant can be found
|
|
7
|
+
* in the file PATENTS. All contributing project authors may
|
|
8
|
+
* be found in the AUTHORS file in the root of the source tree.
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
#import <AvailabilityMacros.h>
|
|
12
|
+
#import <Foundation/Foundation.h>
|
|
13
|
+
|
|
14
|
+
#import <WebRTC/RTCMacros.h>
|
|
15
|
+
|
|
16
|
+
NS_ASSUME_NONNULL_BEGIN
|
|
17
|
+
|
|
18
|
+
RTC_OBJC_EXPORT
|
|
19
|
+
@interface RTC_OBJC_TYPE (RTCDataChannelConfiguration) : NSObject
|
|
20
|
+
|
|
21
|
+
/** Set to YES if ordered delivery is required. */
|
|
22
|
+
@property(nonatomic, assign) BOOL isOrdered;
|
|
23
|
+
|
|
24
|
+
/** Deprecated. Use maxPacketLifeTime. */
|
|
25
|
+
@property(nonatomic, assign) NSInteger maxRetransmitTimeMs DEPRECATED_ATTRIBUTE;
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* Max period in milliseconds in which retransmissions will be sent. After this
|
|
29
|
+
* time, no more retransmissions will be sent. -1 if unset.
|
|
30
|
+
*/
|
|
31
|
+
@property(nonatomic, assign) int maxPacketLifeTime;
|
|
32
|
+
|
|
33
|
+
/** The max number of retransmissions. -1 if unset. */
|
|
34
|
+
@property(nonatomic, assign) int maxRetransmits;
|
|
35
|
+
|
|
36
|
+
/** Set to YES if the channel has been externally negotiated and we do not send
|
|
37
|
+
* an in-band signalling in the form of an "open" message.
|
|
38
|
+
*/
|
|
39
|
+
@property(nonatomic, assign) BOOL isNegotiated;
|
|
40
|
+
|
|
41
|
+
/** Deprecated. Use channelId. */
|
|
42
|
+
@property(nonatomic, assign) int streamId DEPRECATED_ATTRIBUTE;
|
|
43
|
+
|
|
44
|
+
/** The id of the data channel. */
|
|
45
|
+
@property(nonatomic, assign) int channelId;
|
|
46
|
+
|
|
47
|
+
/** Set by the application and opaque to the WebRTC implementation. */
|
|
48
|
+
@property(nonatomic) NSString* protocol;
|
|
49
|
+
|
|
50
|
+
@end
|
|
51
|
+
|
|
52
|
+
NS_ASSUME_NONNULL_END
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2017 The WebRTC project authors. All Rights Reserved.
|
|
3
|
+
*
|
|
4
|
+
* Use of this source code is governed by a BSD-style license
|
|
5
|
+
* that can be found in the LICENSE file in the root of the source
|
|
6
|
+
* tree. An additional intellectual property rights grant can be found
|
|
7
|
+
* in the file PATENTS. All contributing project authors may
|
|
8
|
+
* be found in the AUTHORS file in the root of the source tree.
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
#import <Foundation/Foundation.h>
|
|
12
|
+
|
|
13
|
+
#import <WebRTC/RTCMacros.h>
|
|
14
|
+
#import <WebRTC/RTCVideoDecoderFactory.h>
|
|
15
|
+
|
|
16
|
+
NS_ASSUME_NONNULL_BEGIN
|
|
17
|
+
|
|
18
|
+
/** This decoder factory include support for all codecs bundled with WebRTC. If using custom
|
|
19
|
+
* codecs, create custom implementations of RTCVideoEncoderFactory and
|
|
20
|
+
* RTCVideoDecoderFactory.
|
|
21
|
+
*/
|
|
22
|
+
RTC_OBJC_EXPORT
|
|
23
|
+
@interface RTC_OBJC_TYPE (RTCDefaultVideoDecoderFactory) : NSObject <RTC_OBJC_TYPE(RTCVideoDecoderFactory)>
|
|
24
|
+
@end
|
|
25
|
+
|
|
26
|
+
NS_ASSUME_NONNULL_END
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2017 The WebRTC project authors. All Rights Reserved.
|
|
3
|
+
*
|
|
4
|
+
* Use of this source code is governed by a BSD-style license
|
|
5
|
+
* that can be found in the LICENSE file in the root of the source
|
|
6
|
+
* tree. An additional intellectual property rights grant can be found
|
|
7
|
+
* in the file PATENTS. All contributing project authors may
|
|
8
|
+
* be found in the AUTHORS file in the root of the source tree.
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
#import <Foundation/Foundation.h>
|
|
12
|
+
|
|
13
|
+
#import <WebRTC/RTCMacros.h>
|
|
14
|
+
#import <WebRTC/RTCVideoEncoderFactory.h>
|
|
15
|
+
|
|
16
|
+
NS_ASSUME_NONNULL_BEGIN
|
|
17
|
+
|
|
18
|
+
/** This encoder factory include support for all codecs bundled with WebRTC. If using custom
|
|
19
|
+
* codecs, create custom implementations of RTCVideoEncoderFactory and
|
|
20
|
+
* RTCVideoDecoderFactory.
|
|
21
|
+
*/
|
|
22
|
+
RTC_OBJC_EXPORT
|
|
23
|
+
@interface RTC_OBJC_TYPE (RTCDefaultVideoEncoderFactory) : NSObject <RTC_OBJC_TYPE(RTCVideoEncoderFactory)>
|
|
24
|
+
|
|
25
|
+
@property(nonatomic, retain) RTC_OBJC_TYPE(RTCVideoCodecInfo) *preferredCodec;
|
|
26
|
+
|
|
27
|
+
+ (NSArray<RTC_OBJC_TYPE(RTCVideoCodecInfo) *> *)supportedCodecs;
|
|
28
|
+
|
|
29
|
+
@end
|
|
30
|
+
|
|
31
|
+
NS_ASSUME_NONNULL_END
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2015 The WebRTC project authors. All Rights Reserved.
|
|
3
|
+
*
|
|
4
|
+
* Use of this source code is governed by a BSD-style license
|
|
5
|
+
* that can be found in the LICENSE file in the root of the source
|
|
6
|
+
* tree. An additional intellectual property rights grant can be found
|
|
7
|
+
* in the file PATENTS. All contributing project authors may
|
|
8
|
+
* be found in the AUTHORS file in the root of the source tree.
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
#import <Foundation/Foundation.h>
|
|
12
|
+
|
|
13
|
+
#import <WebRTC/RTCMacros.h>
|
|
14
|
+
|
|
15
|
+
typedef NS_ENUM(NSInteger, RTCDispatcherQueueType) {
|
|
16
|
+
// Main dispatcher queue.
|
|
17
|
+
RTCDispatcherTypeMain,
|
|
18
|
+
// Used for starting/stopping AVCaptureSession, and assigning
|
|
19
|
+
// capture session to AVCaptureVideoPreviewLayer.
|
|
20
|
+
RTCDispatcherTypeCaptureSession,
|
|
21
|
+
// Used for operations on AVAudioSession.
|
|
22
|
+
RTCDispatcherTypeAudioSession,
|
|
23
|
+
// Used for operations on NWPathMonitor.
|
|
24
|
+
RTCDispatcherTypeNetworkMonitor,
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
/** Dispatcher that asynchronously dispatches blocks to a specific
|
|
28
|
+
* shared dispatch queue.
|
|
29
|
+
*/
|
|
30
|
+
RTC_OBJC_EXPORT
|
|
31
|
+
@interface RTC_OBJC_TYPE (RTCDispatcher) : NSObject
|
|
32
|
+
|
|
33
|
+
- (instancetype)init NS_UNAVAILABLE;
|
|
34
|
+
|
|
35
|
+
/** Dispatch the block asynchronously on the queue for dispatchType.
|
|
36
|
+
* @param dispatchType The queue type to dispatch on.
|
|
37
|
+
* @param block The block to dispatch asynchronously.
|
|
38
|
+
*/
|
|
39
|
+
+ (void)dispatchAsyncOnType:(RTCDispatcherQueueType)dispatchType block:(dispatch_block_t)block;
|
|
40
|
+
|
|
41
|
+
/** Returns YES if run on queue for the dispatchType otherwise NO.
|
|
42
|
+
* Useful for asserting that a method is run on a correct queue.
|
|
43
|
+
*/
|
|
44
|
+
+ (BOOL)isOnQueueForType:(RTCDispatcherQueueType)dispatchType;
|
|
45
|
+
|
|
46
|
+
@end
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2017 The WebRTC project authors. All Rights Reserved.
|
|
3
|
+
*
|
|
4
|
+
* Use of this source code is governed by a BSD-style license
|
|
5
|
+
* that can be found in the LICENSE file in the root of the source
|
|
6
|
+
* tree. An additional intellectual property rights grant can be found
|
|
7
|
+
* in the file PATENTS. All contributing project authors may
|
|
8
|
+
* be found in the AUTHORS file in the root of the source tree.
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
#import <Foundation/Foundation.h>
|
|
12
|
+
|
|
13
|
+
#import <WebRTC/RTCMacros.h>
|
|
14
|
+
|
|
15
|
+
NS_ASSUME_NONNULL_BEGIN
|
|
16
|
+
|
|
17
|
+
RTC_OBJC_EXPORT
|
|
18
|
+
@protocol RTC_OBJC_TYPE
|
|
19
|
+
(RTCDtmfSender)<NSObject>
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* Returns true if this RTCDtmfSender is capable of sending DTMF. Otherwise
|
|
23
|
+
* returns false. To be able to send DTMF, the associated RTCRtpSender must be
|
|
24
|
+
* able to send packets, and a "telephone-event" codec must be negotiated.
|
|
25
|
+
*/
|
|
26
|
+
@property(nonatomic, readonly) BOOL canInsertDtmf;
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* Queues a task that sends the DTMF tones. The tones parameter is treated
|
|
30
|
+
* as a series of characters. The characters 0 through 9, A through D, #, and *
|
|
31
|
+
* generate the associated DTMF tones. The characters a to d are equivalent
|
|
32
|
+
* to A to D. The character ',' indicates a delay of 2 seconds before
|
|
33
|
+
* processing the next character in the tones parameter.
|
|
34
|
+
*
|
|
35
|
+
* Unrecognized characters are ignored.
|
|
36
|
+
*
|
|
37
|
+
* @param duration The parameter indicates the duration to use for each
|
|
38
|
+
* character passed in the tones parameter. The duration cannot be more
|
|
39
|
+
* than 6000 or less than 70 ms.
|
|
40
|
+
*
|
|
41
|
+
* @param interToneGap The parameter indicates the gap between tones.
|
|
42
|
+
* This parameter must be at least 50 ms but should be as short as
|
|
43
|
+
* possible.
|
|
44
|
+
*
|
|
45
|
+
* If InsertDtmf is called on the same object while an existing task for this
|
|
46
|
+
* object to generate DTMF is still running, the previous task is canceled.
|
|
47
|
+
* Returns true on success and false on failure.
|
|
48
|
+
*/
|
|
49
|
+
- (BOOL)insertDtmf:(nonnull NSString *)tones
|
|
50
|
+
duration:(NSTimeInterval)duration
|
|
51
|
+
interToneGap:(NSTimeInterval)interToneGap;
|
|
52
|
+
|
|
53
|
+
/** The tones remaining to be played out */
|
|
54
|
+
- (nonnull NSString *)remainingTones;
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* The current tone duration value. This value will be the value last set via the
|
|
58
|
+
* insertDtmf method, or the default value of 100 ms if insertDtmf was never called.
|
|
59
|
+
*/
|
|
60
|
+
- (NSTimeInterval)duration;
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* The current value of the between-tone gap. This value will be the value last set
|
|
64
|
+
* via the insertDtmf() method, or the default value of 50 ms if insertDtmf() was never
|
|
65
|
+
* called.
|
|
66
|
+
*/
|
|
67
|
+
- (NSTimeInterval)interToneGap;
|
|
68
|
+
|
|
69
|
+
@end
|
|
70
|
+
|
|
71
|
+
NS_ASSUME_NONNULL_END
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2017 The WebRTC project authors. All Rights Reserved.
|
|
3
|
+
*
|
|
4
|
+
* Use of this source code is governed by a BSD-style license
|
|
5
|
+
* that can be found in the LICENSE file in the root of the source
|
|
6
|
+
* tree. An additional intellectual property rights grant can be found
|
|
7
|
+
* in the file PATENTS. All contributing project authors may
|
|
8
|
+
* be found in the AUTHORS file in the root of the source tree.
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
#import <Foundation/Foundation.h>
|
|
12
|
+
|
|
13
|
+
#import <WebRTC/RTCMacros.h>
|
|
14
|
+
#import <WebRTC/RTCVideoFrame.h>
|
|
15
|
+
|
|
16
|
+
NS_ASSUME_NONNULL_BEGIN
|
|
17
|
+
|
|
18
|
+
/** Represents an encoded frame's type. */
|
|
19
|
+
typedef NS_ENUM(NSUInteger, RTCFrameType) {
|
|
20
|
+
RTCFrameTypeEmptyFrame = 0,
|
|
21
|
+
RTCFrameTypeAudioFrameSpeech = 1,
|
|
22
|
+
RTCFrameTypeAudioFrameCN = 2,
|
|
23
|
+
RTCFrameTypeVideoFrameKey = 3,
|
|
24
|
+
RTCFrameTypeVideoFrameDelta = 4,
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
typedef NS_ENUM(NSUInteger, RTCVideoContentType) {
|
|
28
|
+
RTCVideoContentTypeUnspecified,
|
|
29
|
+
RTCVideoContentTypeScreenshare,
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
/** Represents an encoded frame. Corresponds to webrtc::EncodedImage. */
|
|
33
|
+
RTC_OBJC_EXPORT
|
|
34
|
+
@interface RTC_OBJC_TYPE (RTCEncodedImage) : NSObject
|
|
35
|
+
|
|
36
|
+
@property(nonatomic, strong) NSData *buffer;
|
|
37
|
+
@property(nonatomic, assign) int32_t encodedWidth;
|
|
38
|
+
@property(nonatomic, assign) int32_t encodedHeight;
|
|
39
|
+
@property(nonatomic, assign) uint32_t timeStamp;
|
|
40
|
+
@property(nonatomic, assign) int64_t captureTimeMs;
|
|
41
|
+
@property(nonatomic, assign) int64_t ntpTimeMs;
|
|
42
|
+
@property(nonatomic, assign) uint8_t flags;
|
|
43
|
+
@property(nonatomic, assign) int64_t encodeStartMs;
|
|
44
|
+
@property(nonatomic, assign) int64_t encodeFinishMs;
|
|
45
|
+
@property(nonatomic, assign) RTCFrameType frameType;
|
|
46
|
+
@property(nonatomic, assign) RTCVideoRotation rotation;
|
|
47
|
+
@property(nonatomic, strong) NSNumber *qp;
|
|
48
|
+
@property(nonatomic, assign) RTCVideoContentType contentType;
|
|
49
|
+
|
|
50
|
+
@end
|
|
51
|
+
|
|
52
|
+
NS_ASSUME_NONNULL_END
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2016 The WebRTC Project Authors. All rights reserved.
|
|
3
|
+
*
|
|
4
|
+
* Use of this source code is governed by a BSD-style license
|
|
5
|
+
* that can be found in the LICENSE file in the root of the source
|
|
6
|
+
* tree. An additional intellectual property rights grant can be found
|
|
7
|
+
* in the file PATENTS. All contributing project authors may
|
|
8
|
+
* be found in the AUTHORS file in the root of the source tree.
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
#import <Foundation/Foundation.h>
|
|
12
|
+
|
|
13
|
+
#import <WebRTC/RTCMacros.h>
|
|
14
|
+
|
|
15
|
+
/** The only valid value for the following if set is kRTCFieldTrialEnabledValue. */
|
|
16
|
+
RTC_EXTERN NSString *const kRTCFieldTrialAudioForceABWENoTWCCKey;
|
|
17
|
+
RTC_EXTERN NSString *const kRTCFieldTrialFlexFec03AdvertisedKey;
|
|
18
|
+
RTC_EXTERN NSString *const kRTCFieldTrialFlexFec03Key;
|
|
19
|
+
RTC_EXTERN NSString *const kRTCFieldTrialH264HighProfileKey;
|
|
20
|
+
RTC_EXTERN NSString *const kRTCFieldTrialMinimizeResamplingOnMobileKey;
|
|
21
|
+
RTC_EXTERN NSString *const kRTCFieldTrialUseNWPathMonitor;
|
|
22
|
+
|
|
23
|
+
/** The valid value for field trials above. */
|
|
24
|
+
RTC_EXTERN NSString *const kRTCFieldTrialEnabledValue;
|
|
25
|
+
|
|
26
|
+
/** Initialize field trials using a dictionary mapping field trial keys to their
|
|
27
|
+
* values. See above for valid keys and values. Must be called before any other
|
|
28
|
+
* call into WebRTC. See: webrtc/system_wrappers/include/field_trial.h
|
|
29
|
+
*/
|
|
30
|
+
RTC_EXTERN void RTCInitFieldTrialDictionary(NSDictionary<NSString *, NSString *> *fieldTrials);
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2015 The WebRTC project authors. All Rights Reserved.
|
|
3
|
+
*
|
|
4
|
+
* Use of this source code is governed by a BSD-style license
|
|
5
|
+
* that can be found in the LICENSE file in the root of the source
|
|
6
|
+
* tree. An additional intellectual property rights grant can be found
|
|
7
|
+
* in the file PATENTS. All contributing project authors may
|
|
8
|
+
* be found in the AUTHORS file in the root of the source tree.
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
#import <Foundation/Foundation.h>
|
|
12
|
+
|
|
13
|
+
#import <WebRTC/RTCMacros.h>
|
|
14
|
+
|
|
15
|
+
typedef NS_ENUM(NSUInteger, RTCFileLoggerSeverity) {
|
|
16
|
+
RTCFileLoggerSeverityVerbose,
|
|
17
|
+
RTCFileLoggerSeverityInfo,
|
|
18
|
+
RTCFileLoggerSeverityWarning,
|
|
19
|
+
RTCFileLoggerSeverityError
|
|
20
|
+
};
|
|
21
|
+
|
|
22
|
+
typedef NS_ENUM(NSUInteger, RTCFileLoggerRotationType) {
|
|
23
|
+
RTCFileLoggerTypeCall,
|
|
24
|
+
RTCFileLoggerTypeApp,
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
NS_ASSUME_NONNULL_BEGIN
|
|
28
|
+
|
|
29
|
+
// This class intercepts WebRTC logs and saves them to a file. The file size
|
|
30
|
+
// will not exceed the given maximum bytesize. When the maximum bytesize is
|
|
31
|
+
// reached, logs are rotated according to the rotationType specified.
|
|
32
|
+
// For kRTCFileLoggerTypeCall, logs from the beginning and the end
|
|
33
|
+
// are preserved while the middle section is overwritten instead.
|
|
34
|
+
// For kRTCFileLoggerTypeApp, the oldest log is overwritten.
|
|
35
|
+
// This class is not threadsafe.
|
|
36
|
+
RTC_OBJC_EXPORT
|
|
37
|
+
@interface RTC_OBJC_TYPE (RTCFileLogger) : NSObject
|
|
38
|
+
|
|
39
|
+
// The severity level to capture. The default is kRTCFileLoggerSeverityInfo.
|
|
40
|
+
@property(nonatomic, assign) RTCFileLoggerSeverity severity;
|
|
41
|
+
|
|
42
|
+
// The rotation type for this file logger. The default is
|
|
43
|
+
// kRTCFileLoggerTypeCall.
|
|
44
|
+
@property(nonatomic, readonly) RTCFileLoggerRotationType rotationType;
|
|
45
|
+
|
|
46
|
+
// Disables buffering disk writes. Should be set before `start`. Buffering
|
|
47
|
+
// is enabled by default for performance.
|
|
48
|
+
@property(nonatomic, assign) BOOL shouldDisableBuffering;
|
|
49
|
+
|
|
50
|
+
// Default constructor provides default settings for dir path, file size and
|
|
51
|
+
// rotation type.
|
|
52
|
+
- (instancetype)init;
|
|
53
|
+
|
|
54
|
+
// Create file logger with default rotation type.
|
|
55
|
+
- (instancetype)initWithDirPath:(NSString *)dirPath maxFileSize:(NSUInteger)maxFileSize;
|
|
56
|
+
|
|
57
|
+
- (instancetype)initWithDirPath:(NSString *)dirPath
|
|
58
|
+
maxFileSize:(NSUInteger)maxFileSize
|
|
59
|
+
rotationType:(RTCFileLoggerRotationType)rotationType NS_DESIGNATED_INITIALIZER;
|
|
60
|
+
|
|
61
|
+
// Starts writing WebRTC logs to disk if not already started. Overwrites any
|
|
62
|
+
// existing file(s).
|
|
63
|
+
- (void)start;
|
|
64
|
+
|
|
65
|
+
// Stops writing WebRTC logs to disk. This method is also called on dealloc.
|
|
66
|
+
- (void)stop;
|
|
67
|
+
|
|
68
|
+
// Returns the current contents of the logs, or nil if start has been called
|
|
69
|
+
// without a stop.
|
|
70
|
+
- (nullable NSData *)logData;
|
|
71
|
+
|
|
72
|
+
@end
|
|
73
|
+
|
|
74
|
+
NS_ASSUME_NONNULL_END
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2017 The WebRTC Project Authors. All rights reserved.
|
|
3
|
+
*
|
|
4
|
+
* Use of this source code is governed by a BSD-style license
|
|
5
|
+
* that can be found in the LICENSE file in the root of the source
|
|
6
|
+
* tree. An additional intellectual property rights grant can be found
|
|
7
|
+
* in the file PATENTS. All contributing project authors may
|
|
8
|
+
* be found in the AUTHORS file in the root of the source tree.
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
#import <Foundation/Foundation.h>
|
|
12
|
+
|
|
13
|
+
#import <WebRTC/RTCVideoCapturer.h>
|
|
14
|
+
|
|
15
|
+
NS_ASSUME_NONNULL_BEGIN
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Error passing block.
|
|
19
|
+
*/
|
|
20
|
+
typedef void (^RTCFileVideoCapturerErrorBlock)(NSError *error);
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* Captures buffers from bundled video file.
|
|
24
|
+
*
|
|
25
|
+
* See @c RTCVideoCapturer for more info on capturers.
|
|
26
|
+
*/
|
|
27
|
+
RTC_OBJC_EXPORT
|
|
28
|
+
|
|
29
|
+
NS_CLASS_AVAILABLE_IOS(10)
|
|
30
|
+
@interface RTC_OBJC_TYPE (RTCFileVideoCapturer) : RTC_OBJC_TYPE(RTCVideoCapturer)
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* Starts asynchronous capture of frames from video file.
|
|
34
|
+
*
|
|
35
|
+
* Capturing is not started if error occurs. Underlying error will be
|
|
36
|
+
* relayed in the errorBlock if one is provided.
|
|
37
|
+
* Successfully captured video frames will be passed to the delegate.
|
|
38
|
+
*
|
|
39
|
+
* @param nameOfFile The name of the bundled video file to be read.
|
|
40
|
+
* @errorBlock block to be executed upon error.
|
|
41
|
+
*/
|
|
42
|
+
- (void)startCapturingFromFileNamed:(NSString *)nameOfFile
|
|
43
|
+
onError:(__nullable RTCFileVideoCapturerErrorBlock)errorBlock;
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* Immediately stops capture.
|
|
47
|
+
*/
|
|
48
|
+
- (void)stopCapture;
|
|
49
|
+
@end
|
|
50
|
+
|
|
51
|
+
NS_ASSUME_NONNULL_END
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2017 The WebRTC project authors. All Rights Reserved.
|
|
3
|
+
*
|
|
4
|
+
* Use of this source code is governed by a BSD-style license
|
|
5
|
+
* that can be found in the LICENSE file in the root of the source
|
|
6
|
+
* tree. An additional intellectual property rights grant can be found
|
|
7
|
+
* in the file PATENTS. All contributing project authors may
|
|
8
|
+
* be found in the AUTHORS file in the root of the source tree.
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
#import <Foundation/Foundation.h>
|
|
12
|
+
|
|
13
|
+
#import <WebRTC/RTCMacros.h>
|
|
14
|
+
|
|
15
|
+
RTC_OBJC_EXPORT extern NSString *const kRTCVideoCodecH264Name;
|
|
16
|
+
RTC_OBJC_EXPORT extern NSString *const kRTCLevel31ConstrainedHigh;
|
|
17
|
+
RTC_OBJC_EXPORT extern NSString *const kRTCLevel31ConstrainedBaseline;
|
|
18
|
+
RTC_OBJC_EXPORT extern NSString *const kRTCMaxSupportedH264ProfileLevelConstrainedHigh;
|
|
19
|
+
RTC_OBJC_EXPORT extern NSString *const kRTCMaxSupportedH264ProfileLevelConstrainedBaseline;
|
|
20
|
+
|
|
21
|
+
/** H264 Profiles and levels. */
|
|
22
|
+
typedef NS_ENUM(NSUInteger, RTCH264Profile) {
|
|
23
|
+
RTCH264ProfileConstrainedBaseline,
|
|
24
|
+
RTCH264ProfileBaseline,
|
|
25
|
+
RTCH264ProfileMain,
|
|
26
|
+
RTCH264ProfileConstrainedHigh,
|
|
27
|
+
RTCH264ProfileHigh,
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
typedef NS_ENUM(NSUInteger, RTCH264Level) {
|
|
31
|
+
RTCH264Level1_b = 0,
|
|
32
|
+
RTCH264Level1 = 10,
|
|
33
|
+
RTCH264Level1_1 = 11,
|
|
34
|
+
RTCH264Level1_2 = 12,
|
|
35
|
+
RTCH264Level1_3 = 13,
|
|
36
|
+
RTCH264Level2 = 20,
|
|
37
|
+
RTCH264Level2_1 = 21,
|
|
38
|
+
RTCH264Level2_2 = 22,
|
|
39
|
+
RTCH264Level3 = 30,
|
|
40
|
+
RTCH264Level3_1 = 31,
|
|
41
|
+
RTCH264Level3_2 = 32,
|
|
42
|
+
RTCH264Level4 = 40,
|
|
43
|
+
RTCH264Level4_1 = 41,
|
|
44
|
+
RTCH264Level4_2 = 42,
|
|
45
|
+
RTCH264Level5 = 50,
|
|
46
|
+
RTCH264Level5_1 = 51,
|
|
47
|
+
RTCH264Level5_2 = 52
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
RTC_OBJC_EXPORT
|
|
51
|
+
@interface RTC_OBJC_TYPE (RTCH264ProfileLevelId) : NSObject
|
|
52
|
+
|
|
53
|
+
@property(nonatomic, readonly) RTCH264Profile profile;
|
|
54
|
+
@property(nonatomic, readonly) RTCH264Level level;
|
|
55
|
+
@property(nonatomic, readonly) NSString *hexString;
|
|
56
|
+
|
|
57
|
+
- (instancetype)initWithHexString:(NSString *)hexString;
|
|
58
|
+
- (instancetype)initWithProfile:(RTCH264Profile)profile level:(RTCH264Level)level;
|
|
59
|
+
|
|
60
|
+
@end
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2018 The WebRTC project authors. All Rights Reserved.
|
|
3
|
+
*
|
|
4
|
+
* Use of this source code is governed by a BSD-style license
|
|
5
|
+
* that can be found in the LICENSE file in the root of the source
|
|
6
|
+
* tree. An additional intellectual property rights grant can be found
|
|
7
|
+
* in the file PATENTS. All contributing project authors may
|
|
8
|
+
* be found in the AUTHORS file in the root of the source tree.
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
#import <AVFoundation/AVFoundation.h>
|
|
12
|
+
|
|
13
|
+
#import <WebRTC/RTCYUVPlanarBuffer.h>
|
|
14
|
+
|
|
15
|
+
NS_ASSUME_NONNULL_BEGIN
|
|
16
|
+
|
|
17
|
+
/** Protocol for RTCYUVPlanarBuffers containing I420 data */
|
|
18
|
+
RTC_OBJC_EXPORT
|
|
19
|
+
@protocol RTC_OBJC_TYPE
|
|
20
|
+
(RTCI420Buffer)<RTC_OBJC_TYPE(RTCYUVPlanarBuffer)> @end
|
|
21
|
+
|
|
22
|
+
NS_ASSUME_NONNULL_END
|