@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.
Files changed (309) hide show
  1. package/WebRTC.framework/Headers/RTCAudioSource.h +32 -0
  2. package/WebRTC.framework/Headers/RTCAudioTrack.h +28 -0
  3. package/WebRTC.framework/Headers/RTCCVPixelBuffer.h +52 -0
  4. package/WebRTC.framework/Headers/RTCCallbackLogger.h +41 -0
  5. package/WebRTC.framework/Headers/RTCCameraVideoCapturer.h +56 -0
  6. package/WebRTC.framework/Headers/RTCCertificate.h +44 -0
  7. package/WebRTC.framework/Headers/RTCCodecSpecificInfo.h +24 -0
  8. package/WebRTC.framework/Headers/RTCCodecSpecificInfoH264.h +27 -0
  9. package/WebRTC.framework/Headers/RTCConfiguration.h +262 -0
  10. package/WebRTC.framework/Headers/RTCCryptoOptions.h +63 -0
  11. package/WebRTC.framework/Headers/RTCDataChannel.h +132 -0
  12. package/WebRTC.framework/Headers/RTCDataChannelConfiguration.h +52 -0
  13. package/WebRTC.framework/Headers/RTCDefaultVideoDecoderFactory.h +26 -0
  14. package/WebRTC.framework/Headers/RTCDefaultVideoEncoderFactory.h +31 -0
  15. package/WebRTC.framework/Headers/RTCDispatcher.h +46 -0
  16. package/WebRTC.framework/Headers/RTCDtmfSender.h +71 -0
  17. package/WebRTC.framework/Headers/RTCEncodedImage.h +52 -0
  18. package/WebRTC.framework/Headers/RTCFieldTrials.h +30 -0
  19. package/WebRTC.framework/Headers/RTCFileLogger.h +74 -0
  20. package/WebRTC.framework/Headers/RTCFileVideoCapturer.h +51 -0
  21. package/WebRTC.framework/Headers/RTCH264ProfileLevelId.h +60 -0
  22. package/WebRTC.framework/Headers/RTCI420Buffer.h +22 -0
  23. package/WebRTC.framework/Headers/RTCIceCandidate.h +49 -0
  24. package/WebRTC.framework/Headers/RTCIceCandidateErrorEvent.h +42 -0
  25. package/WebRTC.framework/Headers/RTCIceServer.h +114 -0
  26. package/WebRTC.framework/Headers/RTCLegacyStatsReport.h +37 -0
  27. package/WebRTC.framework/Headers/RTCLogging.h +66 -0
  28. package/WebRTC.framework/Headers/RTCMTLNSVideoView.h +22 -0
  29. package/WebRTC.framework/Headers/RTCMacros.h +63 -0
  30. package/WebRTC.framework/Headers/RTCMediaConstraints.h +46 -0
  31. package/WebRTC.framework/Headers/RTCMediaSource.h +34 -0
  32. package/WebRTC.framework/Headers/RTCMediaStream.h +49 -0
  33. package/WebRTC.framework/Headers/RTCMediaStreamTrack.h +50 -0
  34. package/WebRTC.framework/Headers/RTCMetrics.h +23 -0
  35. package/WebRTC.framework/Headers/RTCMetricsSampleInfo.h +48 -0
  36. package/WebRTC.framework/Headers/RTCMutableI420Buffer.h +23 -0
  37. package/WebRTC.framework/Headers/RTCMutableYUVPlanarBuffer.h +28 -0
  38. package/WebRTC.framework/Headers/RTCNativeI420Buffer.h +23 -0
  39. package/WebRTC.framework/Headers/RTCNativeMutableI420Buffer.h +24 -0
  40. package/WebRTC.framework/Headers/RTCPeerConnection.h +397 -0
  41. package/WebRTC.framework/Headers/RTCPeerConnectionFactory.h +113 -0
  42. package/WebRTC.framework/Headers/RTCPeerConnectionFactoryOptions.h +38 -0
  43. package/WebRTC.framework/Headers/RTCRtcpParameters.h +30 -0
  44. package/WebRTC.framework/Headers/RTCRtpCodecParameters.h +73 -0
  45. package/WebRTC.framework/Headers/RTCRtpEncodingParameters.h +76 -0
  46. package/WebRTC.framework/Headers/RTCRtpHeaderExtension.h +33 -0
  47. package/WebRTC.framework/Headers/RTCRtpParameters.h +58 -0
  48. package/WebRTC.framework/Headers/RTCRtpReceiver.h +86 -0
  49. package/WebRTC.framework/Headers/RTCRtpSender.h +54 -0
  50. package/WebRTC.framework/Headers/RTCRtpTransceiver.h +137 -0
  51. package/WebRTC.framework/Headers/RTCSSLAdapter.h +20 -0
  52. package/WebRTC.framework/Headers/RTCSSLCertificateVerifier.h +25 -0
  53. package/WebRTC.framework/Headers/RTCSessionDescription.h +48 -0
  54. package/WebRTC.framework/Headers/RTCStatisticsReport.h +55 -0
  55. package/WebRTC.framework/Headers/RTCTracing.h +21 -0
  56. package/WebRTC.framework/Headers/RTCVideoCapturer.h +35 -0
  57. package/WebRTC.framework/Headers/RTCVideoCodecInfo.h +36 -0
  58. package/WebRTC.framework/Headers/RTCVideoDecoder.h +41 -0
  59. package/WebRTC.framework/Headers/RTCVideoDecoderAV1.h +25 -0
  60. package/WebRTC.framework/Headers/RTCVideoDecoderFactory.h +32 -0
  61. package/WebRTC.framework/Headers/RTCVideoDecoderFactoryH264.h +18 -0
  62. package/WebRTC.framework/Headers/RTCVideoDecoderH264.h +18 -0
  63. package/WebRTC.framework/Headers/RTCVideoDecoderVP8.h +25 -0
  64. package/WebRTC.framework/Headers/RTCVideoDecoderVP9.h +27 -0
  65. package/WebRTC.framework/Headers/RTCVideoEncoder.h +59 -0
  66. package/WebRTC.framework/Headers/RTCVideoEncoderAV1.h +27 -0
  67. package/WebRTC.framework/Headers/RTCVideoEncoderFactory.h +52 -0
  68. package/WebRTC.framework/Headers/RTCVideoEncoderFactoryH264.h +18 -0
  69. package/WebRTC.framework/Headers/RTCVideoEncoderH264.h +22 -0
  70. package/WebRTC.framework/Headers/RTCVideoEncoderQpThresholds.h +28 -0
  71. package/WebRTC.framework/Headers/RTCVideoEncoderSettings.h +42 -0
  72. package/WebRTC.framework/Headers/RTCVideoEncoderVP8.h +25 -0
  73. package/WebRTC.framework/Headers/RTCVideoEncoderVP9.h +27 -0
  74. package/WebRTC.framework/Headers/RTCVideoFrame.h +86 -0
  75. package/WebRTC.framework/Headers/RTCVideoFrameBuffer.h +40 -0
  76. package/WebRTC.framework/Headers/RTCVideoRenderer.h +43 -0
  77. package/WebRTC.framework/Headers/RTCVideoSource.h +37 -0
  78. package/WebRTC.framework/Headers/RTCVideoTrack.h +38 -0
  79. package/WebRTC.framework/Headers/RTCVideoViewShading.h +39 -0
  80. package/WebRTC.framework/Headers/RTCYUVPlanarBuffer.h +46 -0
  81. package/WebRTC.framework/Headers/WebRTC.h +90 -0
  82. package/WebRTC.framework/Modules/module.modulemap +6 -0
  83. package/WebRTC.framework/Resources/Info.plist +36 -0
  84. package/WebRTC.framework/Versions/A/Headers/RTCAudioSource.h +32 -0
  85. package/WebRTC.framework/Versions/A/Headers/RTCAudioTrack.h +28 -0
  86. package/WebRTC.framework/Versions/A/Headers/RTCCVPixelBuffer.h +52 -0
  87. package/WebRTC.framework/Versions/A/Headers/RTCCallbackLogger.h +41 -0
  88. package/WebRTC.framework/Versions/A/Headers/RTCCameraVideoCapturer.h +56 -0
  89. package/WebRTC.framework/Versions/A/Headers/RTCCertificate.h +44 -0
  90. package/WebRTC.framework/Versions/A/Headers/RTCCodecSpecificInfo.h +24 -0
  91. package/WebRTC.framework/Versions/A/Headers/RTCCodecSpecificInfoH264.h +27 -0
  92. package/WebRTC.framework/Versions/A/Headers/RTCConfiguration.h +262 -0
  93. package/WebRTC.framework/Versions/A/Headers/RTCCryptoOptions.h +63 -0
  94. package/WebRTC.framework/Versions/A/Headers/RTCDataChannel.h +132 -0
  95. package/WebRTC.framework/Versions/A/Headers/RTCDataChannelConfiguration.h +52 -0
  96. package/WebRTC.framework/Versions/A/Headers/RTCDefaultVideoDecoderFactory.h +26 -0
  97. package/WebRTC.framework/Versions/A/Headers/RTCDefaultVideoEncoderFactory.h +31 -0
  98. package/WebRTC.framework/Versions/A/Headers/RTCDispatcher.h +46 -0
  99. package/WebRTC.framework/Versions/A/Headers/RTCDtmfSender.h +71 -0
  100. package/WebRTC.framework/Versions/A/Headers/RTCEncodedImage.h +52 -0
  101. package/WebRTC.framework/Versions/A/Headers/RTCFieldTrials.h +30 -0
  102. package/WebRTC.framework/Versions/A/Headers/RTCFileLogger.h +74 -0
  103. package/WebRTC.framework/Versions/A/Headers/RTCFileVideoCapturer.h +51 -0
  104. package/WebRTC.framework/Versions/A/Headers/RTCH264ProfileLevelId.h +60 -0
  105. package/WebRTC.framework/Versions/A/Headers/RTCI420Buffer.h +22 -0
  106. package/WebRTC.framework/Versions/A/Headers/RTCIceCandidate.h +49 -0
  107. package/WebRTC.framework/Versions/A/Headers/RTCIceCandidateErrorEvent.h +42 -0
  108. package/WebRTC.framework/Versions/A/Headers/RTCIceServer.h +114 -0
  109. package/WebRTC.framework/Versions/A/Headers/RTCLegacyStatsReport.h +37 -0
  110. package/WebRTC.framework/Versions/A/Headers/RTCLogging.h +66 -0
  111. package/WebRTC.framework/Versions/A/Headers/RTCMTLNSVideoView.h +22 -0
  112. package/WebRTC.framework/Versions/A/Headers/RTCMacros.h +63 -0
  113. package/WebRTC.framework/Versions/A/Headers/RTCMediaConstraints.h +46 -0
  114. package/WebRTC.framework/Versions/A/Headers/RTCMediaSource.h +34 -0
  115. package/WebRTC.framework/Versions/A/Headers/RTCMediaStream.h +49 -0
  116. package/WebRTC.framework/Versions/A/Headers/RTCMediaStreamTrack.h +50 -0
  117. package/WebRTC.framework/Versions/A/Headers/RTCMetrics.h +23 -0
  118. package/WebRTC.framework/Versions/A/Headers/RTCMetricsSampleInfo.h +48 -0
  119. package/WebRTC.framework/Versions/A/Headers/RTCMutableI420Buffer.h +23 -0
  120. package/WebRTC.framework/Versions/A/Headers/RTCMutableYUVPlanarBuffer.h +28 -0
  121. package/WebRTC.framework/Versions/A/Headers/RTCNativeI420Buffer.h +23 -0
  122. package/WebRTC.framework/Versions/A/Headers/RTCNativeMutableI420Buffer.h +24 -0
  123. package/WebRTC.framework/Versions/A/Headers/RTCPeerConnection.h +397 -0
  124. package/WebRTC.framework/Versions/A/Headers/RTCPeerConnectionFactory.h +113 -0
  125. package/WebRTC.framework/Versions/A/Headers/RTCPeerConnectionFactoryOptions.h +38 -0
  126. package/WebRTC.framework/Versions/A/Headers/RTCRtcpParameters.h +30 -0
  127. package/WebRTC.framework/Versions/A/Headers/RTCRtpCodecParameters.h +73 -0
  128. package/WebRTC.framework/Versions/A/Headers/RTCRtpEncodingParameters.h +76 -0
  129. package/WebRTC.framework/Versions/A/Headers/RTCRtpHeaderExtension.h +33 -0
  130. package/WebRTC.framework/Versions/A/Headers/RTCRtpParameters.h +58 -0
  131. package/WebRTC.framework/Versions/A/Headers/RTCRtpReceiver.h +86 -0
  132. package/WebRTC.framework/Versions/A/Headers/RTCRtpSender.h +54 -0
  133. package/WebRTC.framework/Versions/A/Headers/RTCRtpTransceiver.h +137 -0
  134. package/WebRTC.framework/Versions/A/Headers/RTCSSLAdapter.h +20 -0
  135. package/WebRTC.framework/Versions/A/Headers/RTCSSLCertificateVerifier.h +25 -0
  136. package/WebRTC.framework/Versions/A/Headers/RTCSessionDescription.h +48 -0
  137. package/WebRTC.framework/Versions/A/Headers/RTCStatisticsReport.h +55 -0
  138. package/WebRTC.framework/Versions/A/Headers/RTCTracing.h +21 -0
  139. package/WebRTC.framework/Versions/A/Headers/RTCVideoCapturer.h +35 -0
  140. package/WebRTC.framework/Versions/A/Headers/RTCVideoCodecInfo.h +36 -0
  141. package/WebRTC.framework/Versions/A/Headers/RTCVideoDecoder.h +41 -0
  142. package/WebRTC.framework/Versions/A/Headers/RTCVideoDecoderAV1.h +25 -0
  143. package/WebRTC.framework/Versions/A/Headers/RTCVideoDecoderFactory.h +32 -0
  144. package/WebRTC.framework/Versions/A/Headers/RTCVideoDecoderFactoryH264.h +18 -0
  145. package/WebRTC.framework/Versions/A/Headers/RTCVideoDecoderH264.h +18 -0
  146. package/WebRTC.framework/Versions/A/Headers/RTCVideoDecoderVP8.h +25 -0
  147. package/WebRTC.framework/Versions/A/Headers/RTCVideoDecoderVP9.h +27 -0
  148. package/WebRTC.framework/Versions/A/Headers/RTCVideoEncoder.h +59 -0
  149. package/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderAV1.h +27 -0
  150. package/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderFactory.h +52 -0
  151. package/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderFactoryH264.h +18 -0
  152. package/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderH264.h +22 -0
  153. package/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderQpThresholds.h +28 -0
  154. package/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderSettings.h +42 -0
  155. package/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderVP8.h +25 -0
  156. package/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderVP9.h +27 -0
  157. package/WebRTC.framework/Versions/A/Headers/RTCVideoFrame.h +86 -0
  158. package/WebRTC.framework/Versions/A/Headers/RTCVideoFrameBuffer.h +40 -0
  159. package/WebRTC.framework/Versions/A/Headers/RTCVideoRenderer.h +43 -0
  160. package/WebRTC.framework/Versions/A/Headers/RTCVideoSource.h +37 -0
  161. package/WebRTC.framework/Versions/A/Headers/RTCVideoTrack.h +38 -0
  162. package/WebRTC.framework/Versions/A/Headers/RTCVideoViewShading.h +39 -0
  163. package/WebRTC.framework/Versions/A/Headers/RTCYUVPlanarBuffer.h +46 -0
  164. package/WebRTC.framework/Versions/A/Headers/WebRTC.h +90 -0
  165. package/WebRTC.framework/Versions/A/Modules/module.modulemap +6 -0
  166. package/WebRTC.framework/Versions/A/Resources/Info.plist +36 -0
  167. package/WebRTC.framework/Versions/A/WebRTC +0 -0
  168. package/WebRTC.framework/Versions/Current/Headers/RTCAudioSource.h +32 -0
  169. package/WebRTC.framework/Versions/Current/Headers/RTCAudioTrack.h +28 -0
  170. package/WebRTC.framework/Versions/Current/Headers/RTCCVPixelBuffer.h +52 -0
  171. package/WebRTC.framework/Versions/Current/Headers/RTCCallbackLogger.h +41 -0
  172. package/WebRTC.framework/Versions/Current/Headers/RTCCameraVideoCapturer.h +56 -0
  173. package/WebRTC.framework/Versions/Current/Headers/RTCCertificate.h +44 -0
  174. package/WebRTC.framework/Versions/Current/Headers/RTCCodecSpecificInfo.h +24 -0
  175. package/WebRTC.framework/Versions/Current/Headers/RTCCodecSpecificInfoH264.h +27 -0
  176. package/WebRTC.framework/Versions/Current/Headers/RTCConfiguration.h +262 -0
  177. package/WebRTC.framework/Versions/Current/Headers/RTCCryptoOptions.h +63 -0
  178. package/WebRTC.framework/Versions/Current/Headers/RTCDataChannel.h +132 -0
  179. package/WebRTC.framework/Versions/Current/Headers/RTCDataChannelConfiguration.h +52 -0
  180. package/WebRTC.framework/Versions/Current/Headers/RTCDefaultVideoDecoderFactory.h +26 -0
  181. package/WebRTC.framework/Versions/Current/Headers/RTCDefaultVideoEncoderFactory.h +31 -0
  182. package/WebRTC.framework/Versions/Current/Headers/RTCDispatcher.h +46 -0
  183. package/WebRTC.framework/Versions/Current/Headers/RTCDtmfSender.h +71 -0
  184. package/WebRTC.framework/Versions/Current/Headers/RTCEncodedImage.h +52 -0
  185. package/WebRTC.framework/Versions/Current/Headers/RTCFieldTrials.h +30 -0
  186. package/WebRTC.framework/Versions/Current/Headers/RTCFileLogger.h +74 -0
  187. package/WebRTC.framework/Versions/Current/Headers/RTCFileVideoCapturer.h +51 -0
  188. package/WebRTC.framework/Versions/Current/Headers/RTCH264ProfileLevelId.h +60 -0
  189. package/WebRTC.framework/Versions/Current/Headers/RTCI420Buffer.h +22 -0
  190. package/WebRTC.framework/Versions/Current/Headers/RTCIceCandidate.h +49 -0
  191. package/WebRTC.framework/Versions/Current/Headers/RTCIceCandidateErrorEvent.h +42 -0
  192. package/WebRTC.framework/Versions/Current/Headers/RTCIceServer.h +114 -0
  193. package/WebRTC.framework/Versions/Current/Headers/RTCLegacyStatsReport.h +37 -0
  194. package/WebRTC.framework/Versions/Current/Headers/RTCLogging.h +66 -0
  195. package/WebRTC.framework/Versions/Current/Headers/RTCMTLNSVideoView.h +22 -0
  196. package/WebRTC.framework/Versions/Current/Headers/RTCMacros.h +63 -0
  197. package/WebRTC.framework/Versions/Current/Headers/RTCMediaConstraints.h +46 -0
  198. package/WebRTC.framework/Versions/Current/Headers/RTCMediaSource.h +34 -0
  199. package/WebRTC.framework/Versions/Current/Headers/RTCMediaStream.h +49 -0
  200. package/WebRTC.framework/Versions/Current/Headers/RTCMediaStreamTrack.h +50 -0
  201. package/WebRTC.framework/Versions/Current/Headers/RTCMetrics.h +23 -0
  202. package/WebRTC.framework/Versions/Current/Headers/RTCMetricsSampleInfo.h +48 -0
  203. package/WebRTC.framework/Versions/Current/Headers/RTCMutableI420Buffer.h +23 -0
  204. package/WebRTC.framework/Versions/Current/Headers/RTCMutableYUVPlanarBuffer.h +28 -0
  205. package/WebRTC.framework/Versions/Current/Headers/RTCNativeI420Buffer.h +23 -0
  206. package/WebRTC.framework/Versions/Current/Headers/RTCNativeMutableI420Buffer.h +24 -0
  207. package/WebRTC.framework/Versions/Current/Headers/RTCPeerConnection.h +397 -0
  208. package/WebRTC.framework/Versions/Current/Headers/RTCPeerConnectionFactory.h +113 -0
  209. package/WebRTC.framework/Versions/Current/Headers/RTCPeerConnectionFactoryOptions.h +38 -0
  210. package/WebRTC.framework/Versions/Current/Headers/RTCRtcpParameters.h +30 -0
  211. package/WebRTC.framework/Versions/Current/Headers/RTCRtpCodecParameters.h +73 -0
  212. package/WebRTC.framework/Versions/Current/Headers/RTCRtpEncodingParameters.h +76 -0
  213. package/WebRTC.framework/Versions/Current/Headers/RTCRtpHeaderExtension.h +33 -0
  214. package/WebRTC.framework/Versions/Current/Headers/RTCRtpParameters.h +58 -0
  215. package/WebRTC.framework/Versions/Current/Headers/RTCRtpReceiver.h +86 -0
  216. package/WebRTC.framework/Versions/Current/Headers/RTCRtpSender.h +54 -0
  217. package/WebRTC.framework/Versions/Current/Headers/RTCRtpTransceiver.h +137 -0
  218. package/WebRTC.framework/Versions/Current/Headers/RTCSSLAdapter.h +20 -0
  219. package/WebRTC.framework/Versions/Current/Headers/RTCSSLCertificateVerifier.h +25 -0
  220. package/WebRTC.framework/Versions/Current/Headers/RTCSessionDescription.h +48 -0
  221. package/WebRTC.framework/Versions/Current/Headers/RTCStatisticsReport.h +55 -0
  222. package/WebRTC.framework/Versions/Current/Headers/RTCTracing.h +21 -0
  223. package/WebRTC.framework/Versions/Current/Headers/RTCVideoCapturer.h +35 -0
  224. package/WebRTC.framework/Versions/Current/Headers/RTCVideoCodecInfo.h +36 -0
  225. package/WebRTC.framework/Versions/Current/Headers/RTCVideoDecoder.h +41 -0
  226. package/WebRTC.framework/Versions/Current/Headers/RTCVideoDecoderAV1.h +25 -0
  227. package/WebRTC.framework/Versions/Current/Headers/RTCVideoDecoderFactory.h +32 -0
  228. package/WebRTC.framework/Versions/Current/Headers/RTCVideoDecoderFactoryH264.h +18 -0
  229. package/WebRTC.framework/Versions/Current/Headers/RTCVideoDecoderH264.h +18 -0
  230. package/WebRTC.framework/Versions/Current/Headers/RTCVideoDecoderVP8.h +25 -0
  231. package/WebRTC.framework/Versions/Current/Headers/RTCVideoDecoderVP9.h +27 -0
  232. package/WebRTC.framework/Versions/Current/Headers/RTCVideoEncoder.h +59 -0
  233. package/WebRTC.framework/Versions/Current/Headers/RTCVideoEncoderAV1.h +27 -0
  234. package/WebRTC.framework/Versions/Current/Headers/RTCVideoEncoderFactory.h +52 -0
  235. package/WebRTC.framework/Versions/Current/Headers/RTCVideoEncoderFactoryH264.h +18 -0
  236. package/WebRTC.framework/Versions/Current/Headers/RTCVideoEncoderH264.h +22 -0
  237. package/WebRTC.framework/Versions/Current/Headers/RTCVideoEncoderQpThresholds.h +28 -0
  238. package/WebRTC.framework/Versions/Current/Headers/RTCVideoEncoderSettings.h +42 -0
  239. package/WebRTC.framework/Versions/Current/Headers/RTCVideoEncoderVP8.h +25 -0
  240. package/WebRTC.framework/Versions/Current/Headers/RTCVideoEncoderVP9.h +27 -0
  241. package/WebRTC.framework/Versions/Current/Headers/RTCVideoFrame.h +86 -0
  242. package/WebRTC.framework/Versions/Current/Headers/RTCVideoFrameBuffer.h +40 -0
  243. package/WebRTC.framework/Versions/Current/Headers/RTCVideoRenderer.h +43 -0
  244. package/WebRTC.framework/Versions/Current/Headers/RTCVideoSource.h +37 -0
  245. package/WebRTC.framework/Versions/Current/Headers/RTCVideoTrack.h +38 -0
  246. package/WebRTC.framework/Versions/Current/Headers/RTCVideoViewShading.h +39 -0
  247. package/WebRTC.framework/Versions/Current/Headers/RTCYUVPlanarBuffer.h +46 -0
  248. package/WebRTC.framework/Versions/Current/Headers/WebRTC.h +90 -0
  249. package/WebRTC.framework/Versions/Current/Modules/module.modulemap +6 -0
  250. package/WebRTC.framework/Versions/Current/Resources/Info.plist +36 -0
  251. package/WebRTC.framework/Versions/Current/WebRTC +0 -0
  252. package/WebRTC.framework/WebRTC +0 -0
  253. package/binding.gyp +16 -0
  254. package/desktop_sdk_macos.framework/Headers/desktop_sdk_macos-Swift.h +606 -0
  255. package/desktop_sdk_macos.framework/Headers/desktop_sdk_macos.h +18 -0
  256. package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo +0 -0
  257. package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/Project/x86_64-apple-macos.swiftsourceinfo +0 -0
  258. package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.abi.json +7423 -0
  259. package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.private.swiftinterface +216 -0
  260. package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.swiftdoc +0 -0
  261. package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.swiftinterface +216 -0
  262. package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.swiftmodule +0 -0
  263. package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.abi.json +7423 -0
  264. package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.private.swiftinterface +216 -0
  265. package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.swiftdoc +0 -0
  266. package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.swiftinterface +216 -0
  267. package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.swiftmodule +0 -0
  268. package/desktop_sdk_macos.framework/Modules/module.modulemap +11 -0
  269. package/desktop_sdk_macos.framework/Resources/Info.plist +46 -0
  270. package/desktop_sdk_macos.framework/Versions/A/Headers/desktop_sdk_macos-Swift.h +606 -0
  271. package/desktop_sdk_macos.framework/Versions/A/Headers/desktop_sdk_macos.h +18 -0
  272. package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo +0 -0
  273. package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/Project/x86_64-apple-macos.swiftsourceinfo +0 -0
  274. package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.abi.json +7423 -0
  275. package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.private.swiftinterface +216 -0
  276. package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.swiftdoc +0 -0
  277. package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.swiftinterface +216 -0
  278. package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.swiftmodule +0 -0
  279. package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.abi.json +7423 -0
  280. package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.private.swiftinterface +216 -0
  281. package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.swiftdoc +0 -0
  282. package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.swiftinterface +216 -0
  283. package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.swiftmodule +0 -0
  284. package/desktop_sdk_macos.framework/Versions/A/Modules/module.modulemap +11 -0
  285. package/desktop_sdk_macos.framework/Versions/A/Resources/Info.plist +46 -0
  286. package/desktop_sdk_macos.framework/Versions/A/desktop_sdk_macos +0 -0
  287. package/desktop_sdk_macos.framework/Versions/Current/Headers/desktop_sdk_macos-Swift.h +606 -0
  288. package/desktop_sdk_macos.framework/Versions/Current/Headers/desktop_sdk_macos.h +18 -0
  289. package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo +0 -0
  290. package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/Project/x86_64-apple-macos.swiftsourceinfo +0 -0
  291. package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.abi.json +7423 -0
  292. package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.private.swiftinterface +216 -0
  293. package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.swiftdoc +0 -0
  294. package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.swiftinterface +216 -0
  295. package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.swiftmodule +0 -0
  296. package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.abi.json +7423 -0
  297. package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.private.swiftinterface +216 -0
  298. package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.swiftdoc +0 -0
  299. package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.swiftinterface +216 -0
  300. package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.swiftmodule +0 -0
  301. package/desktop_sdk_macos.framework/Versions/Current/Modules/module.modulemap +11 -0
  302. package/desktop_sdk_macos.framework/Versions/Current/Resources/Info.plist +46 -0
  303. package/desktop_sdk_macos.framework/Versions/Current/desktop_sdk_macos +0 -0
  304. package/desktop_sdk_macos.framework/desktop_sdk_macos +0 -0
  305. package/index.d.ts +9 -0
  306. package/index.js +14 -0
  307. package/package.json +9 -0
  308. package/src/RecallAiDesktopSdk.h +2 -0
  309. package/src/main.cc +47 -0
@@ -0,0 +1,43 @@
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
+ #if TARGET_OS_IPHONE
13
+ #import <UIKit/UIKit.h>
14
+ #endif
15
+
16
+ #import <WebRTC/RTCMacros.h>
17
+
18
+ NS_ASSUME_NONNULL_BEGIN
19
+
20
+ @class RTC_OBJC_TYPE(RTCVideoFrame);
21
+
22
+ RTC_OBJC_EXPORT
23
+ @protocol RTC_OBJC_TYPE
24
+ (RTCVideoRenderer)<NSObject>
25
+
26
+ /** The size of the frame. */
27
+ - (void)setSize : (CGSize)size;
28
+
29
+ /** The frame to be displayed. */
30
+ - (void)renderFrame:(nullable RTC_OBJC_TYPE(RTCVideoFrame) *)frame;
31
+
32
+ @end
33
+
34
+ RTC_OBJC_EXPORT
35
+ @protocol RTC_OBJC_TYPE
36
+ (RTCVideoViewDelegate)
37
+
38
+ - (void)videoView : (id<RTC_OBJC_TYPE(RTCVideoRenderer)>)videoView didChangeVideoSize
39
+ : (CGSize)size;
40
+
41
+ @end
42
+
43
+ NS_ASSUME_NONNULL_END
@@ -0,0 +1,37 @@
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
+ #import <WebRTC/RTCMediaSource.h>
15
+ #import <WebRTC/RTCVideoCapturer.h>
16
+
17
+ NS_ASSUME_NONNULL_BEGIN
18
+
19
+ RTC_OBJC_EXPORT
20
+
21
+ @interface RTC_OBJC_TYPE (RTCVideoSource) : RTC_OBJC_TYPE(RTCMediaSource) <RTC_OBJC_TYPE(RTCVideoCapturerDelegate)>
22
+
23
+ - (instancetype)init NS_UNAVAILABLE;
24
+
25
+ /**
26
+ * Calling this function will cause frames to be scaled down to the
27
+ * requested resolution. Also, frames will be cropped to match the
28
+ * requested aspect ratio, and frames will be dropped to match the
29
+ * requested fps. The requested aspect ratio is orientation agnostic and
30
+ * will be adjusted to maintain the input orientation, so it doesn't
31
+ * matter if e.g. 1280x720 or 720x1280 is requested.
32
+ */
33
+ - (void)adaptOutputFormatToWidth:(int)width height:(int)height fps:(int)fps;
34
+
35
+ @end
36
+
37
+ NS_ASSUME_NONNULL_END
@@ -0,0 +1,38 @@
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 <WebRTC/RTCMediaStreamTrack.h>
12
+
13
+ #import <WebRTC/RTCMacros.h>
14
+
15
+ NS_ASSUME_NONNULL_BEGIN
16
+
17
+ @protocol RTC_OBJC_TYPE
18
+ (RTCVideoRenderer);
19
+ @class RTC_OBJC_TYPE(RTCPeerConnectionFactory);
20
+ @class RTC_OBJC_TYPE(RTCVideoSource);
21
+
22
+ RTC_OBJC_EXPORT
23
+ @interface RTC_OBJC_TYPE (RTCVideoTrack) : RTC_OBJC_TYPE(RTCMediaStreamTrack)
24
+
25
+ /** The video source for this video track. */
26
+ @property(nonatomic, readonly) RTC_OBJC_TYPE(RTCVideoSource) *source;
27
+
28
+ - (instancetype)init NS_UNAVAILABLE;
29
+
30
+ /** Register a renderer that will render all frames received on this track. */
31
+ - (void)addRenderer:(id<RTC_OBJC_TYPE(RTCVideoRenderer)>)renderer;
32
+
33
+ /** Deregister a renderer. */
34
+ - (void)removeRenderer:(id<RTC_OBJC_TYPE(RTCVideoRenderer)>)renderer;
35
+
36
+ @end
37
+
38
+ NS_ASSUME_NONNULL_END
@@ -0,0 +1,39 @@
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/RTCVideoFrame.h>
14
+
15
+ NS_ASSUME_NONNULL_BEGIN
16
+
17
+ /**
18
+ * RTCVideoViewShading provides a way for apps to customize the OpenGL(ES shaders
19
+ * used in rendering for the RTCEAGLVideoView/RTCNSGLVideoView.
20
+ */
21
+ RTC_OBJC_EXPORT
22
+ @protocol RTC_OBJC_TYPE
23
+ (RTCVideoViewShading)<NSObject>
24
+
25
+ /** Callback for I420 frames. Each plane is given as a texture. */
26
+ - (void)applyShadingForFrameWithWidth : (int)width height : (int)height rotation
27
+ : (RTCVideoRotation)rotation yPlane : (GLuint)yPlane uPlane : (GLuint)uPlane vPlane
28
+ : (GLuint)vPlane;
29
+
30
+ /** Callback for NV12 frames. Each plane is given as a texture. */
31
+ - (void)applyShadingForFrameWithWidth:(int)width
32
+ height:(int)height
33
+ rotation:(RTCVideoRotation)rotation
34
+ yPlane:(GLuint)yPlane
35
+ uvPlane:(GLuint)uvPlane;
36
+
37
+ @end
38
+
39
+ NS_ASSUME_NONNULL_END
@@ -0,0 +1,46 @@
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/RTCMacros.h>
14
+ #import <WebRTC/RTCVideoFrameBuffer.h>
15
+
16
+ NS_ASSUME_NONNULL_BEGIN
17
+
18
+ /** Protocol for RTCVideoFrameBuffers containing YUV planar data. */
19
+ RTC_OBJC_EXPORT
20
+ @protocol RTC_OBJC_TYPE
21
+ (RTCYUVPlanarBuffer)<RTC_OBJC_TYPE(RTCVideoFrameBuffer)>
22
+
23
+ @property(nonatomic, readonly) int chromaWidth;
24
+ @property(nonatomic, readonly) int chromaHeight;
25
+ @property(nonatomic, readonly) const uint8_t *dataY;
26
+ @property(nonatomic, readonly) const uint8_t *dataU;
27
+ @property(nonatomic, readonly) const uint8_t *dataV;
28
+ @property(nonatomic, readonly) int strideY;
29
+ @property(nonatomic, readonly) int strideU;
30
+ @property(nonatomic, readonly) int strideV;
31
+
32
+ - (instancetype)initWithWidth:(int)width
33
+ height:(int)height
34
+ dataY:(const uint8_t *)dataY
35
+ dataU:(const uint8_t *)dataU
36
+ dataV:(const uint8_t *)dataV;
37
+ - (instancetype)initWithWidth:(int)width height:(int)height;
38
+ - (instancetype)initWithWidth:(int)width
39
+ height:(int)height
40
+ strideY:(int)strideY
41
+ strideU:(int)strideU
42
+ strideV:(int)strideV;
43
+
44
+ @end
45
+
46
+ NS_ASSUME_NONNULL_END
@@ -0,0 +1,90 @@
1
+ /*
2
+ * Copyright 2023 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 <WebRTC/RTCAudioSource.h>
12
+ #import <WebRTC/RTCAudioTrack.h>
13
+ #import <WebRTC/RTCCertificate.h>
14
+ #import <WebRTC/RTCConfiguration.h>
15
+ #import <WebRTC/RTCCryptoOptions.h>
16
+ #import <WebRTC/RTCDataChannel.h>
17
+ #import <WebRTC/RTCDataChannelConfiguration.h>
18
+ #import <WebRTC/RTCDtmfSender.h>
19
+ #import <WebRTC/RTCFieldTrials.h>
20
+ #import <WebRTC/RTCIceCandidate.h>
21
+ #import <WebRTC/RTCIceCandidateErrorEvent.h>
22
+ #import <WebRTC/RTCIceServer.h>
23
+ #import <WebRTC/RTCLegacyStatsReport.h>
24
+ #import <WebRTC/RTCMediaConstraints.h>
25
+ #import <WebRTC/RTCMediaSource.h>
26
+ #import <WebRTC/RTCMediaStream.h>
27
+ #import <WebRTC/RTCMediaStreamTrack.h>
28
+ #import <WebRTC/RTCMetrics.h>
29
+ #import <WebRTC/RTCMetricsSampleInfo.h>
30
+ #import <WebRTC/RTCPeerConnection.h>
31
+ #import <WebRTC/RTCPeerConnectionFactory.h>
32
+ #import <WebRTC/RTCPeerConnectionFactoryOptions.h>
33
+ #import <WebRTC/RTCRtcpParameters.h>
34
+ #import <WebRTC/RTCRtpCodecParameters.h>
35
+ #import <WebRTC/RTCRtpEncodingParameters.h>
36
+ #import <WebRTC/RTCRtpHeaderExtension.h>
37
+ #import <WebRTC/RTCRtpParameters.h>
38
+ #import <WebRTC/RTCRtpReceiver.h>
39
+ #import <WebRTC/RTCRtpSender.h>
40
+ #import <WebRTC/RTCRtpTransceiver.h>
41
+ #import <WebRTC/RTCSSLAdapter.h>
42
+ #import <WebRTC/RTCSessionDescription.h>
43
+ #import <WebRTC/RTCStatisticsReport.h>
44
+ #import <WebRTC/RTCTracing.h>
45
+ #import <WebRTC/RTCVideoSource.h>
46
+ #import <WebRTC/RTCVideoTrack.h>
47
+ #import <WebRTC/RTCVideoDecoderAV1.h>
48
+ #import <WebRTC/RTCVideoDecoderVP8.h>
49
+ #import <WebRTC/RTCVideoDecoderVP9.h>
50
+ #import <WebRTC/RTCVideoEncoderAV1.h>
51
+ #import <WebRTC/RTCVideoEncoderVP8.h>
52
+ #import <WebRTC/RTCVideoEncoderVP9.h>
53
+ #import <WebRTC/RTCNativeI420Buffer.h>
54
+ #import <WebRTC/RTCNativeMutableI420Buffer.h>
55
+ #import <WebRTC/RTCCodecSpecificInfo.h>
56
+ #import <WebRTC/RTCEncodedImage.h>
57
+ #import <WebRTC/RTCI420Buffer.h>
58
+ #import <WebRTC/RTCLogging.h>
59
+ #import <WebRTC/RTCMacros.h>
60
+ #import <WebRTC/RTCMutableI420Buffer.h>
61
+ #import <WebRTC/RTCMutableYUVPlanarBuffer.h>
62
+ #import <WebRTC/RTCSSLCertificateVerifier.h>
63
+ #import <WebRTC/RTCVideoCapturer.h>
64
+ #import <WebRTC/RTCVideoCodecInfo.h>
65
+ #import <WebRTC/RTCVideoDecoder.h>
66
+ #import <WebRTC/RTCVideoDecoderFactory.h>
67
+ #import <WebRTC/RTCVideoEncoder.h>
68
+ #import <WebRTC/RTCVideoEncoderFactory.h>
69
+ #import <WebRTC/RTCVideoEncoderQpThresholds.h>
70
+ #import <WebRTC/RTCVideoEncoderSettings.h>
71
+ #import <WebRTC/RTCVideoFrame.h>
72
+ #import <WebRTC/RTCVideoFrameBuffer.h>
73
+ #import <WebRTC/RTCVideoRenderer.h>
74
+ #import <WebRTC/RTCYUVPlanarBuffer.h>
75
+ #import <WebRTC/RTCCameraVideoCapturer.h>
76
+ #import <WebRTC/RTCFileVideoCapturer.h>
77
+ #import <WebRTC/RTCMTLNSVideoView.h>
78
+ #import <WebRTC/RTCVideoViewShading.h>
79
+ #import <WebRTC/RTCCodecSpecificInfoH264.h>
80
+ #import <WebRTC/RTCDefaultVideoDecoderFactory.h>
81
+ #import <WebRTC/RTCDefaultVideoEncoderFactory.h>
82
+ #import <WebRTC/RTCH264ProfileLevelId.h>
83
+ #import <WebRTC/RTCVideoDecoderFactoryH264.h>
84
+ #import <WebRTC/RTCVideoDecoderH264.h>
85
+ #import <WebRTC/RTCVideoEncoderFactoryH264.h>
86
+ #import <WebRTC/RTCVideoEncoderH264.h>
87
+ #import <WebRTC/RTCCVPixelBuffer.h>
88
+ #import <WebRTC/RTCDispatcher.h>
89
+ #import <WebRTC/RTCCallbackLogger.h>
90
+ #import <WebRTC/RTCFileLogger.h>
@@ -0,0 +1,6 @@
1
+ framework module WebRTC {
2
+ umbrella header "WebRTC.h"
3
+
4
+ export *
5
+ module * { export * }
6
+ }
@@ -0,0 +1,36 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>CFBundleDevelopmentRegion</key>
6
+ <string>en</string>
7
+ <key>CFBundleExecutable</key>
8
+ <string>WebRTC</string>
9
+ <key>CFBundleIdentifier</key>
10
+ <string>org.webrtc.WebRTC</string>
11
+ <key>CFBundleInfoDictionaryVersion</key>
12
+ <string>6.0</string>
13
+ <key>CFBundleName</key>
14
+ <string>WebRTC</string>
15
+ <key>CFBundlePackageType</key>
16
+ <string>FMWK</string>
17
+ <key>CFBundleShortVersionString</key>
18
+ <string>1.0</string>
19
+ <key>CFBundleSignature</key>
20
+ <string>????</string>
21
+ <key>CFBundleVersion</key>
22
+ <string>1.0</string>
23
+ <key>DTCompiler</key>
24
+ <string>com.apple.compilers.llvm.clang.1_0</string>
25
+ <key>DTSDKBuild</key>
26
+ <string>22C55</string>
27
+ <key>DTSDKName</key>
28
+ <string>macosx13.1</string>
29
+ <key>DTXcode</key>
30
+ <string>1420</string>
31
+ <key>DTXcodeBuild</key>
32
+ <string>14C18</string>
33
+ <key>NSPrincipalClass</key>
34
+ <string></string>
35
+ </dict>
36
+ </plist>
@@ -0,0 +1,32 @@
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
+ #import <WebRTC/RTCMediaSource.h>
15
+
16
+ NS_ASSUME_NONNULL_BEGIN
17
+
18
+ RTC_OBJC_EXPORT
19
+ @interface RTC_OBJC_TYPE (RTCAudioSource) : RTC_OBJC_TYPE(RTCMediaSource)
20
+
21
+ - (instancetype)init NS_UNAVAILABLE;
22
+
23
+ // Sets the volume for the RTCMediaSource. `volume` is a gain value in the range
24
+ // [0, 10].
25
+ // Temporary fix to be able to modify volume of remote audio tracks.
26
+ // TODO(kthelgason): Property stays here temporarily until a proper volume-api
27
+ // is available on the surface exposed by webrtc.
28
+ @property(nonatomic, assign) double volume;
29
+
30
+ @end
31
+
32
+ NS_ASSUME_NONNULL_END
@@ -0,0 +1,28 @@
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 <WebRTC/RTCMacros.h>
12
+ #import <WebRTC/RTCMediaStreamTrack.h>
13
+
14
+ NS_ASSUME_NONNULL_BEGIN
15
+
16
+ @class RTC_OBJC_TYPE(RTCAudioSource);
17
+
18
+ RTC_OBJC_EXPORT
19
+ @interface RTC_OBJC_TYPE (RTCAudioTrack) : RTC_OBJC_TYPE(RTCMediaStreamTrack)
20
+
21
+ - (instancetype)init NS_UNAVAILABLE;
22
+
23
+ /** The audio source for this audio track. */
24
+ @property(nonatomic, readonly) RTC_OBJC_TYPE(RTCAudioSource) * source;
25
+
26
+ @end
27
+
28
+ NS_ASSUME_NONNULL_END
@@ -0,0 +1,52 @@
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/RTCMacros.h>
14
+ #import <WebRTC/RTCVideoFrameBuffer.h>
15
+
16
+ NS_ASSUME_NONNULL_BEGIN
17
+
18
+ /** RTCVideoFrameBuffer containing a CVPixelBufferRef */
19
+ RTC_OBJC_EXPORT
20
+ @interface RTC_OBJC_TYPE (RTCCVPixelBuffer) : NSObject <RTC_OBJC_TYPE(RTCVideoFrameBuffer)>
21
+
22
+ @property(nonatomic, readonly) CVPixelBufferRef pixelBuffer;
23
+ @property(nonatomic, readonly) int cropX;
24
+ @property(nonatomic, readonly) int cropY;
25
+ @property(nonatomic, readonly) int cropWidth;
26
+ @property(nonatomic, readonly) int cropHeight;
27
+
28
+ + (NSSet<NSNumber *> *)supportedPixelFormats;
29
+
30
+ - (instancetype)initWithPixelBuffer:(CVPixelBufferRef)pixelBuffer;
31
+ - (instancetype)initWithPixelBuffer:(CVPixelBufferRef)pixelBuffer
32
+ adaptedWidth:(int)adaptedWidth
33
+ adaptedHeight:(int)adaptedHeight
34
+ cropWidth:(int)cropWidth
35
+ cropHeight:(int)cropHeight
36
+ cropX:(int)cropX
37
+ cropY:(int)cropY;
38
+
39
+ - (BOOL)requiresCropping;
40
+ - (BOOL)requiresScalingToWidth:(int)width height:(int)height;
41
+ - (int)bufferSizeForCroppingAndScalingToWidth:(int)width height:(int)height;
42
+
43
+ /** The minimum size of the `tmpBuffer` must be the number of bytes returned from the
44
+ * bufferSizeForCroppingAndScalingToWidth:height: method.
45
+ * If that size is 0, the `tmpBuffer` may be nil.
46
+ */
47
+ - (BOOL)cropAndScaleTo:(CVPixelBufferRef)outputPixelBuffer
48
+ withTempBuffer:(nullable uint8_t *)tmpBuffer;
49
+
50
+ @end
51
+
52
+ NS_ASSUME_NONNULL_END
@@ -0,0 +1,41 @@
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 <Foundation/Foundation.h>
12
+
13
+ #import <WebRTC/RTCLogging.h>
14
+ #import <WebRTC/RTCMacros.h>
15
+
16
+ NS_ASSUME_NONNULL_BEGIN
17
+
18
+ typedef void (^RTCCallbackLoggerMessageHandler)(NSString *message);
19
+ typedef void (^RTCCallbackLoggerMessageAndSeverityHandler)(NSString *message,
20
+ RTCLoggingSeverity severity);
21
+
22
+ // This class intercepts WebRTC logs and forwards them to a registered block.
23
+ // This class is not threadsafe.
24
+ RTC_OBJC_EXPORT
25
+ @interface RTC_OBJC_TYPE (RTCCallbackLogger) : NSObject
26
+
27
+ // The severity level to capture. The default is kRTCLoggingSeverityInfo.
28
+ @property(nonatomic, assign) RTCLoggingSeverity severity;
29
+
30
+ // The callback handler will be called on the same thread that does the
31
+ // logging, so if the logging callback can be slow it may be a good idea
32
+ // to implement dispatching to some other queue.
33
+ - (void)start:(nullable RTCCallbackLoggerMessageHandler)handler;
34
+ - (void)startWithMessageAndSeverityHandler:
35
+ (nullable RTCCallbackLoggerMessageAndSeverityHandler)handler;
36
+
37
+ - (void)stop;
38
+
39
+ @end
40
+
41
+ NS_ASSUME_NONNULL_END
@@ -0,0 +1,56 @@
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 <AVFoundation/AVFoundation.h>
12
+ #import <Foundation/Foundation.h>
13
+
14
+ #import <WebRTC/RTCMacros.h>
15
+ #import <WebRTC/RTCVideoCapturer.h>
16
+
17
+ NS_ASSUME_NONNULL_BEGIN
18
+
19
+ RTC_OBJC_EXPORT
20
+ // Camera capture that implements RTCVideoCapturer. Delivers frames to a
21
+ // RTCVideoCapturerDelegate (usually RTCVideoSource).
22
+ NS_EXTENSION_UNAVAILABLE_IOS("Camera not available in app extensions.")
23
+ @interface RTC_OBJC_TYPE (RTCCameraVideoCapturer) : RTC_OBJC_TYPE(RTCVideoCapturer)
24
+
25
+ // Capture session that is used for capturing. Valid from initialization to dealloc.
26
+ @property(readonly, nonatomic) AVCaptureSession *captureSession;
27
+
28
+ // Returns list of available capture devices that support video capture.
29
+ + (NSArray<AVCaptureDevice *> *)captureDevices;
30
+ // Returns list of formats that are supported by this class for this device.
31
+ + (NSArray<AVCaptureDeviceFormat *> *)supportedFormatsForDevice:(AVCaptureDevice *)device;
32
+
33
+ // Returns the most efficient supported output pixel format for this capturer.
34
+ - (FourCharCode)preferredOutputPixelFormat;
35
+
36
+ // Starts the capture session asynchronously and notifies callback on completion.
37
+ // The device will capture video in the format given in the `format` parameter. If the pixel format
38
+ // in `format` is supported by the WebRTC pipeline, the same pixel format will be used for the
39
+ // output. Otherwise, the format returned by `preferredOutputPixelFormat` will be used.
40
+ - (void)startCaptureWithDevice:(AVCaptureDevice *)device
41
+ format:(AVCaptureDeviceFormat *)format
42
+ fps:(NSInteger)fps
43
+ completionHandler:(nullable void (^)(NSError *_Nullable))completionHandler;
44
+ // Stops the capture session asynchronously and notifies callback on completion.
45
+ - (void)stopCaptureWithCompletionHandler:(nullable void (^)(void))completionHandler;
46
+
47
+ // Starts the capture session asynchronously.
48
+ - (void)startCaptureWithDevice:(AVCaptureDevice *)device
49
+ format:(AVCaptureDeviceFormat *)format
50
+ fps:(NSInteger)fps;
51
+ // Stops the capture session asynchronously.
52
+ - (void)stopCapture;
53
+
54
+ @end
55
+
56
+ NS_ASSUME_NONNULL_END
@@ -0,0 +1,44 @@
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 <Foundation/Foundation.h>
12
+
13
+ #import <WebRTC/RTCMacros.h>
14
+
15
+ NS_ASSUME_NONNULL_BEGIN
16
+
17
+ RTC_OBJC_EXPORT
18
+ @interface RTC_OBJC_TYPE (RTCCertificate) : NSObject <NSCopying>
19
+
20
+ /** Private key in PEM. */
21
+ @property(nonatomic, readonly, copy) NSString *private_key;
22
+
23
+ /** Public key in an x509 cert encoded in PEM. */
24
+ @property(nonatomic, readonly, copy) NSString *certificate;
25
+
26
+ /**
27
+ * Initialize an RTCCertificate with PEM strings for private_key and certificate.
28
+ */
29
+ - (instancetype)initWithPrivateKey:(NSString *)private_key
30
+ certificate:(NSString *)certificate NS_DESIGNATED_INITIALIZER;
31
+
32
+ - (instancetype)init NS_UNAVAILABLE;
33
+
34
+ /** Generate a new certificate for 're' use.
35
+ *
36
+ * Optional dictionary of parameters. Defaults to KeyType ECDSA if none are
37
+ * provided.
38
+ * - name: "ECDSA" or "RSASSA-PKCS1-v1_5"
39
+ */
40
+ + (nullable RTC_OBJC_TYPE(RTCCertificate) *)generateCertificateWithParams:(NSDictionary *)params;
41
+
42
+ @end
43
+
44
+ NS_ASSUME_NONNULL_END
@@ -0,0 +1,24 @@
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
+ /** Implement this protocol to pass codec specific info from the encoder.
18
+ * Corresponds to webrtc::CodecSpecificInfo.
19
+ */
20
+ RTC_OBJC_EXPORT
21
+ @protocol RTC_OBJC_TYPE
22
+ (RTCCodecSpecificInfo)<NSObject> @end
23
+
24
+ NS_ASSUME_NONNULL_END
@@ -0,0 +1,27 @@
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/RTCCodecSpecificInfo.h>
14
+ #import <WebRTC/RTCMacros.h>
15
+
16
+ /** Class for H264 specific config. */
17
+ typedef NS_ENUM(NSUInteger, RTCH264PacketizationMode) {
18
+ RTCH264PacketizationModeNonInterleaved = 0, // Mode 1 - STAP-A, FU-A is allowed
19
+ RTCH264PacketizationModeSingleNalUnit // Mode 0 - only single NALU allowed
20
+ };
21
+
22
+ RTC_OBJC_EXPORT
23
+ @interface RTC_OBJC_TYPE (RTCCodecSpecificInfoH264) : NSObject <RTC_OBJC_TYPE(RTCCodecSpecificInfo)>
24
+
25
+ @property(nonatomic, assign) RTCH264PacketizationMode packetizationMode;
26
+
27
+ @end