├── .gitignore ├── .travis.yml ├── AppRTCDemo-iOS ├── AppRTCDemo-iOS.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── AppRTCDemo-iOS.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── AppRTCDemo-iOS │ ├── ARDAppClient+Internal.h │ ├── ARDAppClient.h │ ├── ARDAppClient.m │ ├── ARDAppEngineClient.h │ ├── ARDAppEngineClient.m │ ├── ARDBitrateTracker.h │ ├── ARDBitrateTracker.m │ ├── ARDCaptureController.h │ ├── ARDCaptureController.m │ ├── ARDExternalSampleCapturer.h │ ├── ARDExternalSampleCapturer.m │ ├── ARDJoinResponse+Internal.h │ ├── ARDJoinResponse.h │ ├── ARDJoinResponse.m │ ├── ARDMessageResponse+Internal.h │ ├── ARDMessageResponse.h │ ├── ARDMessageResponse.m │ ├── ARDRoomServerClient.h │ ├── ARDSettingsModel+Private.h │ ├── ARDSettingsModel.h │ ├── ARDSettingsModel.m │ ├── ARDSettingsStore.h │ ├── ARDSettingsStore.m │ ├── ARDSignalingChannel.h │ ├── ARDSignalingMessage.h │ ├── ARDSignalingMessage.m │ ├── ARDStatsBuilder.h │ ├── ARDStatsBuilder.m │ ├── ARDTURNClient+Internal.h │ ├── ARDTURNClient.h │ ├── ARDTURNClient.m │ ├── ARDWebSocketChannel.h │ ├── ARDWebSocketChannel.m │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── Info.plist │ ├── RTCIceCandidate+JSON.h │ ├── RTCIceCandidate+JSON.m │ ├── RTCIceServer+JSON.h │ ├── RTCIceServer+JSON.m │ ├── RTCSessionDescription+JSON.h │ ├── RTCSessionDescription+JSON.m │ ├── common │ │ ├── ARDUtilities.h │ │ └── ARDUtilities.m │ ├── ios │ │ ├── ARDAppDelegate.h │ │ ├── ARDAppDelegate.m │ │ ├── ARDFileCaptureController.h │ │ ├── ARDFileCaptureController.m │ │ ├── ARDMainView.h │ │ ├── ARDMainView.m │ │ ├── ARDMainViewController.h │ │ ├── ARDMainViewController.m │ │ ├── ARDSettingsViewController.h │ │ ├── ARDSettingsViewController.m │ │ ├── ARDStatsView.h │ │ ├── ARDStatsView.m │ │ ├── ARDVideoCallView.h │ │ ├── ARDVideoCallView.m │ │ ├── ARDVideoCallViewController.h │ │ ├── ARDVideoCallViewController.m │ │ ├── RTCVideoCodecInfo+HumanReadable.h │ │ ├── RTCVideoCodecInfo+HumanReadable.m │ │ ├── UIImage+ARDUtilities.h │ │ ├── UIImage+ARDUtilities.m │ │ ├── broadcast_extension │ │ │ ├── ARDBroadcastSampleHandler.h │ │ │ ├── ARDBroadcastSampleHandler.m │ │ │ ├── ARDBroadcastSetupViewController.h │ │ │ ├── ARDBroadcastSetupViewController.m │ │ │ ├── BroadcastSetupUIInfo.plist │ │ │ └── BroadcastUploadInfo.plist │ │ ├── resources │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Roboto-Regular.ttf │ │ │ ├── foreman.mp4 │ │ │ ├── iPhone5@2x.png │ │ │ ├── iPhone6@2x.png │ │ │ ├── iPhone6p@3x.png │ │ │ ├── ic_call_end_black_24dp.png │ │ │ ├── ic_call_end_black_24dp@2x.png │ │ │ ├── ic_clear_black_24dp.png │ │ │ ├── ic_clear_black_24dp@2x.png │ │ │ ├── ic_settings_black_24dp.png │ │ │ ├── ic_settings_black_24dp@2x.png │ │ │ ├── ic_surround_sound_black_24dp.png │ │ │ ├── ic_surround_sound_black_24dp@2x.png │ │ │ ├── ic_switch_video_black_24dp.png │ │ │ ├── ic_switch_video_black_24dp@2x.png │ │ │ └── mozart.mp3 │ │ └── third_party │ │ │ └── SocketRocket │ │ │ ├── LICENSE │ │ │ ├── SRWebSocket.h │ │ │ └── SRWebSocket.m │ └── main.m ├── Podfile ├── Podfile.lock └── Pods │ ├── Local Podspecs │ └── WebRTC.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ └── project.pbxproj │ ├── SocketRocket │ ├── LICENSE │ ├── README.rst │ └── SocketRocket │ │ ├── SRWebSocket.h │ │ ├── SRWebSocket.m │ │ └── SocketRocket.h │ └── Target Support Files │ ├── Pods-AppRTCDemo-iOS │ ├── Pods-AppRTCDemo-iOS-Info.plist │ ├── Pods-AppRTCDemo-iOS-acknowledgements.markdown │ ├── Pods-AppRTCDemo-iOS-acknowledgements.plist │ ├── Pods-AppRTCDemo-iOS-artifacts-Debug-input-files.xcfilelist │ ├── Pods-AppRTCDemo-iOS-artifacts-Debug-output-files.xcfilelist │ ├── Pods-AppRTCDemo-iOS-artifacts-Release-input-files.xcfilelist │ ├── Pods-AppRTCDemo-iOS-artifacts-Release-output-files.xcfilelist │ ├── Pods-AppRTCDemo-iOS-artifacts.sh │ ├── Pods-AppRTCDemo-iOS-dummy.m │ ├── Pods-AppRTCDemo-iOS-frameworks-Debug-input-files.xcfilelist │ ├── Pods-AppRTCDemo-iOS-frameworks-Debug-output-files.xcfilelist │ ├── Pods-AppRTCDemo-iOS-frameworks-Release-input-files.xcfilelist │ ├── Pods-AppRTCDemo-iOS-frameworks-Release-output-files.xcfilelist │ ├── Pods-AppRTCDemo-iOS-frameworks.sh │ ├── Pods-AppRTCDemo-iOS-umbrella.h │ ├── Pods-AppRTCDemo-iOS.debug.xcconfig │ ├── Pods-AppRTCDemo-iOS.modulemap │ └── Pods-AppRTCDemo-iOS.release.xcconfig │ ├── SocketRocket │ ├── SocketRocket-Info.plist │ ├── SocketRocket-dummy.m │ ├── SocketRocket-prefix.pch │ ├── SocketRocket-umbrella.h │ ├── SocketRocket.debug.xcconfig │ ├── SocketRocket.modulemap │ └── SocketRocket.release.xcconfig │ └── WebRTC │ ├── WebRTC.debug.xcconfig │ └── WebRTC.release.xcconfig ├── AppRTCDemo-macOS ├── AppRTCDemo-macOS.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── AppRTCDemo-macOS.xcscheme ├── AppRTCDemo-macOS.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── AppRTCDemo-macOS │ ├── ARDAppClient+Internal.h │ ├── ARDAppClient.h │ ├── ARDAppClient.m │ ├── ARDAppEngineClient.h │ ├── ARDAppEngineClient.m │ ├── ARDBitrateTracker.h │ ├── ARDBitrateTracker.m │ ├── ARDCaptureController.h │ ├── ARDCaptureController.m │ ├── ARDExternalSampleCapturer.h │ ├── ARDExternalSampleCapturer.m │ ├── ARDJoinResponse+Internal.h │ ├── ARDJoinResponse.h │ ├── ARDJoinResponse.m │ ├── ARDMessageResponse+Internal.h │ ├── ARDMessageResponse.h │ ├── ARDMessageResponse.m │ ├── ARDRoomServerClient.h │ ├── ARDSettingsModel+Private.h │ ├── ARDSettingsModel.h │ ├── ARDSettingsModel.m │ ├── ARDSettingsStore.h │ ├── ARDSettingsStore.m │ ├── ARDSignalingChannel.h │ ├── ARDSignalingMessage.h │ ├── ARDSignalingMessage.m │ ├── ARDStatsBuilder.h │ ├── ARDStatsBuilder.m │ ├── ARDTURNClient+Internal.h │ ├── ARDTURNClient.h │ ├── ARDTURNClient.m │ ├── ARDWebSocketChannel.h │ ├── ARDWebSocketChannel.m │ ├── AppRTCDemo_macOS.entitlements │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── RTCIceCandidate+JSON.h │ ├── RTCIceCandidate+JSON.m │ ├── RTCIceServer+JSON.h │ ├── RTCIceServer+JSON.m │ ├── RTCSessionDescription+JSON.h │ ├── RTCSessionDescription+JSON.m │ ├── common │ │ ├── ARDUtilities.h │ │ └── ARDUtilities.m │ ├── mac │ │ ├── APPRTCAppDelegate.h │ │ ├── APPRTCAppDelegate.m │ │ ├── APPRTCViewController.h │ │ └── APPRTCViewController.m │ └── main.m ├── Podfile ├── Podfile.lock └── Pods │ ├── Local Podspecs │ └── WebRTC.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ └── project.pbxproj │ ├── SocketRocket │ ├── LICENSE │ ├── README.rst │ └── SocketRocket │ │ ├── SRWebSocket.h │ │ ├── SRWebSocket.m │ │ └── SocketRocket.h │ └── Target Support Files │ ├── Pods-AppRTCDemo-macOS │ ├── Pods-AppRTCDemo-macOS-Info.plist │ ├── Pods-AppRTCDemo-macOS-acknowledgements.markdown │ ├── Pods-AppRTCDemo-macOS-acknowledgements.plist │ ├── Pods-AppRTCDemo-macOS-artifacts-Debug-input-files.xcfilelist │ ├── Pods-AppRTCDemo-macOS-artifacts-Debug-output-files.xcfilelist │ ├── Pods-AppRTCDemo-macOS-artifacts-Release-input-files.xcfilelist │ ├── Pods-AppRTCDemo-macOS-artifacts-Release-output-files.xcfilelist │ ├── Pods-AppRTCDemo-macOS-artifacts.sh │ ├── Pods-AppRTCDemo-macOS-dummy.m │ ├── Pods-AppRTCDemo-macOS-frameworks-Debug-input-files.xcfilelist │ ├── Pods-AppRTCDemo-macOS-frameworks-Debug-output-files.xcfilelist │ ├── Pods-AppRTCDemo-macOS-frameworks-Release-input-files.xcfilelist │ ├── Pods-AppRTCDemo-macOS-frameworks-Release-output-files.xcfilelist │ ├── Pods-AppRTCDemo-macOS-frameworks.sh │ ├── Pods-AppRTCDemo-macOS-umbrella.h │ ├── Pods-AppRTCDemo-macOS.debug.xcconfig │ ├── Pods-AppRTCDemo-macOS.modulemap │ └── Pods-AppRTCDemo-macOS.release.xcconfig │ ├── SocketRocket │ ├── SocketRocket-Info.plist │ ├── SocketRocket-dummy.m │ ├── SocketRocket-prefix.pch │ ├── SocketRocket-umbrella.h │ ├── SocketRocket.debug.xcconfig │ ├── SocketRocket.modulemap │ └── SocketRocket.release.xcconfig │ └── WebRTC │ ├── WebRTC.debug.xcconfig │ └── WebRTC.release.xcconfig ├── LICENSE ├── LICENSE.md ├── Package.swift ├── README.md ├── WebRTC.podspec └── WebRTC └── WebRTC.xcframework ├── Info.plist ├── ios-arm64 └── WebRTC.framework │ ├── Headers │ ├── 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 │ ├── 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 │ ├── RTCSessionDescription.h │ ├── RTCStatisticsReport.h │ ├── RTCTracing.h │ ├── RTCVideoCapturer.h │ ├── RTCVideoCodecConstants.h │ ├── RTCVideoCodecInfo.h │ ├── RTCVideoDecoder.h │ ├── RTCVideoDecoderFactory.h │ ├── RTCVideoDecoderFactoryH264.h │ ├── RTCVideoDecoderH264.h │ ├── RTCVideoDecoderVP8.h │ ├── RTCVideoDecoderVP9.h │ ├── RTCVideoEncoder.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-x86_64-simulator └── WebRTC.framework │ ├── Headers │ ├── 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 │ ├── 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 │ ├── RTCSessionDescription.h │ ├── RTCStatisticsReport.h │ ├── RTCTracing.h │ ├── RTCVideoCapturer.h │ ├── RTCVideoCodecConstants.h │ ├── RTCVideoCodecInfo.h │ ├── RTCVideoDecoder.h │ ├── RTCVideoDecoderFactory.h │ ├── RTCVideoDecoderFactoryH264.h │ ├── RTCVideoDecoderH264.h │ ├── RTCVideoDecoderVP8.h │ ├── RTCVideoDecoderVP9.h │ ├── RTCVideoEncoder.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 └── macos-x86_64 └── WebRTC.framework ├── Headers ├── Modules ├── Resources ├── Versions ├── A │ ├── Headers │ │ ├── RTCAudioSource.h │ │ ├── RTCAudioTrack.h │ │ ├── RTCCVPixelBuffer.h │ │ ├── RTCCallbackLogger.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 │ │ ├── RTCEncodedImage.h │ │ ├── RTCFieldTrials.h │ │ ├── RTCFileLogger.h │ │ ├── RTCFileVideoCapturer.h │ │ ├── RTCH264ProfileLevelId.h │ │ ├── RTCI420Buffer.h │ │ ├── RTCIceCandidate.h │ │ ├── RTCIceServer.h │ │ ├── RTCLegacyStatsReport.h │ │ ├── RTCLogging.h │ │ ├── RTCMTLNSVideoView.h │ │ ├── RTCMacros.h │ │ ├── RTCMediaConstraints.h │ │ ├── RTCMediaSource.h │ │ ├── RTCMediaStream.h │ │ ├── RTCMediaStreamTrack.h │ │ ├── RTCMetrics.h │ │ ├── RTCMetricsSampleInfo.h │ │ ├── RTCMutableI420Buffer.h │ │ ├── RTCMutableYUVPlanarBuffer.h │ │ ├── RTCNSGLVideoView.h │ │ ├── RTCNativeI420Buffer.h │ │ ├── RTCNativeMutableI420Buffer.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 │ │ ├── RTCSessionDescription.h │ │ ├── RTCTracing.h │ │ ├── RTCVideoCapturer.h │ │ ├── RTCVideoCodecInfo.h │ │ ├── RTCVideoDecoder.h │ │ ├── RTCVideoDecoderFactory.h │ │ ├── RTCVideoDecoderFactoryH264.h │ │ ├── RTCVideoDecoderH264.h │ │ ├── RTCVideoDecoderVP8.h │ │ ├── RTCVideoDecoderVP9.h │ │ ├── RTCVideoEncoder.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 │ │ └── WebRTC.h │ ├── Modules │ │ └── module.modulemap │ ├── Resources │ │ └── Info.plist │ └── WebRTC └── Current └── WebRTC /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/.travis.yml -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ARDAppClient+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ARDAppClient+Internal.h -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ARDAppClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ARDAppClient.h -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ARDAppClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ARDAppClient.m -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ARDAppEngineClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ARDAppEngineClient.h -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ARDAppEngineClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ARDAppEngineClient.m -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ARDBitrateTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ARDBitrateTracker.h -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ARDBitrateTracker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ARDBitrateTracker.m -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ARDCaptureController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ARDCaptureController.h -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ARDCaptureController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ARDCaptureController.m -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ARDExternalSampleCapturer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ARDExternalSampleCapturer.h -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ARDExternalSampleCapturer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ARDExternalSampleCapturer.m -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ARDJoinResponse+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ARDJoinResponse+Internal.h -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ARDJoinResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ARDJoinResponse.h -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ARDJoinResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ARDJoinResponse.m -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ARDMessageResponse+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ARDMessageResponse+Internal.h -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ARDMessageResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ARDMessageResponse.h -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ARDMessageResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ARDMessageResponse.m -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ARDRoomServerClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ARDRoomServerClient.h -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ARDSettingsModel+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ARDSettingsModel+Private.h -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ARDSettingsModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ARDSettingsModel.h -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ARDSettingsModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ARDSettingsModel.m -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ARDSettingsStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ARDSettingsStore.h -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ARDSettingsStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ARDSettingsStore.m -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ARDSignalingChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ARDSignalingChannel.h -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ARDSignalingMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ARDSignalingMessage.h -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ARDSignalingMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ARDSignalingMessage.m -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ARDStatsBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ARDStatsBuilder.h -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ARDStatsBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ARDStatsBuilder.m -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ARDTURNClient+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ARDTURNClient+Internal.h -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ARDTURNClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ARDTURNClient.h -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ARDTURNClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ARDTURNClient.m -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ARDWebSocketChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ARDWebSocketChannel.h -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ARDWebSocketChannel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ARDWebSocketChannel.m -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/Info.plist -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/RTCIceCandidate+JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/RTCIceCandidate+JSON.h -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/RTCIceCandidate+JSON.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/RTCIceCandidate+JSON.m -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/RTCIceServer+JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/RTCIceServer+JSON.h -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/RTCIceServer+JSON.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/RTCIceServer+JSON.m -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/RTCSessionDescription+JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/RTCSessionDescription+JSON.h -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/RTCSessionDescription+JSON.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/RTCSessionDescription+JSON.m -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/common/ARDUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/common/ARDUtilities.h -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/common/ARDUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/common/ARDUtilities.m -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/ARDAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/ARDAppDelegate.h -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/ARDAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/ARDAppDelegate.m -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/ARDFileCaptureController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/ARDFileCaptureController.h -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/ARDFileCaptureController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/ARDFileCaptureController.m -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/ARDMainView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/ARDMainView.h -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/ARDMainView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/ARDMainView.m -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/ARDMainViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/ARDMainViewController.h -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/ARDMainViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/ARDMainViewController.m -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/ARDSettingsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/ARDSettingsViewController.h -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/ARDSettingsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/ARDSettingsViewController.m -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/ARDStatsView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/ARDStatsView.h -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/ARDStatsView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/ARDStatsView.m -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/ARDVideoCallView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/ARDVideoCallView.h -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/ARDVideoCallView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/ARDVideoCallView.m -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/ARDVideoCallViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/ARDVideoCallViewController.h -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/ARDVideoCallViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/ARDVideoCallViewController.m -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/RTCVideoCodecInfo+HumanReadable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/RTCVideoCodecInfo+HumanReadable.h -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/RTCVideoCodecInfo+HumanReadable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/RTCVideoCodecInfo+HumanReadable.m -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/UIImage+ARDUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/UIImage+ARDUtilities.h -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/UIImage+ARDUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/UIImage+ARDUtilities.m -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/broadcast_extension/ARDBroadcastSampleHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/broadcast_extension/ARDBroadcastSampleHandler.h -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/broadcast_extension/ARDBroadcastSampleHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/broadcast_extension/ARDBroadcastSampleHandler.m -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/broadcast_extension/ARDBroadcastSetupViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/broadcast_extension/ARDBroadcastSetupViewController.h -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/broadcast_extension/ARDBroadcastSetupViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/broadcast_extension/ARDBroadcastSetupViewController.m -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/broadcast_extension/BroadcastSetupUIInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/broadcast_extension/BroadcastSetupUIInfo.plist -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/broadcast_extension/BroadcastUploadInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/broadcast_extension/BroadcastUploadInfo.plist -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/resources/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/resources/Roboto-Regular.ttf -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/resources/foreman.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/resources/foreman.mp4 -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/resources/iPhone5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/resources/iPhone5@2x.png -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/resources/iPhone6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/resources/iPhone6@2x.png -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/resources/iPhone6p@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/resources/iPhone6p@3x.png -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/resources/ic_call_end_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/resources/ic_call_end_black_24dp.png -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/resources/ic_call_end_black_24dp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/resources/ic_call_end_black_24dp@2x.png -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/resources/ic_clear_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/resources/ic_clear_black_24dp.png -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/resources/ic_clear_black_24dp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/resources/ic_clear_black_24dp@2x.png -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/resources/ic_settings_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/resources/ic_settings_black_24dp.png -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/resources/ic_settings_black_24dp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/resources/ic_settings_black_24dp@2x.png -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/resources/ic_surround_sound_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/resources/ic_surround_sound_black_24dp.png -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/resources/ic_surround_sound_black_24dp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/resources/ic_surround_sound_black_24dp@2x.png -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/resources/ic_switch_video_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/resources/ic_switch_video_black_24dp.png -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/resources/ic_switch_video_black_24dp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/resources/ic_switch_video_black_24dp@2x.png -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/resources/mozart.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/resources/mozart.mp3 -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/third_party/SocketRocket/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/third_party/SocketRocket/LICENSE -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/third_party/SocketRocket/SRWebSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/third_party/SocketRocket/SRWebSocket.h -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/ios/third_party/SocketRocket/SRWebSocket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/ios/third_party/SocketRocket/SRWebSocket.m -------------------------------------------------------------------------------- /AppRTCDemo-iOS/AppRTCDemo-iOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/AppRTCDemo-iOS/main.m -------------------------------------------------------------------------------- /AppRTCDemo-iOS/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/Podfile -------------------------------------------------------------------------------- /AppRTCDemo-iOS/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/Podfile.lock -------------------------------------------------------------------------------- /AppRTCDemo-iOS/Pods/Local Podspecs/WebRTC.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/Pods/Local Podspecs/WebRTC.podspec.json -------------------------------------------------------------------------------- /AppRTCDemo-iOS/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/Pods/Manifest.lock -------------------------------------------------------------------------------- /AppRTCDemo-iOS/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AppRTCDemo-iOS/Pods/SocketRocket/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/Pods/SocketRocket/LICENSE -------------------------------------------------------------------------------- /AppRTCDemo-iOS/Pods/SocketRocket/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/Pods/SocketRocket/README.rst -------------------------------------------------------------------------------- /AppRTCDemo-iOS/Pods/SocketRocket/SocketRocket/SRWebSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/Pods/SocketRocket/SocketRocket/SRWebSocket.h -------------------------------------------------------------------------------- /AppRTCDemo-iOS/Pods/SocketRocket/SocketRocket/SRWebSocket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/Pods/SocketRocket/SocketRocket/SRWebSocket.m -------------------------------------------------------------------------------- /AppRTCDemo-iOS/Pods/SocketRocket/SocketRocket/SocketRocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/Pods/SocketRocket/SocketRocket/SocketRocket.h -------------------------------------------------------------------------------- /AppRTCDemo-iOS/Pods/Target Support Files/Pods-AppRTCDemo-iOS/Pods-AppRTCDemo-iOS-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/Pods/Target Support Files/Pods-AppRTCDemo-iOS/Pods-AppRTCDemo-iOS-Info.plist -------------------------------------------------------------------------------- /AppRTCDemo-iOS/Pods/Target Support Files/Pods-AppRTCDemo-iOS/Pods-AppRTCDemo-iOS-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/Pods/Target Support Files/Pods-AppRTCDemo-iOS/Pods-AppRTCDemo-iOS-acknowledgements.markdown -------------------------------------------------------------------------------- /AppRTCDemo-iOS/Pods/Target Support Files/Pods-AppRTCDemo-iOS/Pods-AppRTCDemo-iOS-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/Pods/Target Support Files/Pods-AppRTCDemo-iOS/Pods-AppRTCDemo-iOS-acknowledgements.plist -------------------------------------------------------------------------------- /AppRTCDemo-iOS/Pods/Target Support Files/Pods-AppRTCDemo-iOS/Pods-AppRTCDemo-iOS-artifacts-Debug-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/Pods/Target Support Files/Pods-AppRTCDemo-iOS/Pods-AppRTCDemo-iOS-artifacts-Debug-input-files.xcfilelist -------------------------------------------------------------------------------- /AppRTCDemo-iOS/Pods/Target Support Files/Pods-AppRTCDemo-iOS/Pods-AppRTCDemo-iOS-artifacts-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${BUILT_PRODUCTS_DIR}/cocoapods-artifacts-${CONFIGURATION}.txt -------------------------------------------------------------------------------- /AppRTCDemo-iOS/Pods/Target Support Files/Pods-AppRTCDemo-iOS/Pods-AppRTCDemo-iOS-artifacts-Release-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/Pods/Target Support Files/Pods-AppRTCDemo-iOS/Pods-AppRTCDemo-iOS-artifacts-Release-input-files.xcfilelist -------------------------------------------------------------------------------- /AppRTCDemo-iOS/Pods/Target Support Files/Pods-AppRTCDemo-iOS/Pods-AppRTCDemo-iOS-artifacts-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${BUILT_PRODUCTS_DIR}/cocoapods-artifacts-${CONFIGURATION}.txt -------------------------------------------------------------------------------- /AppRTCDemo-iOS/Pods/Target Support Files/Pods-AppRTCDemo-iOS/Pods-AppRTCDemo-iOS-artifacts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/Pods/Target Support Files/Pods-AppRTCDemo-iOS/Pods-AppRTCDemo-iOS-artifacts.sh -------------------------------------------------------------------------------- /AppRTCDemo-iOS/Pods/Target Support Files/Pods-AppRTCDemo-iOS/Pods-AppRTCDemo-iOS-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/Pods/Target Support Files/Pods-AppRTCDemo-iOS/Pods-AppRTCDemo-iOS-dummy.m -------------------------------------------------------------------------------- /AppRTCDemo-iOS/Pods/Target Support Files/Pods-AppRTCDemo-iOS/Pods-AppRTCDemo-iOS-frameworks-Debug-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/Pods/Target Support Files/Pods-AppRTCDemo-iOS/Pods-AppRTCDemo-iOS-frameworks-Debug-input-files.xcfilelist -------------------------------------------------------------------------------- /AppRTCDemo-iOS/Pods/Target Support Files/Pods-AppRTCDemo-iOS/Pods-AppRTCDemo-iOS-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/Pods/Target Support Files/Pods-AppRTCDemo-iOS/Pods-AppRTCDemo-iOS-frameworks-Debug-output-files.xcfilelist -------------------------------------------------------------------------------- /AppRTCDemo-iOS/Pods/Target Support Files/Pods-AppRTCDemo-iOS/Pods-AppRTCDemo-iOS-frameworks-Release-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/Pods/Target Support Files/Pods-AppRTCDemo-iOS/Pods-AppRTCDemo-iOS-frameworks-Release-input-files.xcfilelist -------------------------------------------------------------------------------- /AppRTCDemo-iOS/Pods/Target Support Files/Pods-AppRTCDemo-iOS/Pods-AppRTCDemo-iOS-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/Pods/Target Support Files/Pods-AppRTCDemo-iOS/Pods-AppRTCDemo-iOS-frameworks-Release-output-files.xcfilelist -------------------------------------------------------------------------------- /AppRTCDemo-iOS/Pods/Target Support Files/Pods-AppRTCDemo-iOS/Pods-AppRTCDemo-iOS-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/Pods/Target Support Files/Pods-AppRTCDemo-iOS/Pods-AppRTCDemo-iOS-frameworks.sh -------------------------------------------------------------------------------- /AppRTCDemo-iOS/Pods/Target Support Files/Pods-AppRTCDemo-iOS/Pods-AppRTCDemo-iOS-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/Pods/Target Support Files/Pods-AppRTCDemo-iOS/Pods-AppRTCDemo-iOS-umbrella.h -------------------------------------------------------------------------------- /AppRTCDemo-iOS/Pods/Target Support Files/Pods-AppRTCDemo-iOS/Pods-AppRTCDemo-iOS.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/Pods/Target Support Files/Pods-AppRTCDemo-iOS/Pods-AppRTCDemo-iOS.debug.xcconfig -------------------------------------------------------------------------------- /AppRTCDemo-iOS/Pods/Target Support Files/Pods-AppRTCDemo-iOS/Pods-AppRTCDemo-iOS.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/Pods/Target Support Files/Pods-AppRTCDemo-iOS/Pods-AppRTCDemo-iOS.modulemap -------------------------------------------------------------------------------- /AppRTCDemo-iOS/Pods/Target Support Files/Pods-AppRTCDemo-iOS/Pods-AppRTCDemo-iOS.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/Pods/Target Support Files/Pods-AppRTCDemo-iOS/Pods-AppRTCDemo-iOS.release.xcconfig -------------------------------------------------------------------------------- /AppRTCDemo-iOS/Pods/Target Support Files/SocketRocket/SocketRocket-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/Pods/Target Support Files/SocketRocket/SocketRocket-Info.plist -------------------------------------------------------------------------------- /AppRTCDemo-iOS/Pods/Target Support Files/SocketRocket/SocketRocket-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/Pods/Target Support Files/SocketRocket/SocketRocket-dummy.m -------------------------------------------------------------------------------- /AppRTCDemo-iOS/Pods/Target Support Files/SocketRocket/SocketRocket-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/Pods/Target Support Files/SocketRocket/SocketRocket-prefix.pch -------------------------------------------------------------------------------- /AppRTCDemo-iOS/Pods/Target Support Files/SocketRocket/SocketRocket-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/Pods/Target Support Files/SocketRocket/SocketRocket-umbrella.h -------------------------------------------------------------------------------- /AppRTCDemo-iOS/Pods/Target Support Files/SocketRocket/SocketRocket.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/Pods/Target Support Files/SocketRocket/SocketRocket.debug.xcconfig -------------------------------------------------------------------------------- /AppRTCDemo-iOS/Pods/Target Support Files/SocketRocket/SocketRocket.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/Pods/Target Support Files/SocketRocket/SocketRocket.modulemap -------------------------------------------------------------------------------- /AppRTCDemo-iOS/Pods/Target Support Files/SocketRocket/SocketRocket.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/Pods/Target Support Files/SocketRocket/SocketRocket.release.xcconfig -------------------------------------------------------------------------------- /AppRTCDemo-iOS/Pods/Target Support Files/WebRTC/WebRTC.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/Pods/Target Support Files/WebRTC/WebRTC.debug.xcconfig -------------------------------------------------------------------------------- /AppRTCDemo-iOS/Pods/Target Support Files/WebRTC/WebRTC.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-iOS/Pods/Target Support Files/WebRTC/WebRTC.release.xcconfig -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS.xcodeproj/xcshareddata/xcschemes/AppRTCDemo-macOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS.xcodeproj/xcshareddata/xcschemes/AppRTCDemo-macOS.xcscheme -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/ARDAppClient+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/ARDAppClient+Internal.h -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/ARDAppClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/ARDAppClient.h -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/ARDAppClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/ARDAppClient.m -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/ARDAppEngineClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/ARDAppEngineClient.h -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/ARDAppEngineClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/ARDAppEngineClient.m -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/ARDBitrateTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/ARDBitrateTracker.h -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/ARDBitrateTracker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/ARDBitrateTracker.m -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/ARDCaptureController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/ARDCaptureController.h -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/ARDCaptureController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/ARDCaptureController.m -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/ARDExternalSampleCapturer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/ARDExternalSampleCapturer.h -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/ARDExternalSampleCapturer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/ARDExternalSampleCapturer.m -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/ARDJoinResponse+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/ARDJoinResponse+Internal.h -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/ARDJoinResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/ARDJoinResponse.h -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/ARDJoinResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/ARDJoinResponse.m -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/ARDMessageResponse+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/ARDMessageResponse+Internal.h -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/ARDMessageResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/ARDMessageResponse.h -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/ARDMessageResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/ARDMessageResponse.m -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/ARDRoomServerClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/ARDRoomServerClient.h -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/ARDSettingsModel+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/ARDSettingsModel+Private.h -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/ARDSettingsModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/ARDSettingsModel.h -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/ARDSettingsModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/ARDSettingsModel.m -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/ARDSettingsStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/ARDSettingsStore.h -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/ARDSettingsStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/ARDSettingsStore.m -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/ARDSignalingChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/ARDSignalingChannel.h -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/ARDSignalingMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/ARDSignalingMessage.h -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/ARDSignalingMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/ARDSignalingMessage.m -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/ARDStatsBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/ARDStatsBuilder.h -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/ARDStatsBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/ARDStatsBuilder.m -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/ARDTURNClient+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/ARDTURNClient+Internal.h -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/ARDTURNClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/ARDTURNClient.h -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/ARDTURNClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/ARDTURNClient.m -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/ARDWebSocketChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/ARDWebSocketChannel.h -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/ARDWebSocketChannel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/ARDWebSocketChannel.m -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/AppRTCDemo_macOS.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/AppRTCDemo_macOS.entitlements -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/Info.plist -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/RTCIceCandidate+JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/RTCIceCandidate+JSON.h -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/RTCIceCandidate+JSON.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/RTCIceCandidate+JSON.m -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/RTCIceServer+JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/RTCIceServer+JSON.h -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/RTCIceServer+JSON.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/RTCIceServer+JSON.m -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/RTCSessionDescription+JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/RTCSessionDescription+JSON.h -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/RTCSessionDescription+JSON.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/RTCSessionDescription+JSON.m -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/common/ARDUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/common/ARDUtilities.h -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/common/ARDUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/common/ARDUtilities.m -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/mac/APPRTCAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/mac/APPRTCAppDelegate.h -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/mac/APPRTCAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/mac/APPRTCAppDelegate.m -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/mac/APPRTCViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/mac/APPRTCViewController.h -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/mac/APPRTCViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/mac/APPRTCViewController.m -------------------------------------------------------------------------------- /AppRTCDemo-macOS/AppRTCDemo-macOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/AppRTCDemo-macOS/main.m -------------------------------------------------------------------------------- /AppRTCDemo-macOS/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/Podfile -------------------------------------------------------------------------------- /AppRTCDemo-macOS/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/Podfile.lock -------------------------------------------------------------------------------- /AppRTCDemo-macOS/Pods/Local Podspecs/WebRTC.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/Pods/Local Podspecs/WebRTC.podspec.json -------------------------------------------------------------------------------- /AppRTCDemo-macOS/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/Pods/Manifest.lock -------------------------------------------------------------------------------- /AppRTCDemo-macOS/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AppRTCDemo-macOS/Pods/SocketRocket/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/Pods/SocketRocket/LICENSE -------------------------------------------------------------------------------- /AppRTCDemo-macOS/Pods/SocketRocket/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/Pods/SocketRocket/README.rst -------------------------------------------------------------------------------- /AppRTCDemo-macOS/Pods/SocketRocket/SocketRocket/SRWebSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/Pods/SocketRocket/SocketRocket/SRWebSocket.h -------------------------------------------------------------------------------- /AppRTCDemo-macOS/Pods/SocketRocket/SocketRocket/SRWebSocket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/Pods/SocketRocket/SocketRocket/SRWebSocket.m -------------------------------------------------------------------------------- /AppRTCDemo-macOS/Pods/SocketRocket/SocketRocket/SocketRocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/Pods/SocketRocket/SocketRocket/SocketRocket.h -------------------------------------------------------------------------------- /AppRTCDemo-macOS/Pods/Target Support Files/Pods-AppRTCDemo-macOS/Pods-AppRTCDemo-macOS-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/Pods/Target Support Files/Pods-AppRTCDemo-macOS/Pods-AppRTCDemo-macOS-Info.plist -------------------------------------------------------------------------------- /AppRTCDemo-macOS/Pods/Target Support Files/Pods-AppRTCDemo-macOS/Pods-AppRTCDemo-macOS-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/Pods/Target Support Files/Pods-AppRTCDemo-macOS/Pods-AppRTCDemo-macOS-acknowledgements.markdown -------------------------------------------------------------------------------- /AppRTCDemo-macOS/Pods/Target Support Files/Pods-AppRTCDemo-macOS/Pods-AppRTCDemo-macOS-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/Pods/Target Support Files/Pods-AppRTCDemo-macOS/Pods-AppRTCDemo-macOS-acknowledgements.plist -------------------------------------------------------------------------------- /AppRTCDemo-macOS/Pods/Target Support Files/Pods-AppRTCDemo-macOS/Pods-AppRTCDemo-macOS-artifacts-Debug-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/Pods/Target Support Files/Pods-AppRTCDemo-macOS/Pods-AppRTCDemo-macOS-artifacts-Debug-input-files.xcfilelist -------------------------------------------------------------------------------- /AppRTCDemo-macOS/Pods/Target Support Files/Pods-AppRTCDemo-macOS/Pods-AppRTCDemo-macOS-artifacts-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${BUILT_PRODUCTS_DIR}/cocoapods-artifacts-${CONFIGURATION}.txt -------------------------------------------------------------------------------- /AppRTCDemo-macOS/Pods/Target Support Files/Pods-AppRTCDemo-macOS/Pods-AppRTCDemo-macOS-artifacts-Release-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/Pods/Target Support Files/Pods-AppRTCDemo-macOS/Pods-AppRTCDemo-macOS-artifacts-Release-input-files.xcfilelist -------------------------------------------------------------------------------- /AppRTCDemo-macOS/Pods/Target Support Files/Pods-AppRTCDemo-macOS/Pods-AppRTCDemo-macOS-artifacts-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${BUILT_PRODUCTS_DIR}/cocoapods-artifacts-${CONFIGURATION}.txt -------------------------------------------------------------------------------- /AppRTCDemo-macOS/Pods/Target Support Files/Pods-AppRTCDemo-macOS/Pods-AppRTCDemo-macOS-artifacts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/Pods/Target Support Files/Pods-AppRTCDemo-macOS/Pods-AppRTCDemo-macOS-artifacts.sh -------------------------------------------------------------------------------- /AppRTCDemo-macOS/Pods/Target Support Files/Pods-AppRTCDemo-macOS/Pods-AppRTCDemo-macOS-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/Pods/Target Support Files/Pods-AppRTCDemo-macOS/Pods-AppRTCDemo-macOS-dummy.m -------------------------------------------------------------------------------- /AppRTCDemo-macOS/Pods/Target Support Files/Pods-AppRTCDemo-macOS/Pods-AppRTCDemo-macOS-frameworks-Debug-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/Pods/Target Support Files/Pods-AppRTCDemo-macOS/Pods-AppRTCDemo-macOS-frameworks-Debug-input-files.xcfilelist -------------------------------------------------------------------------------- /AppRTCDemo-macOS/Pods/Target Support Files/Pods-AppRTCDemo-macOS/Pods-AppRTCDemo-macOS-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/Pods/Target Support Files/Pods-AppRTCDemo-macOS/Pods-AppRTCDemo-macOS-frameworks-Debug-output-files.xcfilelist -------------------------------------------------------------------------------- /AppRTCDemo-macOS/Pods/Target Support Files/Pods-AppRTCDemo-macOS/Pods-AppRTCDemo-macOS-frameworks-Release-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/Pods/Target Support Files/Pods-AppRTCDemo-macOS/Pods-AppRTCDemo-macOS-frameworks-Release-input-files.xcfilelist -------------------------------------------------------------------------------- /AppRTCDemo-macOS/Pods/Target Support Files/Pods-AppRTCDemo-macOS/Pods-AppRTCDemo-macOS-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/Pods/Target Support Files/Pods-AppRTCDemo-macOS/Pods-AppRTCDemo-macOS-frameworks-Release-output-files.xcfilelist -------------------------------------------------------------------------------- /AppRTCDemo-macOS/Pods/Target Support Files/Pods-AppRTCDemo-macOS/Pods-AppRTCDemo-macOS-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/Pods/Target Support Files/Pods-AppRTCDemo-macOS/Pods-AppRTCDemo-macOS-frameworks.sh -------------------------------------------------------------------------------- /AppRTCDemo-macOS/Pods/Target Support Files/Pods-AppRTCDemo-macOS/Pods-AppRTCDemo-macOS-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/Pods/Target Support Files/Pods-AppRTCDemo-macOS/Pods-AppRTCDemo-macOS-umbrella.h -------------------------------------------------------------------------------- /AppRTCDemo-macOS/Pods/Target Support Files/Pods-AppRTCDemo-macOS/Pods-AppRTCDemo-macOS.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/Pods/Target Support Files/Pods-AppRTCDemo-macOS/Pods-AppRTCDemo-macOS.debug.xcconfig -------------------------------------------------------------------------------- /AppRTCDemo-macOS/Pods/Target Support Files/Pods-AppRTCDemo-macOS/Pods-AppRTCDemo-macOS.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/Pods/Target Support Files/Pods-AppRTCDemo-macOS/Pods-AppRTCDemo-macOS.modulemap -------------------------------------------------------------------------------- /AppRTCDemo-macOS/Pods/Target Support Files/Pods-AppRTCDemo-macOS/Pods-AppRTCDemo-macOS.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/Pods/Target Support Files/Pods-AppRTCDemo-macOS/Pods-AppRTCDemo-macOS.release.xcconfig -------------------------------------------------------------------------------- /AppRTCDemo-macOS/Pods/Target Support Files/SocketRocket/SocketRocket-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/Pods/Target Support Files/SocketRocket/SocketRocket-Info.plist -------------------------------------------------------------------------------- /AppRTCDemo-macOS/Pods/Target Support Files/SocketRocket/SocketRocket-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/Pods/Target Support Files/SocketRocket/SocketRocket-dummy.m -------------------------------------------------------------------------------- /AppRTCDemo-macOS/Pods/Target Support Files/SocketRocket/SocketRocket-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/Pods/Target Support Files/SocketRocket/SocketRocket-prefix.pch -------------------------------------------------------------------------------- /AppRTCDemo-macOS/Pods/Target Support Files/SocketRocket/SocketRocket-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/Pods/Target Support Files/SocketRocket/SocketRocket-umbrella.h -------------------------------------------------------------------------------- /AppRTCDemo-macOS/Pods/Target Support Files/SocketRocket/SocketRocket.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/Pods/Target Support Files/SocketRocket/SocketRocket.debug.xcconfig -------------------------------------------------------------------------------- /AppRTCDemo-macOS/Pods/Target Support Files/SocketRocket/SocketRocket.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/Pods/Target Support Files/SocketRocket/SocketRocket.modulemap -------------------------------------------------------------------------------- /AppRTCDemo-macOS/Pods/Target Support Files/SocketRocket/SocketRocket.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/Pods/Target Support Files/SocketRocket/SocketRocket.release.xcconfig -------------------------------------------------------------------------------- /AppRTCDemo-macOS/Pods/Target Support Files/WebRTC/WebRTC.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/Pods/Target Support Files/WebRTC/WebRTC.debug.xcconfig -------------------------------------------------------------------------------- /AppRTCDemo-macOS/Pods/Target Support Files/WebRTC/WebRTC.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/AppRTCDemo-macOS/Pods/Target Support Files/WebRTC/WebRTC.release.xcconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/README.md -------------------------------------------------------------------------------- /WebRTC.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC.podspec -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/Info.plist -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCAudioSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCAudioSession.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCAudioSessionConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCAudioSessionConfiguration.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCAudioSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCAudioSource.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCAudioTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCAudioTrack.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCVPixelBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCVPixelBuffer.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCallbackLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCallbackLogger.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCameraPreviewView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCameraPreviewView.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCameraVideoCapturer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCameraVideoCapturer.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCertificate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCertificate.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCodecSpecificInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCodecSpecificInfo.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCodecSpecificInfoH264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCodecSpecificInfoH264.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCConfiguration.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCryptoOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCryptoOptions.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCDataChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCDataChannel.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCDataChannelConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCDataChannelConfiguration.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCDefaultVideoDecoderFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCDefaultVideoDecoderFactory.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCDefaultVideoEncoderFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCDefaultVideoEncoderFactory.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCDispatcher.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCDtmfSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCDtmfSender.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCEAGLVideoView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCEAGLVideoView.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCEncodedImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCEncodedImage.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCFieldTrials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCFieldTrials.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCFileLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCFileLogger.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCFileVideoCapturer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCFileVideoCapturer.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCH264ProfileLevelId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCH264ProfileLevelId.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCI420Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCI420Buffer.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCIceCandidate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCIceCandidate.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCIceServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCIceServer.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCLegacyStatsReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCLegacyStatsReport.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCLogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCLogging.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMTLVideoView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMTLVideoView.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMacros.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMediaConstraints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMediaConstraints.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMediaSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMediaSource.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMediaStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMediaStream.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMediaStreamTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMediaStreamTrack.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMetrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMetrics.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMetricsSampleInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMetricsSampleInfo.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMutableI420Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMutableI420Buffer.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMutableYUVPlanarBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMutableYUVPlanarBuffer.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCNativeI420Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCNativeI420Buffer.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCNativeMutableI420Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCNativeMutableI420Buffer.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCNetworkMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCNetworkMonitor.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCPeerConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCPeerConnection.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCPeerConnectionFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCPeerConnectionFactory.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCPeerConnectionFactoryOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCPeerConnectionFactoryOptions.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCRtcpParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCRtcpParameters.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCRtpCodecParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCRtpCodecParameters.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCRtpEncodingParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCRtpEncodingParameters.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCRtpHeaderExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCRtpHeaderExtension.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCRtpParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCRtpParameters.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCRtpReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCRtpReceiver.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCRtpSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCRtpSender.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCRtpTransceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCRtpTransceiver.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCSSLAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCSSLAdapter.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCSessionDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCSessionDescription.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCStatisticsReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCStatisticsReport.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCTracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCTracing.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoCapturer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoCapturer.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoCodecConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoCodecConstants.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoCodecInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoCodecInfo.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoDecoder.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoDecoderFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoDecoderFactory.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoDecoderFactoryH264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoDecoderFactoryH264.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoDecoderH264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoDecoderH264.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoDecoderVP8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoDecoderVP8.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoDecoderVP9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoDecoderVP9.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoder.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoderFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoderFactory.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoderFactoryH264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoderFactoryH264.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoderH264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoderH264.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoderQpThresholds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoderQpThresholds.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoderSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoderSettings.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoderVP8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoderVP8.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoderVP9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoderVP9.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoFrame.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoFrameBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoFrameBuffer.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoRenderer.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoSource.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoTrack.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoViewShading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoViewShading.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCYUVPlanarBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCYUVPlanarBuffer.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/UIDevice+RTCDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/UIDevice+RTCDevice.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/WebRTC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/WebRTC.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Info.plist -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/WebRTC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/WebRTC -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCAudioSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCAudioSession.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCAudioSessionConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCAudioSessionConfiguration.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCAudioSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCAudioSource.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCAudioTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCAudioTrack.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCCVPixelBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCCVPixelBuffer.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCCallbackLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCCallbackLogger.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCCameraPreviewView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCCameraPreviewView.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCCameraVideoCapturer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCCameraVideoCapturer.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCCertificate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCCertificate.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCCodecSpecificInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCCodecSpecificInfo.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCCodecSpecificInfoH264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCCodecSpecificInfoH264.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCConfiguration.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCCryptoOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCCryptoOptions.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCDataChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCDataChannel.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCDataChannelConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCDataChannelConfiguration.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCDefaultVideoDecoderFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCDefaultVideoDecoderFactory.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCDefaultVideoEncoderFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCDefaultVideoEncoderFactory.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCDispatcher.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCDtmfSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCDtmfSender.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCEAGLVideoView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCEAGLVideoView.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCEncodedImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCEncodedImage.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCFieldTrials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCFieldTrials.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCFileLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCFileLogger.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCFileVideoCapturer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCFileVideoCapturer.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCH264ProfileLevelId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCH264ProfileLevelId.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCI420Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCI420Buffer.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCIceCandidate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCIceCandidate.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCIceServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCIceServer.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCLegacyStatsReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCLegacyStatsReport.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCLogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCLogging.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCMTLVideoView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCMTLVideoView.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCMacros.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCMediaConstraints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCMediaConstraints.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCMediaSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCMediaSource.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCMediaStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCMediaStream.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCMediaStreamTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCMediaStreamTrack.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCMetrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCMetrics.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCMetricsSampleInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCMetricsSampleInfo.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCMutableI420Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCMutableI420Buffer.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCMutableYUVPlanarBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCMutableYUVPlanarBuffer.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCNativeI420Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCNativeI420Buffer.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCNativeMutableI420Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCNativeMutableI420Buffer.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCNetworkMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCNetworkMonitor.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCPeerConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCPeerConnection.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCPeerConnectionFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCPeerConnectionFactory.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCPeerConnectionFactoryOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCPeerConnectionFactoryOptions.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCRtcpParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCRtcpParameters.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCRtpCodecParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCRtpCodecParameters.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCRtpEncodingParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCRtpEncodingParameters.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCRtpHeaderExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCRtpHeaderExtension.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCRtpParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCRtpParameters.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCRtpReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCRtpReceiver.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCRtpSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCRtpSender.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCRtpTransceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCRtpTransceiver.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCSSLAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCSSLAdapter.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCSessionDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCSessionDescription.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCStatisticsReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCStatisticsReport.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCTracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCTracing.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoCapturer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoCapturer.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoCodecConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoCodecConstants.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoCodecInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoCodecInfo.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoDecoder.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoDecoderFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoDecoderFactory.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoDecoderFactoryH264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoDecoderFactoryH264.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoDecoderH264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoDecoderH264.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoDecoderVP8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoDecoderVP8.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoDecoderVP9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoDecoderVP9.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoder.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoderFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoderFactory.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoderFactoryH264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoderFactoryH264.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoderH264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoderH264.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoderQpThresholds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoderQpThresholds.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoderSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoderSettings.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoderVP8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoderVP8.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoderVP9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoderVP9.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoFrame.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoFrameBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoFrameBuffer.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoRenderer.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoSource.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoTrack.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoViewShading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCVideoViewShading.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCYUVPlanarBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCYUVPlanarBuffer.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/UIDevice+RTCDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/UIDevice+RTCDevice.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/WebRTC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/WebRTC.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Info.plist -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/WebRTC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/WebRTC -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCAudioSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCAudioSource.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCAudioTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCAudioTrack.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCCVPixelBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCCVPixelBuffer.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCCallbackLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCCallbackLogger.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCCameraVideoCapturer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCCameraVideoCapturer.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCCertificate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCCertificate.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCCodecSpecificInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCCodecSpecificInfo.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCCodecSpecificInfoH264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCCodecSpecificInfoH264.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCConfiguration.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCCryptoOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCCryptoOptions.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCDataChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCDataChannel.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCDataChannelConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCDataChannelConfiguration.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCDefaultVideoDecoderFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCDefaultVideoDecoderFactory.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCDefaultVideoEncoderFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCDefaultVideoEncoderFactory.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCDispatcher.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCDtmfSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCDtmfSender.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCEncodedImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCEncodedImage.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCFieldTrials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCFieldTrials.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCFileLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCFileLogger.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCFileVideoCapturer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCFileVideoCapturer.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCH264ProfileLevelId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCH264ProfileLevelId.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCI420Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCI420Buffer.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCIceCandidate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCIceCandidate.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCIceServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCIceServer.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCLegacyStatsReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCLegacyStatsReport.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCLogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCLogging.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCMTLNSVideoView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCMTLNSVideoView.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCMacros.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCMediaConstraints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCMediaConstraints.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCMediaSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCMediaSource.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCMediaStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCMediaStream.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCMediaStreamTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCMediaStreamTrack.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCMetrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCMetrics.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCMetricsSampleInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCMetricsSampleInfo.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCMutableI420Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCMutableI420Buffer.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCMutableYUVPlanarBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCMutableYUVPlanarBuffer.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCNSGLVideoView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCNSGLVideoView.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCNativeI420Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCNativeI420Buffer.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCNativeMutableI420Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCNativeMutableI420Buffer.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCPeerConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCPeerConnection.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCPeerConnectionFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCPeerConnectionFactory.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCPeerConnectionFactoryOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCPeerConnectionFactoryOptions.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCRtcpParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCRtcpParameters.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCRtpCodecParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCRtpCodecParameters.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCRtpEncodingParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCRtpEncodingParameters.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCRtpHeaderExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCRtpHeaderExtension.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCRtpParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCRtpParameters.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCRtpReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCRtpReceiver.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCRtpSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCRtpSender.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCRtpTransceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCRtpTransceiver.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCSSLAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCSSLAdapter.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCSessionDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCSessionDescription.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCTracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCTracing.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoCapturer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoCapturer.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoCodecInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoCodecInfo.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoDecoder.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoDecoderFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoDecoderFactory.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoDecoderFactoryH264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoDecoderFactoryH264.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoDecoderH264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoDecoderH264.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoDecoderVP8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoDecoderVP8.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoDecoderVP9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoDecoderVP9.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoEncoder.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderFactory.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderFactoryH264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderFactoryH264.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderH264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderH264.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderQpThresholds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderQpThresholds.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderSettings.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderVP8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderVP8.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderVP9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderVP9.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoFrame.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoFrameBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoFrameBuffer.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoRenderer.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoSource.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoTrack.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoViewShading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCVideoViewShading.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCYUVPlanarBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/RTCYUVPlanarBuffer.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/WebRTC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Headers/WebRTC.h -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Modules/module.modulemap -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/WebRTC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xquezme/WebRTC/HEAD/WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/A/WebRTC -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/WebRTC: -------------------------------------------------------------------------------- 1 | Versions/Current/WebRTC --------------------------------------------------------------------------------