├── .github └── ISSUE_TEMPLATE │ ├── Bug_Report.md │ ├── Documentation_Issue.md │ ├── Feature_Request.md │ └── Question.md ├── .gitignore ├── .pipelines ├── build.cmd ├── package.cmd ├── pipeline.user.windows.buddy.yml ├── pipeline.user.windows.yml ├── restore-acquiring_code.cmd └── restore-applying_patches.cmd ├── NuSpecs ├── Microsoft.WinRTC.libwebrtc.uwp.nuspec ├── Microsoft.WinRTC.libwebrtc.uwp.props ├── Microsoft.WinRTC.libwebrtc.win32.nuspec ├── Microsoft.WinRTC.libwebrtc.win32.props └── license.txt ├── WebRtcWrapper ├── .clang-format ├── Microsoft.WinRTC.WebRtcWrapper.idl ├── WebRtcWrapper.def ├── WebRtcWrapper.vcxproj ├── WebRtcWrapper.vcxproj.filters ├── cricket.AudioOptions.cpp ├── cricket.AudioOptions.h ├── packages.config ├── pch.cpp ├── pch.h ├── rtc.RTC.cpp ├── rtc.RTC.h ├── rtc.Thread.cpp ├── rtc.Thread.h ├── rtc.VideoSinkWants.cpp ├── rtc.VideoSinkWants.h ├── webrtc.AudioDecoderFactory.cpp ├── webrtc.AudioDecoderFactory.h ├── webrtc.AudioEncoderFactory.cpp ├── webrtc.AudioEncoderFactory.h ├── webrtc.AudioSource.cpp ├── webrtc.AudioSource.h ├── webrtc.AudioTrack.cpp ├── webrtc.AudioTrack.h ├── webrtc.AudioTrackSink.cpp ├── webrtc.AudioTrackSink.h ├── webrtc.CreateSessionDescriptionObserver.cpp ├── webrtc.CreateSessionDescriptionObserver.h ├── webrtc.IceCandidate.cpp ├── webrtc.IceCandidate.h ├── webrtc.MediaStreamTrack.cpp ├── webrtc.MediaStreamTrack.h ├── webrtc.PeerConnection.IceServer.cpp ├── webrtc.PeerConnection.IceServer.h ├── webrtc.PeerConnection.PeerConnection.cpp ├── webrtc.PeerConnection.PeerConnection.h ├── webrtc.PeerConnection.RTCConfiguration.cpp ├── webrtc.PeerConnection.RTCConfiguration.h ├── webrtc.PeerConnection.RTCOfferAnswerOptions.cpp ├── webrtc.PeerConnection.RTCOfferAnswerOptions.h ├── webrtc.PeerConnectionDependencies.cpp ├── webrtc.PeerConnectionDependencies.h ├── webrtc.PeerConnectionFactory.cpp ├── webrtc.PeerConnectionFactory.h ├── webrtc.PeerConnectionObserver.cpp ├── webrtc.PeerConnectionObserver.h ├── webrtc.RtpReceiver.cpp ├── webrtc.RtpReceiver.h ├── webrtc.RtpSender.cpp ├── webrtc.RtpSender.h ├── webrtc.RtpTransceiver.cpp ├── webrtc.RtpTransceiver.h ├── webrtc.SessionDescription.cpp ├── webrtc.SessionDescription.h ├── webrtc.SetSessionDescriptionObserver.cpp ├── webrtc.SetSessionDescriptionObserver.h ├── webrtc.VideoCaptureCapability.cpp ├── webrtc.VideoCaptureCapability.h ├── webrtc.VideoCaptureFactory.cpp ├── webrtc.VideoCaptureFactory.h ├── webrtc.VideoCaptureModule.cpp ├── webrtc.VideoCaptureModule.h ├── webrtc.VideoCaptureModule_DeviceInfo.cpp ├── webrtc.VideoCaptureModule_DeviceInfo.h ├── webrtc.VideoDecoderFactory.cpp ├── webrtc.VideoDecoderFactory.h ├── webrtc.VideoEncoderFactory.cpp ├── webrtc.VideoEncoderFactory.h ├── webrtc.VideoFrame.Builder.cpp ├── webrtc.VideoFrame.Builder.h ├── webrtc.VideoFrame.VideoFrame.cpp ├── webrtc.VideoFrame.VideoFrame.h ├── webrtc.VideoSink_VideoFrame.cpp ├── webrtc.VideoSink_VideoFrame.h ├── webrtc.VideoTrack.cpp ├── webrtc.VideoTrack.h ├── webrtc.VideoTrackSource.cpp ├── webrtc.VideoTrackSource.h ├── webrtc.WebRTC.cpp └── webrtc.WebRTC.h ├── docs ├── AddUser.png ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FAQ.md ├── Joinroom.PNG ├── LICENSE ├── README.md ├── Roomcode.png ├── SECURITY.md ├── SUPPORT.md ├── WinRTC_Architecture_Diagram.png ├── adding_Nuget.png ├── install_Nuget.png ├── roomNum.png ├── sln.png └── tempsnip.png ├── patches_for_WebRTC_org ├── m80 │ ├── 0000-WebRTC-doesn-t-need-C-CX.patch │ ├── 0001-UWP-doesn-t-allow-reading-regkeys-from-that-hive.-Al.patch │ ├── 0002-UWP-apps-do-support-GetProcAddress-but-do-support-Ge.patch │ ├── 0003-Replacing-deprecated-and-non-UWP-supported-RtlGenRan.patch │ ├── 0004-This-is-a-change-that-fixes-3-issues-in-the-rtc_base.patch │ ├── 0005-Fixing-UWP-build-for-time_utils.cc.patch │ ├── 0006-Fixing-UWP-build-for-file_rotating_stream.cc.patch │ ├── 0007-Fixing-UWP-build-for-modules-video_capture.patch │ ├── 0007.1-BUG-Requested-camera-settings-were-not-being-honored.patch │ ├── 0007.2-Properly-handling-async-model-for-initializing-Media.patch │ ├── 0007.3-Fixing-NV12-to-I420-conversion-with-strides-and-gap.patch │ ├── 0007.4-Adding-video-profiles-capabilities-to-the-video-capt.patch │ ├── 0007.5-Porting-H264-encoder-from-the-WebRTC-UWP-project.patch │ ├── 0007.6-Porting-H264-decoder-from-WebRTC-UWP.patch │ ├── 0008-Fixing-UWP-build-for-modules-audio_device.patch │ ├── 0009-Fixing-UWP-build-for-libvpx.patch │ ├── 6401-Arm64-is-a-thing-and-has-intrinsic-to-mul-two-64bit-.patch │ ├── 6401-Shift-operator-in-Arm-doesn-t-work-the-same-as-Intel.patch │ ├── 6401-cl-aligns-differently-and-hack-for-extracting-first-.patch │ ├── patchWebRTCM80.cmd │ ├── readme.md │ └── revert.cmd ├── m84 │ ├── 0001-Adding-flags-for-using-WinRT-C-projections-and-build.patch │ ├── 1001-Fixing-UWP-build-for-libvpx.patch │ ├── 2001-Fixing-NV12-to-I420-conversion-with-strides-and-gap.patch │ ├── 3001-Removing-unused-files-containing-Win32-APIs-from-rtc.patch │ ├── 3002-Fixing-UWP-build-for-file_rotating_stream.cc.patch │ ├── 3003-Allowing-no-contiguous-Y-and-UV-planes.patch │ ├── 3004-Changes-for-enabling-the-new-video-capture-module.patch │ ├── 3005-Adds-the-Media-Foundation-H264-encoder-and-decoder.patch │ ├── 3006-Disabling-switch-without-case-warning-for-aec3.patch │ ├── 3007-Do-not-push_back-in-foreach.patch │ ├── 3008-Fixing-UWP-build-for-time_utils.cc │ ├── 4001-Arm64-is-a-thing-and-has-intrinsic-to-mul-two-64bit-.patch │ ├── 5001-cl-aligns-differently-and-hack-for-extracting-first-.patch │ ├── patchWebRTCM84.cmd │ ├── readme.md │ └── src │ │ └── modules │ │ ├── audio_device │ │ └── win │ │ │ ├── audio_device_core_win.cc │ │ │ └── audio_device_core_win.h │ │ ├── video_capture │ │ └── windows │ │ │ ├── device_info_winrt.cc │ │ │ ├── device_info_winrt.h │ │ │ ├── help_functions_winrt.cc │ │ │ ├── help_functions_winrt.h │ │ │ ├── video_capture_winrt.cc │ │ │ └── video_capture_winrt.h │ │ └── video_coding │ │ └── codecs │ │ └── h264 │ │ ├── win │ │ ├── decoder │ │ │ ├── h264_decoder_mf_impl.cc │ │ │ └── h264_decoder_mf_impl.h │ │ ├── encoder │ │ │ ├── h264_encoder_mf_impl.cc │ │ │ ├── h264_encoder_mf_impl.h │ │ │ ├── h264_media_sink.cc │ │ │ ├── h264_media_sink.h │ │ │ ├── h264_stream_sink.cc │ │ │ ├── h264_stream_sink.h │ │ │ └── ih264_encoding_callback.h │ │ ├── h264_mf_factory.cc │ │ ├── h264_mf_factory.h │ │ ├── readme.md │ │ └── utils │ │ │ ├── async.h │ │ │ ├── crit_sec.h │ │ │ ├── sample_attribute_queue.h │ │ │ └── utils.h │ │ └── win_from_old_master │ │ ├── decoder │ │ ├── h264_decoder_mf_impl.cc │ │ └── h264_decoder_mf_impl.h │ │ ├── encoder │ │ ├── h264_encoder_mf_impl.cc │ │ ├── h264_encoder_mf_impl.h │ │ ├── h264_media_sink.cc │ │ ├── h264_media_sink.h │ │ ├── h264_stream_sink.cc │ │ ├── h264_stream_sink.h │ │ └── ih264_encoding_callback.h │ │ ├── h264_mf_factory.cc │ │ ├── h264_mf_factory.h │ │ └── readme.md └── master-08b11caf │ ├── 1008-Fixing-UWP-build-for-modules-audio_device.patch │ ├── build-0001-Add-UWP-clang-cl-toolchain.patch │ ├── build-0002-Add-static-CRT-option.patch │ ├── build-0003-Disable-Microsoft-template-warning.patch │ ├── libvpx-0001-Cast-thread-start-to-correct-parameter-type.patch │ ├── patchWebRTC.cmd │ ├── readme.md │ ├── revert.cmd │ └── third_party-0001-Disable-symbolizer-on-UWP.patch └── samples ├── Microsoft.WinRTC.Simple.VideoConferencing ├── .clang-format ├── AppRtc.cpp ├── AppRtc.def ├── AppRtc.h ├── AppRtc.rc ├── AppRtcControl.cpp ├── AppRtcControl.h ├── AppRtcControl.xaml ├── Microsoft.WinRTC.Simple.VideoConferencing.AppRtc.nuspec ├── Microsoft.WinRTC.Simple.VideoConferencing.AppRtc.targets ├── Microsoft.WinRTC.Simple.VideoConferencing.filters ├── Microsoft.WinRTC.Simple.VideoConferencing.vcxproj ├── Microsoft.WinRtc.Simple.VideoConferencing.idl ├── PropertySheet.props ├── PropertySheet1.props ├── Themes │ └── Generic.xaml ├── packages.config ├── pch.cpp ├── pch.h └── resource.h ├── MyFirstWinRtc ├── .clang-format ├── App.cpp ├── App.h ├── App.idl ├── App.xaml ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── MainPage.cpp ├── MainPage.h ├── MainPage.idl ├── MainPage.xaml ├── MyFirstWinRtc.vcxproj ├── MyFirstWinRtc.vcxproj.filters ├── Package.appxmanifest ├── PropertySheet.props ├── VideoConferencing │ └── VideoConferencing.sln ├── packages.config ├── pch.cpp └── pch.h └── README.md /.github/ISSUE_TEMPLATE/Bug_Report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/.github/ISSUE_TEMPLATE/Bug_Report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Documentation_Issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/.github/ISSUE_TEMPLATE/Documentation_Issue.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feature_Request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/.github/ISSUE_TEMPLATE/Feature_Request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/.github/ISSUE_TEMPLATE/Question.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/.gitignore -------------------------------------------------------------------------------- /.pipelines/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/.pipelines/build.cmd -------------------------------------------------------------------------------- /.pipelines/package.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/.pipelines/package.cmd -------------------------------------------------------------------------------- /.pipelines/pipeline.user.windows.buddy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/.pipelines/pipeline.user.windows.buddy.yml -------------------------------------------------------------------------------- /.pipelines/pipeline.user.windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/.pipelines/pipeline.user.windows.yml -------------------------------------------------------------------------------- /.pipelines/restore-acquiring_code.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/.pipelines/restore-acquiring_code.cmd -------------------------------------------------------------------------------- /.pipelines/restore-applying_patches.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/.pipelines/restore-applying_patches.cmd -------------------------------------------------------------------------------- /NuSpecs/Microsoft.WinRTC.libwebrtc.uwp.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/NuSpecs/Microsoft.WinRTC.libwebrtc.uwp.nuspec -------------------------------------------------------------------------------- /NuSpecs/Microsoft.WinRTC.libwebrtc.uwp.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/NuSpecs/Microsoft.WinRTC.libwebrtc.uwp.props -------------------------------------------------------------------------------- /NuSpecs/Microsoft.WinRTC.libwebrtc.win32.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/NuSpecs/Microsoft.WinRTC.libwebrtc.win32.nuspec -------------------------------------------------------------------------------- /NuSpecs/Microsoft.WinRTC.libwebrtc.win32.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/NuSpecs/Microsoft.WinRTC.libwebrtc.win32.props -------------------------------------------------------------------------------- /NuSpecs/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/NuSpecs/license.txt -------------------------------------------------------------------------------- /WebRtcWrapper/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/.clang-format -------------------------------------------------------------------------------- /WebRtcWrapper/Microsoft.WinRTC.WebRtcWrapper.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/Microsoft.WinRTC.WebRtcWrapper.idl -------------------------------------------------------------------------------- /WebRtcWrapper/WebRtcWrapper.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/WebRtcWrapper.def -------------------------------------------------------------------------------- /WebRtcWrapper/WebRtcWrapper.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/WebRtcWrapper.vcxproj -------------------------------------------------------------------------------- /WebRtcWrapper/WebRtcWrapper.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/WebRtcWrapper.vcxproj.filters -------------------------------------------------------------------------------- /WebRtcWrapper/cricket.AudioOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/cricket.AudioOptions.cpp -------------------------------------------------------------------------------- /WebRtcWrapper/cricket.AudioOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/cricket.AudioOptions.h -------------------------------------------------------------------------------- /WebRtcWrapper/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/packages.config -------------------------------------------------------------------------------- /WebRtcWrapper/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | 3 | -------------------------------------------------------------------------------- /WebRtcWrapper/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/pch.h -------------------------------------------------------------------------------- /WebRtcWrapper/rtc.RTC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/rtc.RTC.cpp -------------------------------------------------------------------------------- /WebRtcWrapper/rtc.RTC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/rtc.RTC.h -------------------------------------------------------------------------------- /WebRtcWrapper/rtc.Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/rtc.Thread.cpp -------------------------------------------------------------------------------- /WebRtcWrapper/rtc.Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/rtc.Thread.h -------------------------------------------------------------------------------- /WebRtcWrapper/rtc.VideoSinkWants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/rtc.VideoSinkWants.cpp -------------------------------------------------------------------------------- /WebRtcWrapper/rtc.VideoSinkWants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/rtc.VideoSinkWants.h -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.AudioDecoderFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.AudioDecoderFactory.cpp -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.AudioDecoderFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.AudioDecoderFactory.h -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.AudioEncoderFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.AudioEncoderFactory.cpp -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.AudioEncoderFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.AudioEncoderFactory.h -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.AudioSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.AudioSource.cpp -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.AudioSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.AudioSource.h -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.AudioTrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.AudioTrack.cpp -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.AudioTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.AudioTrack.h -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.AudioTrackSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.AudioTrackSink.cpp -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.AudioTrackSink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.AudioTrackSink.h -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.CreateSessionDescriptionObserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.CreateSessionDescriptionObserver.cpp -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.CreateSessionDescriptionObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.CreateSessionDescriptionObserver.h -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.IceCandidate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.IceCandidate.cpp -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.IceCandidate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.IceCandidate.h -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.MediaStreamTrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.MediaStreamTrack.cpp -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.MediaStreamTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.MediaStreamTrack.h -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.PeerConnection.IceServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.PeerConnection.IceServer.cpp -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.PeerConnection.IceServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.PeerConnection.IceServer.h -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.PeerConnection.PeerConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.PeerConnection.PeerConnection.cpp -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.PeerConnection.PeerConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.PeerConnection.PeerConnection.h -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.PeerConnection.RTCConfiguration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.PeerConnection.RTCConfiguration.cpp -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.PeerConnection.RTCConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.PeerConnection.RTCConfiguration.h -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.PeerConnection.RTCOfferAnswerOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.PeerConnection.RTCOfferAnswerOptions.cpp -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.PeerConnection.RTCOfferAnswerOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.PeerConnection.RTCOfferAnswerOptions.h -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.PeerConnectionDependencies.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.PeerConnectionDependencies.cpp -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.PeerConnectionDependencies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.PeerConnectionDependencies.h -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.PeerConnectionFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.PeerConnectionFactory.cpp -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.PeerConnectionFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.PeerConnectionFactory.h -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.PeerConnectionObserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.PeerConnectionObserver.cpp -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.PeerConnectionObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.PeerConnectionObserver.h -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.RtpReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.RtpReceiver.cpp -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.RtpReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.RtpReceiver.h -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.RtpSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.RtpSender.cpp -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.RtpSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.RtpSender.h -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.RtpTransceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.RtpTransceiver.cpp -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.RtpTransceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.RtpTransceiver.h -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.SessionDescription.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.SessionDescription.cpp -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.SessionDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.SessionDescription.h -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.SetSessionDescriptionObserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.SetSessionDescriptionObserver.cpp -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.SetSessionDescriptionObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.SetSessionDescriptionObserver.h -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.VideoCaptureCapability.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.VideoCaptureCapability.cpp -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.VideoCaptureCapability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.VideoCaptureCapability.h -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.VideoCaptureFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.VideoCaptureFactory.cpp -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.VideoCaptureFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.VideoCaptureFactory.h -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.VideoCaptureModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.VideoCaptureModule.cpp -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.VideoCaptureModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.VideoCaptureModule.h -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.VideoCaptureModule_DeviceInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.VideoCaptureModule_DeviceInfo.cpp -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.VideoCaptureModule_DeviceInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.VideoCaptureModule_DeviceInfo.h -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.VideoDecoderFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.VideoDecoderFactory.cpp -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.VideoDecoderFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.VideoDecoderFactory.h -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.VideoEncoderFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.VideoEncoderFactory.cpp -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.VideoEncoderFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.VideoEncoderFactory.h -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.VideoFrame.Builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.VideoFrame.Builder.cpp -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.VideoFrame.Builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.VideoFrame.Builder.h -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.VideoFrame.VideoFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.VideoFrame.VideoFrame.cpp -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.VideoFrame.VideoFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.VideoFrame.VideoFrame.h -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.VideoSink_VideoFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.VideoSink_VideoFrame.cpp -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.VideoSink_VideoFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.VideoSink_VideoFrame.h -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.VideoTrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.VideoTrack.cpp -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.VideoTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.VideoTrack.h -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.VideoTrackSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.VideoTrackSource.cpp -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.VideoTrackSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.VideoTrackSource.h -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.WebRTC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.WebRTC.cpp -------------------------------------------------------------------------------- /WebRtcWrapper/webrtc.WebRTC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/WebRtcWrapper/webrtc.WebRTC.h -------------------------------------------------------------------------------- /docs/AddUser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/docs/AddUser.png -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/docs/FAQ.md -------------------------------------------------------------------------------- /docs/Joinroom.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/docs/Joinroom.PNG -------------------------------------------------------------------------------- /docs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/docs/LICENSE -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/Roomcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/docs/Roomcode.png -------------------------------------------------------------------------------- /docs/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/docs/SECURITY.md -------------------------------------------------------------------------------- /docs/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/docs/SUPPORT.md -------------------------------------------------------------------------------- /docs/WinRTC_Architecture_Diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/docs/WinRTC_Architecture_Diagram.png -------------------------------------------------------------------------------- /docs/adding_Nuget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/docs/adding_Nuget.png -------------------------------------------------------------------------------- /docs/install_Nuget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/docs/install_Nuget.png -------------------------------------------------------------------------------- /docs/roomNum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/docs/roomNum.png -------------------------------------------------------------------------------- /docs/sln.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/docs/sln.png -------------------------------------------------------------------------------- /docs/tempsnip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/docs/tempsnip.png -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m80/0000-WebRTC-doesn-t-need-C-CX.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m80/0000-WebRTC-doesn-t-need-C-CX.patch -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m80/0001-UWP-doesn-t-allow-reading-regkeys-from-that-hive.-Al.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m80/0001-UWP-doesn-t-allow-reading-regkeys-from-that-hive.-Al.patch -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m80/0002-UWP-apps-do-support-GetProcAddress-but-do-support-Ge.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m80/0002-UWP-apps-do-support-GetProcAddress-but-do-support-Ge.patch -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m80/0003-Replacing-deprecated-and-non-UWP-supported-RtlGenRan.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m80/0003-Replacing-deprecated-and-non-UWP-supported-RtlGenRan.patch -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m80/0004-This-is-a-change-that-fixes-3-issues-in-the-rtc_base.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m80/0004-This-is-a-change-that-fixes-3-issues-in-the-rtc_base.patch -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m80/0005-Fixing-UWP-build-for-time_utils.cc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m80/0005-Fixing-UWP-build-for-time_utils.cc.patch -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m80/0006-Fixing-UWP-build-for-file_rotating_stream.cc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m80/0006-Fixing-UWP-build-for-file_rotating_stream.cc.patch -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m80/0007-Fixing-UWP-build-for-modules-video_capture.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m80/0007-Fixing-UWP-build-for-modules-video_capture.patch -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m80/0007.1-BUG-Requested-camera-settings-were-not-being-honored.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m80/0007.1-BUG-Requested-camera-settings-were-not-being-honored.patch -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m80/0007.2-Properly-handling-async-model-for-initializing-Media.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m80/0007.2-Properly-handling-async-model-for-initializing-Media.patch -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m80/0007.3-Fixing-NV12-to-I420-conversion-with-strides-and-gap.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m80/0007.3-Fixing-NV12-to-I420-conversion-with-strides-and-gap.patch -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m80/0007.4-Adding-video-profiles-capabilities-to-the-video-capt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m80/0007.4-Adding-video-profiles-capabilities-to-the-video-capt.patch -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m80/0007.5-Porting-H264-encoder-from-the-WebRTC-UWP-project.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m80/0007.5-Porting-H264-encoder-from-the-WebRTC-UWP-project.patch -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m80/0007.6-Porting-H264-decoder-from-WebRTC-UWP.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m80/0007.6-Porting-H264-decoder-from-WebRTC-UWP.patch -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m80/0008-Fixing-UWP-build-for-modules-audio_device.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m80/0008-Fixing-UWP-build-for-modules-audio_device.patch -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m80/0009-Fixing-UWP-build-for-libvpx.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m80/0009-Fixing-UWP-build-for-libvpx.patch -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m80/6401-Arm64-is-a-thing-and-has-intrinsic-to-mul-two-64bit-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m80/6401-Arm64-is-a-thing-and-has-intrinsic-to-mul-two-64bit-.patch -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m80/6401-Shift-operator-in-Arm-doesn-t-work-the-same-as-Intel.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m80/6401-Shift-operator-in-Arm-doesn-t-work-the-same-as-Intel.patch -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m80/6401-cl-aligns-differently-and-hack-for-extracting-first-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m80/6401-cl-aligns-differently-and-hack-for-extracting-first-.patch -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m80/patchWebRTCM80.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m80/patchWebRTCM80.cmd -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m80/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m80/readme.md -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m80/revert.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m80/revert.cmd -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/0001-Adding-flags-for-using-WinRT-C-projections-and-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/0001-Adding-flags-for-using-WinRT-C-projections-and-build.patch -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/1001-Fixing-UWP-build-for-libvpx.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/1001-Fixing-UWP-build-for-libvpx.patch -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/2001-Fixing-NV12-to-I420-conversion-with-strides-and-gap.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/2001-Fixing-NV12-to-I420-conversion-with-strides-and-gap.patch -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/3001-Removing-unused-files-containing-Win32-APIs-from-rtc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/3001-Removing-unused-files-containing-Win32-APIs-from-rtc.patch -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/3002-Fixing-UWP-build-for-file_rotating_stream.cc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/3002-Fixing-UWP-build-for-file_rotating_stream.cc.patch -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/3003-Allowing-no-contiguous-Y-and-UV-planes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/3003-Allowing-no-contiguous-Y-and-UV-planes.patch -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/3004-Changes-for-enabling-the-new-video-capture-module.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/3004-Changes-for-enabling-the-new-video-capture-module.patch -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/3005-Adds-the-Media-Foundation-H264-encoder-and-decoder.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/3005-Adds-the-Media-Foundation-H264-encoder-and-decoder.patch -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/3006-Disabling-switch-without-case-warning-for-aec3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/3006-Disabling-switch-without-case-warning-for-aec3.patch -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/3007-Do-not-push_back-in-foreach.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/3007-Do-not-push_back-in-foreach.patch -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/3008-Fixing-UWP-build-for-time_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/3008-Fixing-UWP-build-for-time_utils.cc -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/4001-Arm64-is-a-thing-and-has-intrinsic-to-mul-two-64bit-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/4001-Arm64-is-a-thing-and-has-intrinsic-to-mul-two-64bit-.patch -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/5001-cl-aligns-differently-and-hack-for-extracting-first-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/5001-cl-aligns-differently-and-hack-for-extracting-first-.patch -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/patchWebRTCM84.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/patchWebRTCM84.cmd -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/readme.md -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/src/modules/audio_device/win/audio_device_core_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/src/modules/audio_device/win/audio_device_core_win.cc -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/src/modules/audio_device/win/audio_device_core_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/src/modules/audio_device/win/audio_device_core_win.h -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/src/modules/video_capture/windows/device_info_winrt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/src/modules/video_capture/windows/device_info_winrt.cc -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/src/modules/video_capture/windows/device_info_winrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/src/modules/video_capture/windows/device_info_winrt.h -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/src/modules/video_capture/windows/help_functions_winrt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/src/modules/video_capture/windows/help_functions_winrt.cc -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/src/modules/video_capture/windows/help_functions_winrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/src/modules/video_capture/windows/help_functions_winrt.h -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/src/modules/video_capture/windows/video_capture_winrt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/src/modules/video_capture/windows/video_capture_winrt.cc -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/src/modules/video_capture/windows/video_capture_winrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/src/modules/video_capture/windows/video_capture_winrt.h -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win/decoder/h264_decoder_mf_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win/decoder/h264_decoder_mf_impl.cc -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win/decoder/h264_decoder_mf_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win/decoder/h264_decoder_mf_impl.h -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win/encoder/h264_encoder_mf_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win/encoder/h264_encoder_mf_impl.cc -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win/encoder/h264_encoder_mf_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win/encoder/h264_encoder_mf_impl.h -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win/encoder/h264_media_sink.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win/encoder/h264_media_sink.cc -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win/encoder/h264_media_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win/encoder/h264_media_sink.h -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win/encoder/h264_stream_sink.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win/encoder/h264_stream_sink.cc -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win/encoder/h264_stream_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win/encoder/h264_stream_sink.h -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win/encoder/ih264_encoding_callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win/encoder/ih264_encoding_callback.h -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win/h264_mf_factory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win/h264_mf_factory.cc -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win/h264_mf_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win/h264_mf_factory.h -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win/readme.md -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win/utils/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win/utils/async.h -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win/utils/crit_sec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win/utils/crit_sec.h -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win/utils/sample_attribute_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win/utils/sample_attribute_queue.h -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win/utils/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win/utils/utils.h -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win_from_old_master/decoder/h264_decoder_mf_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win_from_old_master/decoder/h264_decoder_mf_impl.cc -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win_from_old_master/decoder/h264_decoder_mf_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win_from_old_master/decoder/h264_decoder_mf_impl.h -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win_from_old_master/encoder/h264_encoder_mf_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win_from_old_master/encoder/h264_encoder_mf_impl.cc -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win_from_old_master/encoder/h264_encoder_mf_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win_from_old_master/encoder/h264_encoder_mf_impl.h -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win_from_old_master/encoder/h264_media_sink.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win_from_old_master/encoder/h264_media_sink.cc -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win_from_old_master/encoder/h264_media_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win_from_old_master/encoder/h264_media_sink.h -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win_from_old_master/encoder/h264_stream_sink.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win_from_old_master/encoder/h264_stream_sink.cc -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win_from_old_master/encoder/h264_stream_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win_from_old_master/encoder/h264_stream_sink.h -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win_from_old_master/encoder/ih264_encoding_callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win_from_old_master/encoder/ih264_encoding_callback.h -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win_from_old_master/h264_mf_factory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win_from_old_master/h264_mf_factory.cc -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win_from_old_master/h264_mf_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win_from_old_master/h264_mf_factory.h -------------------------------------------------------------------------------- /patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win_from_old_master/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/m84/src/modules/video_coding/codecs/h264/win_from_old_master/readme.md -------------------------------------------------------------------------------- /patches_for_WebRTC_org/master-08b11caf/1008-Fixing-UWP-build-for-modules-audio_device.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/master-08b11caf/1008-Fixing-UWP-build-for-modules-audio_device.patch -------------------------------------------------------------------------------- /patches_for_WebRTC_org/master-08b11caf/build-0001-Add-UWP-clang-cl-toolchain.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/master-08b11caf/build-0001-Add-UWP-clang-cl-toolchain.patch -------------------------------------------------------------------------------- /patches_for_WebRTC_org/master-08b11caf/build-0002-Add-static-CRT-option.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/master-08b11caf/build-0002-Add-static-CRT-option.patch -------------------------------------------------------------------------------- /patches_for_WebRTC_org/master-08b11caf/build-0003-Disable-Microsoft-template-warning.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/master-08b11caf/build-0003-Disable-Microsoft-template-warning.patch -------------------------------------------------------------------------------- /patches_for_WebRTC_org/master-08b11caf/libvpx-0001-Cast-thread-start-to-correct-parameter-type.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/master-08b11caf/libvpx-0001-Cast-thread-start-to-correct-parameter-type.patch -------------------------------------------------------------------------------- /patches_for_WebRTC_org/master-08b11caf/patchWebRTC.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/master-08b11caf/patchWebRTC.cmd -------------------------------------------------------------------------------- /patches_for_WebRTC_org/master-08b11caf/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/master-08b11caf/readme.md -------------------------------------------------------------------------------- /patches_for_WebRTC_org/master-08b11caf/revert.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/master-08b11caf/revert.cmd -------------------------------------------------------------------------------- /patches_for_WebRTC_org/master-08b11caf/third_party-0001-Disable-symbolizer-on-UWP.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/patches_for_WebRTC_org/master-08b11caf/third_party-0001-Disable-symbolizer-on-UWP.patch -------------------------------------------------------------------------------- /samples/Microsoft.WinRTC.Simple.VideoConferencing/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/Microsoft.WinRTC.Simple.VideoConferencing/.clang-format -------------------------------------------------------------------------------- /samples/Microsoft.WinRTC.Simple.VideoConferencing/AppRtc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/Microsoft.WinRTC.Simple.VideoConferencing/AppRtc.cpp -------------------------------------------------------------------------------- /samples/Microsoft.WinRTC.Simple.VideoConferencing/AppRtc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/Microsoft.WinRTC.Simple.VideoConferencing/AppRtc.def -------------------------------------------------------------------------------- /samples/Microsoft.WinRTC.Simple.VideoConferencing/AppRtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/Microsoft.WinRTC.Simple.VideoConferencing/AppRtc.h -------------------------------------------------------------------------------- /samples/Microsoft.WinRTC.Simple.VideoConferencing/AppRtc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/Microsoft.WinRTC.Simple.VideoConferencing/AppRtc.rc -------------------------------------------------------------------------------- /samples/Microsoft.WinRTC.Simple.VideoConferencing/AppRtcControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/Microsoft.WinRTC.Simple.VideoConferencing/AppRtcControl.cpp -------------------------------------------------------------------------------- /samples/Microsoft.WinRTC.Simple.VideoConferencing/AppRtcControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/Microsoft.WinRTC.Simple.VideoConferencing/AppRtcControl.h -------------------------------------------------------------------------------- /samples/Microsoft.WinRTC.Simple.VideoConferencing/AppRtcControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/Microsoft.WinRTC.Simple.VideoConferencing/AppRtcControl.xaml -------------------------------------------------------------------------------- /samples/Microsoft.WinRTC.Simple.VideoConferencing/Microsoft.WinRTC.Simple.VideoConferencing.AppRtc.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/Microsoft.WinRTC.Simple.VideoConferencing/Microsoft.WinRTC.Simple.VideoConferencing.AppRtc.nuspec -------------------------------------------------------------------------------- /samples/Microsoft.WinRTC.Simple.VideoConferencing/Microsoft.WinRTC.Simple.VideoConferencing.AppRtc.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/Microsoft.WinRTC.Simple.VideoConferencing/Microsoft.WinRTC.Simple.VideoConferencing.AppRtc.targets -------------------------------------------------------------------------------- /samples/Microsoft.WinRTC.Simple.VideoConferencing/Microsoft.WinRTC.Simple.VideoConferencing.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/Microsoft.WinRTC.Simple.VideoConferencing/Microsoft.WinRTC.Simple.VideoConferencing.filters -------------------------------------------------------------------------------- /samples/Microsoft.WinRTC.Simple.VideoConferencing/Microsoft.WinRTC.Simple.VideoConferencing.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/Microsoft.WinRTC.Simple.VideoConferencing/Microsoft.WinRTC.Simple.VideoConferencing.vcxproj -------------------------------------------------------------------------------- /samples/Microsoft.WinRTC.Simple.VideoConferencing/Microsoft.WinRtc.Simple.VideoConferencing.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/Microsoft.WinRTC.Simple.VideoConferencing/Microsoft.WinRtc.Simple.VideoConferencing.idl -------------------------------------------------------------------------------- /samples/Microsoft.WinRTC.Simple.VideoConferencing/PropertySheet.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/Microsoft.WinRTC.Simple.VideoConferencing/PropertySheet.props -------------------------------------------------------------------------------- /samples/Microsoft.WinRTC.Simple.VideoConferencing/PropertySheet1.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/Microsoft.WinRTC.Simple.VideoConferencing/PropertySheet1.props -------------------------------------------------------------------------------- /samples/Microsoft.WinRTC.Simple.VideoConferencing/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/Microsoft.WinRTC.Simple.VideoConferencing/Themes/Generic.xaml -------------------------------------------------------------------------------- /samples/Microsoft.WinRTC.Simple.VideoConferencing/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/Microsoft.WinRTC.Simple.VideoConferencing/packages.config -------------------------------------------------------------------------------- /samples/Microsoft.WinRTC.Simple.VideoConferencing/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/Microsoft.WinRTC.Simple.VideoConferencing/pch.cpp -------------------------------------------------------------------------------- /samples/Microsoft.WinRTC.Simple.VideoConferencing/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/Microsoft.WinRTC.Simple.VideoConferencing/pch.h -------------------------------------------------------------------------------- /samples/Microsoft.WinRTC.Simple.VideoConferencing/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/Microsoft.WinRTC.Simple.VideoConferencing/resource.h -------------------------------------------------------------------------------- /samples/MyFirstWinRtc/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/MyFirstWinRtc/.clang-format -------------------------------------------------------------------------------- /samples/MyFirstWinRtc/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/MyFirstWinRtc/App.cpp -------------------------------------------------------------------------------- /samples/MyFirstWinRtc/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/MyFirstWinRtc/App.h -------------------------------------------------------------------------------- /samples/MyFirstWinRtc/App.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/MyFirstWinRtc/App.idl -------------------------------------------------------------------------------- /samples/MyFirstWinRtc/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/MyFirstWinRtc/App.xaml -------------------------------------------------------------------------------- /samples/MyFirstWinRtc/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/MyFirstWinRtc/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/MyFirstWinRtc/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/MyFirstWinRtc/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/MyFirstWinRtc/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/MyFirstWinRtc/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/MyFirstWinRtc/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/MyFirstWinRtc/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/MyFirstWinRtc/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/MyFirstWinRtc/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/MyFirstWinRtc/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/MyFirstWinRtc/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/MyFirstWinRtc/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/MyFirstWinRtc/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/MyFirstWinRtc/MainPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/MyFirstWinRtc/MainPage.cpp -------------------------------------------------------------------------------- /samples/MyFirstWinRtc/MainPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/MyFirstWinRtc/MainPage.h -------------------------------------------------------------------------------- /samples/MyFirstWinRtc/MainPage.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/MyFirstWinRtc/MainPage.idl -------------------------------------------------------------------------------- /samples/MyFirstWinRtc/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/MyFirstWinRtc/MainPage.xaml -------------------------------------------------------------------------------- /samples/MyFirstWinRtc/MyFirstWinRtc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/MyFirstWinRtc/MyFirstWinRtc.vcxproj -------------------------------------------------------------------------------- /samples/MyFirstWinRtc/MyFirstWinRtc.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/MyFirstWinRtc/MyFirstWinRtc.vcxproj.filters -------------------------------------------------------------------------------- /samples/MyFirstWinRtc/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/MyFirstWinRtc/Package.appxmanifest -------------------------------------------------------------------------------- /samples/MyFirstWinRtc/PropertySheet.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/MyFirstWinRtc/PropertySheet.props -------------------------------------------------------------------------------- /samples/MyFirstWinRtc/VideoConferencing/VideoConferencing.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/MyFirstWinRtc/VideoConferencing/VideoConferencing.sln -------------------------------------------------------------------------------- /samples/MyFirstWinRtc/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/MyFirstWinRtc/packages.config -------------------------------------------------------------------------------- /samples/MyFirstWinRtc/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/MyFirstWinRtc/pch.cpp -------------------------------------------------------------------------------- /samples/MyFirstWinRtc/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/MyFirstWinRtc/pch.h -------------------------------------------------------------------------------- /samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winrtc/HEAD/samples/README.md --------------------------------------------------------------------------------