├── .gitignore ├── LICENSE ├── README.md ├── nuget └── templates │ ├── WebRtc.Nuget.sln │ ├── WebRtc.nuspec │ └── WebRtc.targets ├── projects └── msvc │ ├── Org.WebRtc.NetStandard │ └── Org.WebRtc.csproj │ ├── Org.WebRtc.Universal │ ├── Org.WebRtc.vcxproj │ ├── Org.WebRtc.vcxproj.filters │ ├── Org_WebRtc.def │ ├── packages.config │ ├── pch.cpp │ ├── pch.h │ └── readme.txt │ ├── Org.WebRtc.WrapperC.Win32 │ ├── Org.WebRtc.WrapperC.cpp │ ├── Org.WebRtc.WrapperC.filters │ ├── Org.WebRtc.WrapperC.vcxproj │ ├── dllmain.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h │ ├── Org.WebRtc.WrapperGlue.Universal │ ├── Org.WebRtc.WrapperGlue.vcxproj │ ├── Org.WebRtc.WrapperGlue.vcxproj.filters │ └── targetver.h │ ├── Org.WebRtc.WrapperGlue.Win32 │ ├── Org.WebRtc.WrapperGlue.vcxproj │ ├── Org.WebRtc.WrapperGlue.vcxproj.filters │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h │ ├── PeerConnectionServer.Utility.Universal │ └── PeerConnectionServer.Utility.vcxproj │ ├── PeerConnectionServer.Utility │ ├── PeerConnectionServer.Utility.vcxproj │ └── PeerConnectionServer.Utility.vcxproj.filters │ ├── WebRtc.UWP.Native.Builder │ ├── DummyClass.cpp │ ├── DummyClass.h │ └── WebRtc.UWP.Native.Builder.vcxproj │ └── WebRtc.Win32.Native.Builder │ ├── WebRtc.Win32.Native.Builder.vcxproj │ ├── WebRtc.Win32.Native.Builder.vcxproj.filters │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── solutions ├── WebRtc.Universal.sln ├── WebRtc.Win32.sln └── WebRtcUnity.Universal.sln ├── templates ├── gns │ └── args.gn ├── libs │ └── webrtc │ │ ├── WebRtc.x64.sln │ │ ├── WebRtc.x86.sln │ │ └── webrtcLib.sln ├── samples │ ├── ChatterBox │ │ └── ChatterBox.Background │ │ │ ├── ChatterBox.Background.csproj │ │ │ └── project.json │ └── PeerCC │ │ ├── AssemblyInfo.cs │ │ ├── Package.WebRtc.appxmanifest │ │ ├── PeerConnectionClient.WebRtc.csproj │ │ └── project.json └── solutions │ ├── WebRtc.Wrapper.Universal.sln │ └── WebRtc.Wrapper.Win32.sln └── third_party ├── winuwp_compat ├── BUILD.gn ├── gflags │ └── gen │ │ └── win │ │ └── include │ │ └── private │ │ └── config.h ├── winuwp_compat_internal.cc ├── winuwp_compat_internal.h ├── winuwp_compat_noop.cc ├── winuwp_compat_std.cc ├── winuwp_compat_std.h ├── winuwp_compat_win.cc ├── winuwp_compat_win.h ├── winuwp_compat_wrap_main_plain_c.cc ├── winuwp_compat_wrap_main_plain_c.h ├── winuwp_compat_wrap_main_plain_cc.cc ├── winuwp_compat_wrap_main_plain_cc.h ├── winuwp_compat_wrap_main_utf16_c.cc ├── winuwp_compat_wrap_main_utf16_c.h ├── winuwp_compat_wrap_main_utf16_cc.cc ├── winuwp_compat_wrap_main_utf16_cc.h ├── winuwp_compat_wrap_main_utf8_c.cc ├── winuwp_compat_wrap_main_utf8_c.h ├── winuwp_compat_wrap_main_utf8_cc.cc └── winuwp_compat_wrap_main_utf8_cc.h └── winuwp_h264 ├── BUILD.gn ├── H264Decoder ├── H264Decoder.cc └── H264Decoder.h ├── H264Encoder ├── H264Encoder.cc ├── H264Encoder.h ├── H264MediaSink.cc ├── H264MediaSink.h ├── H264StreamSink.cc ├── H264StreamSink.h └── IH264EncodingCallback.h ├── Utils ├── Async.h ├── CritSec.h ├── OpQueue.h ├── SampleAttributeQueue.h └── Utils.h ├── native_handle_buffer.h ├── winuwp_h264_factory.cc └── winuwp_h264_factory.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/README.md -------------------------------------------------------------------------------- /nuget/templates/WebRtc.Nuget.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/nuget/templates/WebRtc.Nuget.sln -------------------------------------------------------------------------------- /nuget/templates/WebRtc.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/nuget/templates/WebRtc.nuspec -------------------------------------------------------------------------------- /nuget/templates/WebRtc.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/nuget/templates/WebRtc.targets -------------------------------------------------------------------------------- /projects/msvc/Org.WebRtc.NetStandard/Org.WebRtc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/projects/msvc/Org.WebRtc.NetStandard/Org.WebRtc.csproj -------------------------------------------------------------------------------- /projects/msvc/Org.WebRtc.Universal/Org.WebRtc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/projects/msvc/Org.WebRtc.Universal/Org.WebRtc.vcxproj -------------------------------------------------------------------------------- /projects/msvc/Org.WebRtc.Universal/Org.WebRtc.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/projects/msvc/Org.WebRtc.Universal/Org.WebRtc.vcxproj.filters -------------------------------------------------------------------------------- /projects/msvc/Org.WebRtc.Universal/Org_WebRtc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/projects/msvc/Org.WebRtc.Universal/Org_WebRtc.def -------------------------------------------------------------------------------- /projects/msvc/Org.WebRtc.Universal/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/projects/msvc/Org.WebRtc.Universal/packages.config -------------------------------------------------------------------------------- /projects/msvc/Org.WebRtc.Universal/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /projects/msvc/Org.WebRtc.Universal/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/projects/msvc/Org.WebRtc.Universal/pch.h -------------------------------------------------------------------------------- /projects/msvc/Org.WebRtc.Universal/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/projects/msvc/Org.WebRtc.Universal/readme.txt -------------------------------------------------------------------------------- /projects/msvc/Org.WebRtc.WrapperC.Win32/Org.WebRtc.WrapperC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/projects/msvc/Org.WebRtc.WrapperC.Win32/Org.WebRtc.WrapperC.cpp -------------------------------------------------------------------------------- /projects/msvc/Org.WebRtc.WrapperC.Win32/Org.WebRtc.WrapperC.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/projects/msvc/Org.WebRtc.WrapperC.Win32/Org.WebRtc.WrapperC.filters -------------------------------------------------------------------------------- /projects/msvc/Org.WebRtc.WrapperC.Win32/Org.WebRtc.WrapperC.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/projects/msvc/Org.WebRtc.WrapperC.Win32/Org.WebRtc.WrapperC.vcxproj -------------------------------------------------------------------------------- /projects/msvc/Org.WebRtc.WrapperC.Win32/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/projects/msvc/Org.WebRtc.WrapperC.Win32/dllmain.cpp -------------------------------------------------------------------------------- /projects/msvc/Org.WebRtc.WrapperC.Win32/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /projects/msvc/Org.WebRtc.WrapperC.Win32/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/projects/msvc/Org.WebRtc.WrapperC.Win32/stdafx.h -------------------------------------------------------------------------------- /projects/msvc/Org.WebRtc.WrapperC.Win32/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/projects/msvc/Org.WebRtc.WrapperC.Win32/targetver.h -------------------------------------------------------------------------------- /projects/msvc/Org.WebRtc.WrapperGlue.Universal/Org.WebRtc.WrapperGlue.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/projects/msvc/Org.WebRtc.WrapperGlue.Universal/Org.WebRtc.WrapperGlue.vcxproj -------------------------------------------------------------------------------- /projects/msvc/Org.WebRtc.WrapperGlue.Universal/Org.WebRtc.WrapperGlue.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/projects/msvc/Org.WebRtc.WrapperGlue.Universal/Org.WebRtc.WrapperGlue.vcxproj.filters -------------------------------------------------------------------------------- /projects/msvc/Org.WebRtc.WrapperGlue.Universal/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/projects/msvc/Org.WebRtc.WrapperGlue.Universal/targetver.h -------------------------------------------------------------------------------- /projects/msvc/Org.WebRtc.WrapperGlue.Win32/Org.WebRtc.WrapperGlue.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/projects/msvc/Org.WebRtc.WrapperGlue.Win32/Org.WebRtc.WrapperGlue.vcxproj -------------------------------------------------------------------------------- /projects/msvc/Org.WebRtc.WrapperGlue.Win32/Org.WebRtc.WrapperGlue.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/projects/msvc/Org.WebRtc.WrapperGlue.Win32/Org.WebRtc.WrapperGlue.vcxproj.filters -------------------------------------------------------------------------------- /projects/msvc/Org.WebRtc.WrapperGlue.Win32/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /projects/msvc/Org.WebRtc.WrapperGlue.Win32/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/projects/msvc/Org.WebRtc.WrapperGlue.Win32/stdafx.h -------------------------------------------------------------------------------- /projects/msvc/Org.WebRtc.WrapperGlue.Win32/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/projects/msvc/Org.WebRtc.WrapperGlue.Win32/targetver.h -------------------------------------------------------------------------------- /projects/msvc/PeerConnectionServer.Utility.Universal/PeerConnectionServer.Utility.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/projects/msvc/PeerConnectionServer.Utility.Universal/PeerConnectionServer.Utility.vcxproj -------------------------------------------------------------------------------- /projects/msvc/PeerConnectionServer.Utility/PeerConnectionServer.Utility.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/projects/msvc/PeerConnectionServer.Utility/PeerConnectionServer.Utility.vcxproj -------------------------------------------------------------------------------- /projects/msvc/PeerConnectionServer.Utility/PeerConnectionServer.Utility.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/projects/msvc/PeerConnectionServer.Utility/PeerConnectionServer.Utility.vcxproj.filters -------------------------------------------------------------------------------- /projects/msvc/WebRtc.UWP.Native.Builder/DummyClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/projects/msvc/WebRtc.UWP.Native.Builder/DummyClass.cpp -------------------------------------------------------------------------------- /projects/msvc/WebRtc.UWP.Native.Builder/DummyClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/projects/msvc/WebRtc.UWP.Native.Builder/DummyClass.h -------------------------------------------------------------------------------- /projects/msvc/WebRtc.UWP.Native.Builder/WebRtc.UWP.Native.Builder.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/projects/msvc/WebRtc.UWP.Native.Builder/WebRtc.UWP.Native.Builder.vcxproj -------------------------------------------------------------------------------- /projects/msvc/WebRtc.Win32.Native.Builder/WebRtc.Win32.Native.Builder.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/projects/msvc/WebRtc.Win32.Native.Builder/WebRtc.Win32.Native.Builder.vcxproj -------------------------------------------------------------------------------- /projects/msvc/WebRtc.Win32.Native.Builder/WebRtc.Win32.Native.Builder.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/projects/msvc/WebRtc.Win32.Native.Builder/WebRtc.Win32.Native.Builder.vcxproj.filters -------------------------------------------------------------------------------- /projects/msvc/WebRtc.Win32.Native.Builder/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /projects/msvc/WebRtc.Win32.Native.Builder/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/projects/msvc/WebRtc.Win32.Native.Builder/stdafx.h -------------------------------------------------------------------------------- /projects/msvc/WebRtc.Win32.Native.Builder/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/projects/msvc/WebRtc.Win32.Native.Builder/targetver.h -------------------------------------------------------------------------------- /solutions/WebRtc.Universal.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/solutions/WebRtc.Universal.sln -------------------------------------------------------------------------------- /solutions/WebRtc.Win32.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/solutions/WebRtc.Win32.sln -------------------------------------------------------------------------------- /solutions/WebRtcUnity.Universal.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/solutions/WebRtcUnity.Universal.sln -------------------------------------------------------------------------------- /templates/gns/args.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/templates/gns/args.gn -------------------------------------------------------------------------------- /templates/libs/webrtc/WebRtc.x64.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/templates/libs/webrtc/WebRtc.x64.sln -------------------------------------------------------------------------------- /templates/libs/webrtc/WebRtc.x86.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/templates/libs/webrtc/WebRtc.x86.sln -------------------------------------------------------------------------------- /templates/libs/webrtc/webrtcLib.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/templates/libs/webrtc/webrtcLib.sln -------------------------------------------------------------------------------- /templates/samples/ChatterBox/ChatterBox.Background/ChatterBox.Background.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/templates/samples/ChatterBox/ChatterBox.Background/ChatterBox.Background.csproj -------------------------------------------------------------------------------- /templates/samples/ChatterBox/ChatterBox.Background/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/templates/samples/ChatterBox/ChatterBox.Background/project.json -------------------------------------------------------------------------------- /templates/samples/PeerCC/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/templates/samples/PeerCC/AssemblyInfo.cs -------------------------------------------------------------------------------- /templates/samples/PeerCC/Package.WebRtc.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/templates/samples/PeerCC/Package.WebRtc.appxmanifest -------------------------------------------------------------------------------- /templates/samples/PeerCC/PeerConnectionClient.WebRtc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/templates/samples/PeerCC/PeerConnectionClient.WebRtc.csproj -------------------------------------------------------------------------------- /templates/samples/PeerCC/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/templates/samples/PeerCC/project.json -------------------------------------------------------------------------------- /templates/solutions/WebRtc.Wrapper.Universal.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/templates/solutions/WebRtc.Wrapper.Universal.sln -------------------------------------------------------------------------------- /templates/solutions/WebRtc.Wrapper.Win32.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/templates/solutions/WebRtc.Wrapper.Win32.sln -------------------------------------------------------------------------------- /third_party/winuwp_compat/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/third_party/winuwp_compat/BUILD.gn -------------------------------------------------------------------------------- /third_party/winuwp_compat/gflags/gen/win/include/private/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/third_party/winuwp_compat/gflags/gen/win/include/private/config.h -------------------------------------------------------------------------------- /third_party/winuwp_compat/winuwp_compat_internal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/third_party/winuwp_compat/winuwp_compat_internal.cc -------------------------------------------------------------------------------- /third_party/winuwp_compat/winuwp_compat_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/third_party/winuwp_compat/winuwp_compat_internal.h -------------------------------------------------------------------------------- /third_party/winuwp_compat/winuwp_compat_noop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/third_party/winuwp_compat/winuwp_compat_noop.cc -------------------------------------------------------------------------------- /third_party/winuwp_compat/winuwp_compat_std.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/third_party/winuwp_compat/winuwp_compat_std.cc -------------------------------------------------------------------------------- /third_party/winuwp_compat/winuwp_compat_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/third_party/winuwp_compat/winuwp_compat_std.h -------------------------------------------------------------------------------- /third_party/winuwp_compat/winuwp_compat_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/third_party/winuwp_compat/winuwp_compat_win.cc -------------------------------------------------------------------------------- /third_party/winuwp_compat/winuwp_compat_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/third_party/winuwp_compat/winuwp_compat_win.h -------------------------------------------------------------------------------- /third_party/winuwp_compat/winuwp_compat_wrap_main_plain_c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/third_party/winuwp_compat/winuwp_compat_wrap_main_plain_c.cc -------------------------------------------------------------------------------- /third_party/winuwp_compat/winuwp_compat_wrap_main_plain_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/third_party/winuwp_compat/winuwp_compat_wrap_main_plain_c.h -------------------------------------------------------------------------------- /third_party/winuwp_compat/winuwp_compat_wrap_main_plain_cc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/third_party/winuwp_compat/winuwp_compat_wrap_main_plain_cc.cc -------------------------------------------------------------------------------- /third_party/winuwp_compat/winuwp_compat_wrap_main_plain_cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/third_party/winuwp_compat/winuwp_compat_wrap_main_plain_cc.h -------------------------------------------------------------------------------- /third_party/winuwp_compat/winuwp_compat_wrap_main_utf16_c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/third_party/winuwp_compat/winuwp_compat_wrap_main_utf16_c.cc -------------------------------------------------------------------------------- /third_party/winuwp_compat/winuwp_compat_wrap_main_utf16_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/third_party/winuwp_compat/winuwp_compat_wrap_main_utf16_c.h -------------------------------------------------------------------------------- /third_party/winuwp_compat/winuwp_compat_wrap_main_utf16_cc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/third_party/winuwp_compat/winuwp_compat_wrap_main_utf16_cc.cc -------------------------------------------------------------------------------- /third_party/winuwp_compat/winuwp_compat_wrap_main_utf16_cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/third_party/winuwp_compat/winuwp_compat_wrap_main_utf16_cc.h -------------------------------------------------------------------------------- /third_party/winuwp_compat/winuwp_compat_wrap_main_utf8_c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/third_party/winuwp_compat/winuwp_compat_wrap_main_utf8_c.cc -------------------------------------------------------------------------------- /third_party/winuwp_compat/winuwp_compat_wrap_main_utf8_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/third_party/winuwp_compat/winuwp_compat_wrap_main_utf8_c.h -------------------------------------------------------------------------------- /third_party/winuwp_compat/winuwp_compat_wrap_main_utf8_cc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/third_party/winuwp_compat/winuwp_compat_wrap_main_utf8_cc.cc -------------------------------------------------------------------------------- /third_party/winuwp_compat/winuwp_compat_wrap_main_utf8_cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/third_party/winuwp_compat/winuwp_compat_wrap_main_utf8_cc.h -------------------------------------------------------------------------------- /third_party/winuwp_h264/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/third_party/winuwp_h264/BUILD.gn -------------------------------------------------------------------------------- /third_party/winuwp_h264/H264Decoder/H264Decoder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/third_party/winuwp_h264/H264Decoder/H264Decoder.cc -------------------------------------------------------------------------------- /third_party/winuwp_h264/H264Decoder/H264Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/third_party/winuwp_h264/H264Decoder/H264Decoder.h -------------------------------------------------------------------------------- /third_party/winuwp_h264/H264Encoder/H264Encoder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/third_party/winuwp_h264/H264Encoder/H264Encoder.cc -------------------------------------------------------------------------------- /third_party/winuwp_h264/H264Encoder/H264Encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/third_party/winuwp_h264/H264Encoder/H264Encoder.h -------------------------------------------------------------------------------- /third_party/winuwp_h264/H264Encoder/H264MediaSink.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/third_party/winuwp_h264/H264Encoder/H264MediaSink.cc -------------------------------------------------------------------------------- /third_party/winuwp_h264/H264Encoder/H264MediaSink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/third_party/winuwp_h264/H264Encoder/H264MediaSink.h -------------------------------------------------------------------------------- /third_party/winuwp_h264/H264Encoder/H264StreamSink.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/third_party/winuwp_h264/H264Encoder/H264StreamSink.cc -------------------------------------------------------------------------------- /third_party/winuwp_h264/H264Encoder/H264StreamSink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/third_party/winuwp_h264/H264Encoder/H264StreamSink.h -------------------------------------------------------------------------------- /third_party/winuwp_h264/H264Encoder/IH264EncodingCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/third_party/winuwp_h264/H264Encoder/IH264EncodingCallback.h -------------------------------------------------------------------------------- /third_party/winuwp_h264/Utils/Async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/third_party/winuwp_h264/Utils/Async.h -------------------------------------------------------------------------------- /third_party/winuwp_h264/Utils/CritSec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/third_party/winuwp_h264/Utils/CritSec.h -------------------------------------------------------------------------------- /third_party/winuwp_h264/Utils/OpQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/third_party/winuwp_h264/Utils/OpQueue.h -------------------------------------------------------------------------------- /third_party/winuwp_h264/Utils/SampleAttributeQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/third_party/winuwp_h264/Utils/SampleAttributeQueue.h -------------------------------------------------------------------------------- /third_party/winuwp_h264/Utils/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/third_party/winuwp_h264/Utils/Utils.h -------------------------------------------------------------------------------- /third_party/winuwp_h264/native_handle_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/third_party/winuwp_h264/native_handle_buffer.h -------------------------------------------------------------------------------- /third_party/winuwp_h264/winuwp_h264_factory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/third_party/winuwp_h264/winuwp_h264_factory.cc -------------------------------------------------------------------------------- /third_party/winuwp_h264/winuwp_h264_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrtc-uwp/webrtc-windows/HEAD/third_party/winuwp_h264/winuwp_h264_factory.h --------------------------------------------------------------------------------