├── .github └── workflows │ └── ios-build-and-test.yml ├── .gitignore ├── .swiftlint.yml ├── LICENSE ├── Package.swift ├── README.md ├── Resources └── michael_jackson_audio_mono.mp3 ├── ScreenShare ├── Info.plist ├── SampleHandler.swift ├── ScreenShare.entitlements └── ScreenShareDebug.entitlements ├── WebRTC-Sample-App ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Ant Media_sosyalmedya_square-01.png │ │ └── Contents.json │ ├── Contents.json │ ├── VideoIcons │ │ ├── Contents.json │ │ ├── audioOff.imageset │ │ │ ├── Contents.json │ │ │ └── audioOff@2x.png │ │ ├── audioOn.imageset │ │ │ ├── Contents.json │ │ │ └── audioOn@2x.png │ │ ├── close.imageset │ │ │ ├── Contents.json │ │ │ └── hangup@2x.png │ │ ├── videoOff.imageset │ │ │ ├── Contents.json │ │ │ └── videoOff@2x.png │ │ └── videoOn.imageset │ │ │ ├── Contents.json │ │ │ └── videoOn@2x.png │ ├── last_used.imageset │ │ ├── Contents.json │ │ └── last_used.png │ └── logo.imageset │ │ ├── Ant Media_sosyalmedya_square.svg │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── CellView.swift ├── ConferenceViewController.swift ├── Info.plist ├── SceneDelegate.swift ├── Util │ ├── Extension │ │ └── UIApplication.swift │ └── Helper │ │ ├── AlertHelper.swift │ │ ├── Defaults.swift │ │ ├── Run.swift │ │ └── SwiftyUserDefaults.swift ├── VideoViewController.swift ├── WebRTC-Sample-App.entitlements ├── WebRTC-Sample-AppDebug.entitlements ├── WebRTC_Sample_App.xcdatamodeld │ ├── .xccurrentversion │ └── WebRTC_Sample_App.xcdatamodel │ │ └── contents └── WelcomeViewController.swift ├── WebRTC-Sample-AppTests └── WebRTC_Sample_AppTests.swift ├── WebRTC-Sample-AppUITests ├── WebRTC_Sample_AppUITests.swift └── WebRTC_Sample_AppUITestsLaunchTests.swift ├── WebRTC.xcframework ├── Info.plist ├── ios-arm64 │ └── WebRTC.framework │ │ ├── Headers │ │ ├── RTCAudioDevice.h │ │ ├── RTCAudioDeviceModule.h │ │ ├── RTCAudioSession.h │ │ ├── RTCAudioSessionConfiguration.h │ │ ├── RTCAudioSource.h │ │ ├── RTCAudioTrack.h │ │ ├── RTCCVPixelBuffer.h │ │ ├── RTCCallbackLogger.h │ │ ├── RTCCameraPreviewView.h │ │ ├── RTCCameraVideoCapturer.h │ │ ├── RTCCertificate.h │ │ ├── RTCCodecSpecificInfo.h │ │ ├── RTCCodecSpecificInfoH264.h │ │ ├── RTCConfiguration.h │ │ ├── RTCCryptoOptions.h │ │ ├── RTCDataChannel.h │ │ ├── RTCDataChannelConfiguration.h │ │ ├── RTCDefaultVideoDecoderFactory.h │ │ ├── RTCDefaultVideoEncoderFactory.h │ │ ├── RTCDispatcher.h │ │ ├── RTCDtmfSender.h │ │ ├── RTCEAGLVideoView.h │ │ ├── RTCEncodedImage.h │ │ ├── RTCFieldTrials.h │ │ ├── RTCFileLogger.h │ │ ├── RTCFileVideoCapturer.h │ │ ├── RTCH264ProfileLevelId.h │ │ ├── RTCI420Buffer.h │ │ ├── RTCIceCandidate.h │ │ ├── RTCIceCandidateErrorEvent.h │ │ ├── RTCIceServer.h │ │ ├── RTCLegacyStatsReport.h │ │ ├── RTCLogging.h │ │ ├── RTCMTLVideoView.h │ │ ├── RTCMacros.h │ │ ├── RTCMediaConstraints.h │ │ ├── RTCMediaSource.h │ │ ├── RTCMediaStream.h │ │ ├── RTCMediaStreamTrack.h │ │ ├── RTCMetrics.h │ │ ├── RTCMetricsSampleInfo.h │ │ ├── RTCMutableI420Buffer.h │ │ ├── RTCMutableYUVPlanarBuffer.h │ │ ├── RTCNativeI420Buffer.h │ │ ├── RTCNativeMutableI420Buffer.h │ │ ├── RTCNetworkMonitor.h │ │ ├── RTCPeerConnection.h │ │ ├── RTCPeerConnectionFactory.h │ │ ├── RTCPeerConnectionFactoryOptions.h │ │ ├── RTCRtcpParameters.h │ │ ├── RTCRtpCodecParameters.h │ │ ├── RTCRtpEncodingParameters.h │ │ ├── RTCRtpHeaderExtension.h │ │ ├── RTCRtpParameters.h │ │ ├── RTCRtpReceiver.h │ │ ├── RTCRtpSender.h │ │ ├── RTCRtpTransceiver.h │ │ ├── RTCSSLAdapter.h │ │ ├── RTCSSLCertificateVerifier.h │ │ ├── RTCSessionDescription.h │ │ ├── RTCStatisticsReport.h │ │ ├── RTCTracing.h │ │ ├── RTCVideoCapturer.h │ │ ├── RTCVideoCodecConstants.h │ │ ├── RTCVideoCodecInfo.h │ │ ├── RTCVideoDecoder.h │ │ ├── RTCVideoDecoderAV1.h │ │ ├── RTCVideoDecoderFactory.h │ │ ├── RTCVideoDecoderFactoryH264.h │ │ ├── RTCVideoDecoderH264.h │ │ ├── RTCVideoDecoderVP8.h │ │ ├── RTCVideoDecoderVP9.h │ │ ├── RTCVideoEncoder.h │ │ ├── RTCVideoEncoderAV1.h │ │ ├── RTCVideoEncoderFactory.h │ │ ├── RTCVideoEncoderFactoryH264.h │ │ ├── RTCVideoEncoderH264.h │ │ ├── RTCVideoEncoderQpThresholds.h │ │ ├── RTCVideoEncoderSettings.h │ │ ├── RTCVideoEncoderVP8.h │ │ ├── RTCVideoEncoderVP9.h │ │ ├── RTCVideoFrame.h │ │ ├── RTCVideoFrameBuffer.h │ │ ├── RTCVideoRenderer.h │ │ ├── RTCVideoSource.h │ │ ├── RTCVideoTrack.h │ │ ├── RTCVideoViewShading.h │ │ ├── RTCYUVPlanarBuffer.h │ │ ├── UIDevice+RTCDevice.h │ │ └── WebRTC.h │ │ ├── Info.plist │ │ ├── Modules │ │ └── module.modulemap │ │ └── WebRTC └── ios-arm64_x86_64-simulator │ └── WebRTC.framework │ ├── Headers │ ├── RTCAudioDevice.h │ ├── RTCAudioDeviceModule.h │ ├── RTCAudioSession.h │ ├── RTCAudioSessionConfiguration.h │ ├── RTCAudioSource.h │ ├── RTCAudioTrack.h │ ├── RTCCVPixelBuffer.h │ ├── RTCCallbackLogger.h │ ├── RTCCameraPreviewView.h │ ├── RTCCameraVideoCapturer.h │ ├── RTCCertificate.h │ ├── RTCCodecSpecificInfo.h │ ├── RTCCodecSpecificInfoH264.h │ ├── RTCConfiguration.h │ ├── RTCCryptoOptions.h │ ├── RTCDataChannel.h │ ├── RTCDataChannelConfiguration.h │ ├── RTCDefaultVideoDecoderFactory.h │ ├── RTCDefaultVideoEncoderFactory.h │ ├── RTCDispatcher.h │ ├── RTCDtmfSender.h │ ├── RTCEAGLVideoView.h │ ├── RTCEncodedImage.h │ ├── RTCFieldTrials.h │ ├── RTCFileLogger.h │ ├── RTCFileVideoCapturer.h │ ├── RTCH264ProfileLevelId.h │ ├── RTCI420Buffer.h │ ├── RTCIceCandidate.h │ ├── RTCIceCandidateErrorEvent.h │ ├── RTCIceServer.h │ ├── RTCLegacyStatsReport.h │ ├── RTCLogging.h │ ├── RTCMTLVideoView.h │ ├── RTCMacros.h │ ├── RTCMediaConstraints.h │ ├── RTCMediaSource.h │ ├── RTCMediaStream.h │ ├── RTCMediaStreamTrack.h │ ├── RTCMetrics.h │ ├── RTCMetricsSampleInfo.h │ ├── RTCMutableI420Buffer.h │ ├── RTCMutableYUVPlanarBuffer.h │ ├── RTCNativeI420Buffer.h │ ├── RTCNativeMutableI420Buffer.h │ ├── RTCNetworkMonitor.h │ ├── RTCPeerConnection.h │ ├── RTCPeerConnectionFactory.h │ ├── RTCPeerConnectionFactoryOptions.h │ ├── RTCRtcpParameters.h │ ├── RTCRtpCodecParameters.h │ ├── RTCRtpEncodingParameters.h │ ├── RTCRtpHeaderExtension.h │ ├── RTCRtpParameters.h │ ├── RTCRtpReceiver.h │ ├── RTCRtpSender.h │ ├── RTCRtpTransceiver.h │ ├── RTCSSLAdapter.h │ ├── RTCSSLCertificateVerifier.h │ ├── RTCSessionDescription.h │ ├── RTCStatisticsReport.h │ ├── RTCTracing.h │ ├── RTCVideoCapturer.h │ ├── RTCVideoCodecConstants.h │ ├── RTCVideoCodecInfo.h │ ├── RTCVideoDecoder.h │ ├── RTCVideoDecoderAV1.h │ ├── RTCVideoDecoderFactory.h │ ├── RTCVideoDecoderFactoryH264.h │ ├── RTCVideoDecoderH264.h │ ├── RTCVideoDecoderVP8.h │ ├── RTCVideoDecoderVP9.h │ ├── RTCVideoEncoder.h │ ├── RTCVideoEncoderAV1.h │ ├── RTCVideoEncoderFactory.h │ ├── RTCVideoEncoderFactoryH264.h │ ├── RTCVideoEncoderH264.h │ ├── RTCVideoEncoderQpThresholds.h │ ├── RTCVideoEncoderSettings.h │ ├── RTCVideoEncoderVP8.h │ ├── RTCVideoEncoderVP9.h │ ├── RTCVideoFrame.h │ ├── RTCVideoFrameBuffer.h │ ├── RTCVideoRenderer.h │ ├── RTCVideoSource.h │ ├── RTCVideoTrack.h │ ├── RTCVideoViewShading.h │ ├── RTCYUVPlanarBuffer.h │ ├── UIDevice+RTCDevice.h │ └── WebRTC.h │ ├── Info.plist │ ├── Modules │ └── module.modulemap │ └── WebRTC ├── WebRTCiOSSDK.xcframework ├── Info.plist ├── ios-arm64 │ ├── WebRTCiOSSDK.framework │ │ ├── Headers │ │ │ ├── WebRTCiOSSDK-Swift.h │ │ │ └── WebRTCiOSSDK.h │ │ ├── Info.plist │ │ ├── Modules │ │ │ ├── WebRTCiOSSDK.swiftmodule │ │ │ │ ├── arm64-apple-ios.abi.json │ │ │ │ ├── arm64-apple-ios.private.swiftinterface │ │ │ │ ├── arm64-apple-ios.swiftdoc │ │ │ │ └── arm64-apple-ios.swiftinterface │ │ │ └── module.modulemap │ │ ├── WebRTCiOSSDK │ │ └── _CodeSignature │ │ │ └── CodeResources │ └── dSYMs │ │ └── WebRTCiOSSDK.framework.dSYM │ │ └── Contents │ │ ├── Info.plist │ │ └── Resources │ │ └── DWARF │ │ └── WebRTCiOSSDK └── ios-arm64_x86_64-simulator │ ├── WebRTCiOSSDK.framework │ ├── Headers │ │ ├── WebRTCiOSSDK-Swift.h │ │ └── WebRTCiOSSDK.h │ ├── Info.plist │ ├── Modules │ │ ├── WebRTCiOSSDK.swiftmodule │ │ │ ├── arm64-apple-ios-simulator.abi.json │ │ │ ├── arm64-apple-ios-simulator.private.swiftinterface │ │ │ ├── arm64-apple-ios-simulator.swiftdoc │ │ │ ├── arm64-apple-ios-simulator.swiftinterface │ │ │ ├── x86_64-apple-ios-simulator.abi.json │ │ │ ├── x86_64-apple-ios-simulator.private.swiftinterface │ │ │ ├── x86_64-apple-ios-simulator.swiftdoc │ │ │ └── x86_64-apple-ios-simulator.swiftinterface │ │ └── module.modulemap │ ├── WebRTCiOSSDK │ └── _CodeSignature │ │ └── CodeResources │ └── dSYMs │ └── WebRTCiOSSDK.framework.dSYM │ └── Contents │ ├── Info.plist │ └── Resources │ └── DWARF │ └── WebRTCiOSSDK ├── WebRTCiOSSDK.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ ├── ScreenShare.xcscheme │ ├── WebRTC-Sample-App.xcscheme │ ├── WebRTCiOSSDK.xcscheme │ └── WebRTCiOSSDKTests.xcscheme ├── WebRTCiOSSDK ├── WebRTCiOSSDK.h └── api │ ├── AntMediaClient.swift │ ├── AntMediaClientDelegate.swift │ ├── AntMediaClientProtocol.swift │ ├── AntMediaError.swift │ ├── utils │ └── ClientStatistics.swift │ └── webrtc │ ├── Config.swift │ ├── Dictionary.swift │ ├── RTCCustomFrameCapturer.swift │ ├── String.swift │ ├── WebRTCClient.swift │ └── WebRTCClientDelegate.swift ├── WebRTCiOSSDKTests └── WebRTCiOSSDKTests.swift └── webrtc_framework ├── README.md └── last-2-commits_m108.patch /.github/workflows/ios-build-and-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/.github/workflows/ios-build-and-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/README.md -------------------------------------------------------------------------------- /Resources/michael_jackson_audio_mono.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/Resources/michael_jackson_audio_mono.mp3 -------------------------------------------------------------------------------- /ScreenShare/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/ScreenShare/Info.plist -------------------------------------------------------------------------------- /ScreenShare/SampleHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/ScreenShare/SampleHandler.swift -------------------------------------------------------------------------------- /ScreenShare/ScreenShare.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/ScreenShare/ScreenShare.entitlements -------------------------------------------------------------------------------- /ScreenShare/ScreenShareDebug.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/ScreenShare/ScreenShareDebug.entitlements -------------------------------------------------------------------------------- /WebRTC-Sample-App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC-Sample-App/AppDelegate.swift -------------------------------------------------------------------------------- /WebRTC-Sample-App/Assets.xcassets/AppIcon.appiconset/Ant Media_sosyalmedya_square-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC-Sample-App/Assets.xcassets/AppIcon.appiconset/Ant Media_sosyalmedya_square-01.png -------------------------------------------------------------------------------- /WebRTC-Sample-App/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC-Sample-App/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /WebRTC-Sample-App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC-Sample-App/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /WebRTC-Sample-App/Assets.xcassets/VideoIcons/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC-Sample-App/Assets.xcassets/VideoIcons/Contents.json -------------------------------------------------------------------------------- /WebRTC-Sample-App/Assets.xcassets/VideoIcons/audioOff.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC-Sample-App/Assets.xcassets/VideoIcons/audioOff.imageset/Contents.json -------------------------------------------------------------------------------- /WebRTC-Sample-App/Assets.xcassets/VideoIcons/audioOff.imageset/audioOff@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC-Sample-App/Assets.xcassets/VideoIcons/audioOff.imageset/audioOff@2x.png -------------------------------------------------------------------------------- /WebRTC-Sample-App/Assets.xcassets/VideoIcons/audioOn.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC-Sample-App/Assets.xcassets/VideoIcons/audioOn.imageset/Contents.json -------------------------------------------------------------------------------- /WebRTC-Sample-App/Assets.xcassets/VideoIcons/audioOn.imageset/audioOn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC-Sample-App/Assets.xcassets/VideoIcons/audioOn.imageset/audioOn@2x.png -------------------------------------------------------------------------------- /WebRTC-Sample-App/Assets.xcassets/VideoIcons/close.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC-Sample-App/Assets.xcassets/VideoIcons/close.imageset/Contents.json -------------------------------------------------------------------------------- /WebRTC-Sample-App/Assets.xcassets/VideoIcons/close.imageset/hangup@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC-Sample-App/Assets.xcassets/VideoIcons/close.imageset/hangup@2x.png -------------------------------------------------------------------------------- /WebRTC-Sample-App/Assets.xcassets/VideoIcons/videoOff.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC-Sample-App/Assets.xcassets/VideoIcons/videoOff.imageset/Contents.json -------------------------------------------------------------------------------- /WebRTC-Sample-App/Assets.xcassets/VideoIcons/videoOff.imageset/videoOff@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC-Sample-App/Assets.xcassets/VideoIcons/videoOff.imageset/videoOff@2x.png -------------------------------------------------------------------------------- /WebRTC-Sample-App/Assets.xcassets/VideoIcons/videoOn.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC-Sample-App/Assets.xcassets/VideoIcons/videoOn.imageset/Contents.json -------------------------------------------------------------------------------- /WebRTC-Sample-App/Assets.xcassets/VideoIcons/videoOn.imageset/videoOn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC-Sample-App/Assets.xcassets/VideoIcons/videoOn.imageset/videoOn@2x.png -------------------------------------------------------------------------------- /WebRTC-Sample-App/Assets.xcassets/last_used.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC-Sample-App/Assets.xcassets/last_used.imageset/Contents.json -------------------------------------------------------------------------------- /WebRTC-Sample-App/Assets.xcassets/last_used.imageset/last_used.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC-Sample-App/Assets.xcassets/last_used.imageset/last_used.png -------------------------------------------------------------------------------- /WebRTC-Sample-App/Assets.xcassets/logo.imageset/Ant Media_sosyalmedya_square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC-Sample-App/Assets.xcassets/logo.imageset/Ant Media_sosyalmedya_square.svg -------------------------------------------------------------------------------- /WebRTC-Sample-App/Assets.xcassets/logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC-Sample-App/Assets.xcassets/logo.imageset/Contents.json -------------------------------------------------------------------------------- /WebRTC-Sample-App/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC-Sample-App/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /WebRTC-Sample-App/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC-Sample-App/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /WebRTC-Sample-App/CellView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC-Sample-App/CellView.swift -------------------------------------------------------------------------------- /WebRTC-Sample-App/ConferenceViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC-Sample-App/ConferenceViewController.swift -------------------------------------------------------------------------------- /WebRTC-Sample-App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC-Sample-App/Info.plist -------------------------------------------------------------------------------- /WebRTC-Sample-App/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC-Sample-App/SceneDelegate.swift -------------------------------------------------------------------------------- /WebRTC-Sample-App/Util/Extension/UIApplication.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC-Sample-App/Util/Extension/UIApplication.swift -------------------------------------------------------------------------------- /WebRTC-Sample-App/Util/Helper/AlertHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC-Sample-App/Util/Helper/AlertHelper.swift -------------------------------------------------------------------------------- /WebRTC-Sample-App/Util/Helper/Defaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC-Sample-App/Util/Helper/Defaults.swift -------------------------------------------------------------------------------- /WebRTC-Sample-App/Util/Helper/Run.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC-Sample-App/Util/Helper/Run.swift -------------------------------------------------------------------------------- /WebRTC-Sample-App/Util/Helper/SwiftyUserDefaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC-Sample-App/Util/Helper/SwiftyUserDefaults.swift -------------------------------------------------------------------------------- /WebRTC-Sample-App/VideoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC-Sample-App/VideoViewController.swift -------------------------------------------------------------------------------- /WebRTC-Sample-App/WebRTC-Sample-App.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC-Sample-App/WebRTC-Sample-App.entitlements -------------------------------------------------------------------------------- /WebRTC-Sample-App/WebRTC-Sample-AppDebug.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC-Sample-App/WebRTC-Sample-AppDebug.entitlements -------------------------------------------------------------------------------- /WebRTC-Sample-App/WebRTC_Sample_App.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC-Sample-App/WebRTC_Sample_App.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /WebRTC-Sample-App/WebRTC_Sample_App.xcdatamodeld/WebRTC_Sample_App.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC-Sample-App/WebRTC_Sample_App.xcdatamodeld/WebRTC_Sample_App.xcdatamodel/contents -------------------------------------------------------------------------------- /WebRTC-Sample-App/WelcomeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC-Sample-App/WelcomeViewController.swift -------------------------------------------------------------------------------- /WebRTC-Sample-AppTests/WebRTC_Sample_AppTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC-Sample-AppTests/WebRTC_Sample_AppTests.swift -------------------------------------------------------------------------------- /WebRTC-Sample-AppUITests/WebRTC_Sample_AppUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC-Sample-AppUITests/WebRTC_Sample_AppUITests.swift -------------------------------------------------------------------------------- /WebRTC-Sample-AppUITests/WebRTC_Sample_AppUITestsLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC-Sample-AppUITests/WebRTC_Sample_AppUITestsLaunchTests.swift -------------------------------------------------------------------------------- /WebRTC.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/Info.plist -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCAudioDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCAudioDevice.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCAudioDeviceModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCAudioDeviceModule.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCAudioSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCAudioSession.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCAudioSessionConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCAudioSessionConfiguration.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCAudioSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCAudioSource.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCAudioTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCAudioTrack.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCVPixelBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCVPixelBuffer.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCallbackLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCallbackLogger.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCameraPreviewView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCameraPreviewView.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCameraVideoCapturer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCameraVideoCapturer.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCertificate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCertificate.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCodecSpecificInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCodecSpecificInfo.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCodecSpecificInfoH264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCodecSpecificInfoH264.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCConfiguration.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCryptoOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCryptoOptions.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCDataChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCDataChannel.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCDataChannelConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCDataChannelConfiguration.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCDefaultVideoDecoderFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCDefaultVideoDecoderFactory.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCDefaultVideoEncoderFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCDefaultVideoEncoderFactory.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCDispatcher.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCDtmfSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCDtmfSender.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCEAGLVideoView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCEAGLVideoView.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCEncodedImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCEncodedImage.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCFieldTrials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCFieldTrials.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCFileLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCFileLogger.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCFileVideoCapturer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCFileVideoCapturer.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCH264ProfileLevelId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCH264ProfileLevelId.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCI420Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCI420Buffer.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCIceCandidate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCIceCandidate.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCIceCandidateErrorEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCIceCandidateErrorEvent.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCIceServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCIceServer.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCLegacyStatsReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCLegacyStatsReport.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCLogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCLogging.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMTLVideoView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMTLVideoView.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMacros.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMediaConstraints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMediaConstraints.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMediaSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMediaSource.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMediaStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMediaStream.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMediaStreamTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMediaStreamTrack.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMetrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMetrics.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMetricsSampleInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMetricsSampleInfo.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMutableI420Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMutableI420Buffer.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMutableYUVPlanarBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMutableYUVPlanarBuffer.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCNativeI420Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCNativeI420Buffer.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCNativeMutableI420Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCNativeMutableI420Buffer.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCNetworkMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCNetworkMonitor.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCPeerConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCPeerConnection.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCPeerConnectionFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCPeerConnectionFactory.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCPeerConnectionFactoryOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCPeerConnectionFactoryOptions.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCRtcpParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCRtcpParameters.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCRtpCodecParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCRtpCodecParameters.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCRtpEncodingParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCRtpEncodingParameters.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCRtpHeaderExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCRtpHeaderExtension.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCRtpParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCRtpParameters.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCRtpReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCRtpReceiver.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCRtpSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCRtpSender.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCRtpTransceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCRtpTransceiver.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCSSLAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCSSLAdapter.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCSSLCertificateVerifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCSSLCertificateVerifier.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCSessionDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCSessionDescription.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCStatisticsReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCStatisticsReport.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCTracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCTracing.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoCapturer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoCapturer.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoCodecConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoCodecConstants.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoCodecInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoCodecInfo.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoDecoder.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoDecoderAV1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoDecoderAV1.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoDecoderFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoDecoderFactory.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoDecoderFactoryH264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoDecoderFactoryH264.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoDecoderH264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoDecoderH264.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoDecoderVP8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoDecoderVP8.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoDecoderVP9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoDecoderVP9.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoder.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoderAV1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoderAV1.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoderFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoderFactory.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoderFactoryH264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoderFactoryH264.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoderH264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoderH264.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoderQpThresholds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoderQpThresholds.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoderSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoderSettings.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoderVP8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoderVP8.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoderVP9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoderVP9.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoFrame.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoFrameBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoFrameBuffer.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoRenderer.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoSource.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoTrack.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoViewShading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoViewShading.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCYUVPlanarBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCYUVPlanarBuffer.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/UIDevice+RTCDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/UIDevice+RTCDevice.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/WebRTC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/WebRTC.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Info.plist -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64/WebRTC.framework/WebRTC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64/WebRTC.framework/WebRTC -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCAudioDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCAudioDevice.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCAudioDeviceModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCAudioDeviceModule.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCAudioSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCAudioSession.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCAudioSessionConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCAudioSessionConfiguration.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCAudioSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCAudioSource.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCAudioTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCAudioTrack.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCCVPixelBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCCVPixelBuffer.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCCallbackLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCCallbackLogger.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCCameraPreviewView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCCameraPreviewView.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCCameraVideoCapturer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCCameraVideoCapturer.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCCertificate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCCertificate.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCCodecSpecificInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCCodecSpecificInfo.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCCodecSpecificInfoH264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCCodecSpecificInfoH264.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCConfiguration.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCCryptoOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCCryptoOptions.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCDataChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCDataChannel.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCDataChannelConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCDataChannelConfiguration.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCDefaultVideoDecoderFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCDefaultVideoDecoderFactory.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCDefaultVideoEncoderFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCDefaultVideoEncoderFactory.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCDispatcher.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCDtmfSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCDtmfSender.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCEAGLVideoView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCEAGLVideoView.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCEncodedImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCEncodedImage.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCFieldTrials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCFieldTrials.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCFileLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCFileLogger.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCFileVideoCapturer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCFileVideoCapturer.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCH264ProfileLevelId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCH264ProfileLevelId.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCI420Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCI420Buffer.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCIceCandidate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCIceCandidate.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCIceCandidateErrorEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCIceCandidateErrorEvent.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCIceServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCIceServer.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCLegacyStatsReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCLegacyStatsReport.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCLogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCLogging.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCMTLVideoView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCMTLVideoView.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCMacros.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCMediaConstraints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCMediaConstraints.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCMediaSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCMediaSource.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCMediaStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCMediaStream.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCMediaStreamTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCMediaStreamTrack.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCMetrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCMetrics.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCMetricsSampleInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCMetricsSampleInfo.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCMutableI420Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCMutableI420Buffer.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCMutableYUVPlanarBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCMutableYUVPlanarBuffer.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCNativeI420Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCNativeI420Buffer.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCNativeMutableI420Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCNativeMutableI420Buffer.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCNetworkMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCNetworkMonitor.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCPeerConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCPeerConnection.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCPeerConnectionFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCPeerConnectionFactory.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCPeerConnectionFactoryOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCPeerConnectionFactoryOptions.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCRtcpParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCRtcpParameters.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCRtpCodecParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCRtpCodecParameters.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCRtpEncodingParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCRtpEncodingParameters.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCRtpHeaderExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCRtpHeaderExtension.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCRtpParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCRtpParameters.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCRtpReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCRtpReceiver.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCRtpSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCRtpSender.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCRtpTransceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCRtpTransceiver.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCSSLAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCSSLAdapter.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCSSLCertificateVerifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCSSLCertificateVerifier.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCSessionDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCSessionDescription.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCStatisticsReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCStatisticsReport.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCTracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCTracing.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoCapturer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoCapturer.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoCodecConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoCodecConstants.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoCodecInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoCodecInfo.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoDecoder.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoDecoderAV1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoDecoderAV1.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoDecoderFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoDecoderFactory.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoDecoderFactoryH264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoDecoderFactoryH264.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoDecoderH264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoDecoderH264.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoDecoderVP8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoDecoderVP8.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoDecoderVP9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoDecoderVP9.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoder.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoderAV1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoderAV1.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoderFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoderFactory.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoderFactoryH264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoderFactoryH264.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoderH264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoderH264.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoderQpThresholds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoderQpThresholds.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoderSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoderSettings.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoderVP8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoderVP8.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoderVP9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoderVP9.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoFrame.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoFrameBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoFrameBuffer.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoRenderer.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoSource.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoTrack.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoViewShading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoViewShading.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCYUVPlanarBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCYUVPlanarBuffer.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/UIDevice+RTCDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/UIDevice+RTCDevice.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/WebRTC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/WebRTC.h -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Info.plist -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/WebRTC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/WebRTC -------------------------------------------------------------------------------- /WebRTCiOSSDK.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK.xcframework/Info.plist -------------------------------------------------------------------------------- /WebRTCiOSSDK.xcframework/ios-arm64/WebRTCiOSSDK.framework/Headers/WebRTCiOSSDK-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK.xcframework/ios-arm64/WebRTCiOSSDK.framework/Headers/WebRTCiOSSDK-Swift.h -------------------------------------------------------------------------------- /WebRTCiOSSDK.xcframework/ios-arm64/WebRTCiOSSDK.framework/Headers/WebRTCiOSSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK.xcframework/ios-arm64/WebRTCiOSSDK.framework/Headers/WebRTCiOSSDK.h -------------------------------------------------------------------------------- /WebRTCiOSSDK.xcframework/ios-arm64/WebRTCiOSSDK.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK.xcframework/ios-arm64/WebRTCiOSSDK.framework/Info.plist -------------------------------------------------------------------------------- /WebRTCiOSSDK.xcframework/ios-arm64/WebRTCiOSSDK.framework/Modules/WebRTCiOSSDK.swiftmodule/arm64-apple-ios.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK.xcframework/ios-arm64/WebRTCiOSSDK.framework/Modules/WebRTCiOSSDK.swiftmodule/arm64-apple-ios.abi.json -------------------------------------------------------------------------------- /WebRTCiOSSDK.xcframework/ios-arm64/WebRTCiOSSDK.framework/Modules/WebRTCiOSSDK.swiftmodule/arm64-apple-ios.private.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK.xcframework/ios-arm64/WebRTCiOSSDK.framework/Modules/WebRTCiOSSDK.swiftmodule/arm64-apple-ios.private.swiftinterface -------------------------------------------------------------------------------- /WebRTCiOSSDK.xcframework/ios-arm64/WebRTCiOSSDK.framework/Modules/WebRTCiOSSDK.swiftmodule/arm64-apple-ios.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK.xcframework/ios-arm64/WebRTCiOSSDK.framework/Modules/WebRTCiOSSDK.swiftmodule/arm64-apple-ios.swiftdoc -------------------------------------------------------------------------------- /WebRTCiOSSDK.xcframework/ios-arm64/WebRTCiOSSDK.framework/Modules/WebRTCiOSSDK.swiftmodule/arm64-apple-ios.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK.xcframework/ios-arm64/WebRTCiOSSDK.framework/Modules/WebRTCiOSSDK.swiftmodule/arm64-apple-ios.swiftinterface -------------------------------------------------------------------------------- /WebRTCiOSSDK.xcframework/ios-arm64/WebRTCiOSSDK.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK.xcframework/ios-arm64/WebRTCiOSSDK.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /WebRTCiOSSDK.xcframework/ios-arm64/WebRTCiOSSDK.framework/WebRTCiOSSDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK.xcframework/ios-arm64/WebRTCiOSSDK.framework/WebRTCiOSSDK -------------------------------------------------------------------------------- /WebRTCiOSSDK.xcframework/ios-arm64/WebRTCiOSSDK.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK.xcframework/ios-arm64/WebRTCiOSSDK.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /WebRTCiOSSDK.xcframework/ios-arm64/dSYMs/WebRTCiOSSDK.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK.xcframework/ios-arm64/dSYMs/WebRTCiOSSDK.framework.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /WebRTCiOSSDK.xcframework/ios-arm64/dSYMs/WebRTCiOSSDK.framework.dSYM/Contents/Resources/DWARF/WebRTCiOSSDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK.xcframework/ios-arm64/dSYMs/WebRTCiOSSDK.framework.dSYM/Contents/Resources/DWARF/WebRTCiOSSDK -------------------------------------------------------------------------------- /WebRTCiOSSDK.xcframework/ios-arm64_x86_64-simulator/WebRTCiOSSDK.framework/Headers/WebRTCiOSSDK-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK.xcframework/ios-arm64_x86_64-simulator/WebRTCiOSSDK.framework/Headers/WebRTCiOSSDK-Swift.h -------------------------------------------------------------------------------- /WebRTCiOSSDK.xcframework/ios-arm64_x86_64-simulator/WebRTCiOSSDK.framework/Headers/WebRTCiOSSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK.xcframework/ios-arm64_x86_64-simulator/WebRTCiOSSDK.framework/Headers/WebRTCiOSSDK.h -------------------------------------------------------------------------------- /WebRTCiOSSDK.xcframework/ios-arm64_x86_64-simulator/WebRTCiOSSDK.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK.xcframework/ios-arm64_x86_64-simulator/WebRTCiOSSDK.framework/Info.plist -------------------------------------------------------------------------------- /WebRTCiOSSDK.xcframework/ios-arm64_x86_64-simulator/WebRTCiOSSDK.framework/Modules/WebRTCiOSSDK.swiftmodule/arm64-apple-ios-simulator.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK.xcframework/ios-arm64_x86_64-simulator/WebRTCiOSSDK.framework/Modules/WebRTCiOSSDK.swiftmodule/arm64-apple-ios-simulator.abi.json -------------------------------------------------------------------------------- /WebRTCiOSSDK.xcframework/ios-arm64_x86_64-simulator/WebRTCiOSSDK.framework/Modules/WebRTCiOSSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK.xcframework/ios-arm64_x86_64-simulator/WebRTCiOSSDK.framework/Modules/WebRTCiOSSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface -------------------------------------------------------------------------------- /WebRTCiOSSDK.xcframework/ios-arm64_x86_64-simulator/WebRTCiOSSDK.framework/Modules/WebRTCiOSSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK.xcframework/ios-arm64_x86_64-simulator/WebRTCiOSSDK.framework/Modules/WebRTCiOSSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc -------------------------------------------------------------------------------- /WebRTCiOSSDK.xcframework/ios-arm64_x86_64-simulator/WebRTCiOSSDK.framework/Modules/WebRTCiOSSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK.xcframework/ios-arm64_x86_64-simulator/WebRTCiOSSDK.framework/Modules/WebRTCiOSSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface -------------------------------------------------------------------------------- /WebRTCiOSSDK.xcframework/ios-arm64_x86_64-simulator/WebRTCiOSSDK.framework/Modules/WebRTCiOSSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK.xcframework/ios-arm64_x86_64-simulator/WebRTCiOSSDK.framework/Modules/WebRTCiOSSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json -------------------------------------------------------------------------------- /WebRTCiOSSDK.xcframework/ios-arm64_x86_64-simulator/WebRTCiOSSDK.framework/Modules/WebRTCiOSSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK.xcframework/ios-arm64_x86_64-simulator/WebRTCiOSSDK.framework/Modules/WebRTCiOSSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface -------------------------------------------------------------------------------- /WebRTCiOSSDK.xcframework/ios-arm64_x86_64-simulator/WebRTCiOSSDK.framework/Modules/WebRTCiOSSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK.xcframework/ios-arm64_x86_64-simulator/WebRTCiOSSDK.framework/Modules/WebRTCiOSSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc -------------------------------------------------------------------------------- /WebRTCiOSSDK.xcframework/ios-arm64_x86_64-simulator/WebRTCiOSSDK.framework/Modules/WebRTCiOSSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK.xcframework/ios-arm64_x86_64-simulator/WebRTCiOSSDK.framework/Modules/WebRTCiOSSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface -------------------------------------------------------------------------------- /WebRTCiOSSDK.xcframework/ios-arm64_x86_64-simulator/WebRTCiOSSDK.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK.xcframework/ios-arm64_x86_64-simulator/WebRTCiOSSDK.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /WebRTCiOSSDK.xcframework/ios-arm64_x86_64-simulator/WebRTCiOSSDK.framework/WebRTCiOSSDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK.xcframework/ios-arm64_x86_64-simulator/WebRTCiOSSDK.framework/WebRTCiOSSDK -------------------------------------------------------------------------------- /WebRTCiOSSDK.xcframework/ios-arm64_x86_64-simulator/WebRTCiOSSDK.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK.xcframework/ios-arm64_x86_64-simulator/WebRTCiOSSDK.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /WebRTCiOSSDK.xcframework/ios-arm64_x86_64-simulator/dSYMs/WebRTCiOSSDK.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK.xcframework/ios-arm64_x86_64-simulator/dSYMs/WebRTCiOSSDK.framework.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /WebRTCiOSSDK.xcframework/ios-arm64_x86_64-simulator/dSYMs/WebRTCiOSSDK.framework.dSYM/Contents/Resources/DWARF/WebRTCiOSSDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK.xcframework/ios-arm64_x86_64-simulator/dSYMs/WebRTCiOSSDK.framework.dSYM/Contents/Resources/DWARF/WebRTCiOSSDK -------------------------------------------------------------------------------- /WebRTCiOSSDK.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /WebRTCiOSSDK.xcodeproj/xcshareddata/xcschemes/ScreenShare.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK.xcodeproj/xcshareddata/xcschemes/ScreenShare.xcscheme -------------------------------------------------------------------------------- /WebRTCiOSSDK.xcodeproj/xcshareddata/xcschemes/WebRTC-Sample-App.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK.xcodeproj/xcshareddata/xcschemes/WebRTC-Sample-App.xcscheme -------------------------------------------------------------------------------- /WebRTCiOSSDK.xcodeproj/xcshareddata/xcschemes/WebRTCiOSSDK.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK.xcodeproj/xcshareddata/xcschemes/WebRTCiOSSDK.xcscheme -------------------------------------------------------------------------------- /WebRTCiOSSDK.xcodeproj/xcshareddata/xcschemes/WebRTCiOSSDKTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK.xcodeproj/xcshareddata/xcschemes/WebRTCiOSSDKTests.xcscheme -------------------------------------------------------------------------------- /WebRTCiOSSDK/WebRTCiOSSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK/WebRTCiOSSDK.h -------------------------------------------------------------------------------- /WebRTCiOSSDK/api/AntMediaClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK/api/AntMediaClient.swift -------------------------------------------------------------------------------- /WebRTCiOSSDK/api/AntMediaClientDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK/api/AntMediaClientDelegate.swift -------------------------------------------------------------------------------- /WebRTCiOSSDK/api/AntMediaClientProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK/api/AntMediaClientProtocol.swift -------------------------------------------------------------------------------- /WebRTCiOSSDK/api/AntMediaError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK/api/AntMediaError.swift -------------------------------------------------------------------------------- /WebRTCiOSSDK/api/utils/ClientStatistics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK/api/utils/ClientStatistics.swift -------------------------------------------------------------------------------- /WebRTCiOSSDK/api/webrtc/Config.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK/api/webrtc/Config.swift -------------------------------------------------------------------------------- /WebRTCiOSSDK/api/webrtc/Dictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK/api/webrtc/Dictionary.swift -------------------------------------------------------------------------------- /WebRTCiOSSDK/api/webrtc/RTCCustomFrameCapturer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK/api/webrtc/RTCCustomFrameCapturer.swift -------------------------------------------------------------------------------- /WebRTCiOSSDK/api/webrtc/String.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK/api/webrtc/String.swift -------------------------------------------------------------------------------- /WebRTCiOSSDK/api/webrtc/WebRTCClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK/api/webrtc/WebRTCClient.swift -------------------------------------------------------------------------------- /WebRTCiOSSDK/api/webrtc/WebRTCClientDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDK/api/webrtc/WebRTCClientDelegate.swift -------------------------------------------------------------------------------- /WebRTCiOSSDKTests/WebRTCiOSSDKTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/WebRTCiOSSDKTests/WebRTCiOSSDKTests.swift -------------------------------------------------------------------------------- /webrtc_framework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/webrtc_framework/README.md -------------------------------------------------------------------------------- /webrtc_framework/last-2-commits_m108.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-media/WebRTC-iOS-SDK/HEAD/webrtc_framework/last-2-commits_m108.patch --------------------------------------------------------------------------------