├── .github └── workflows │ └── cla.yml ├── .gitignore ├── Content └── Editor │ └── Icons │ ├── MillicastMediaSource_20x.png │ └── MillicastMediaSource_64x.png ├── LICENSE ├── MillicastPublisher.uplugin ├── README.md ├── Resources └── Icon128.png └── Source ├── MillicastPublisher ├── MillicastPublisher.Build.cs ├── Private │ ├── Actors │ │ ├── MillicastCameraActor.cpp │ │ └── MillicastScreenCapturerActor.cpp │ ├── Components │ │ ├── MillicastPublisherComponent.cpp │ │ ├── MillicastScreenCapturerComponent.cpp │ │ ├── MillicastScreenCapturerComponent.h │ │ ├── MillicastViewportCapturerComponent.cpp │ │ └── MillicastViewportCapturerComponent.h │ ├── Media │ │ ├── AudioCapturerBase.cpp │ │ ├── AudioCapturerBase.h │ │ ├── AudioDeviceCapturer.cpp │ │ ├── AudioDeviceCapturer.h │ │ ├── AudioSubmixCapturer.cpp │ │ ├── AudioSubmixCapturer.h │ │ ├── MillicastPublisherSource.cpp │ │ ├── MillicastRenderTargetCanvas.cpp │ │ ├── RenderTargetCapturer.cpp │ │ ├── RenderTargetCapturer.h │ │ ├── SlateWindowVideoCapturer.cpp │ │ ├── SlateWindowVideoCapturer.h │ │ ├── WasapiDeviceCapturer.cpp │ │ └── WasapiDeviceCapturer.h │ ├── MillicastPublisherModule.cpp │ ├── MillicastPublisherPrivate.h │ ├── RHI │ │ ├── CopyTexture.cpp │ │ └── CopyTexture.h │ ├── Subsystems │ │ ├── MillicastAudioDeviceCaptureSubsystem.cpp │ │ ├── MillicastAudioDeviceCaptureSubsystem.h │ │ ├── MillicastPublisherSourceRegistrySubsystem.cpp │ │ ├── MillicastPublisherSourceRegistrySubsystem.h │ │ ├── MillicastPublisherSubsystem.cpp │ │ └── MillicastPublisherSubsystem.h │ ├── Util.h │ └── WebRTC │ │ ├── AVEncoderContext.cpp │ │ ├── AVEncoderContext.h │ │ ├── AudioDeviceModule.cpp │ │ ├── AudioDeviceModule.h │ │ ├── FrameBufferRHI.h │ │ ├── FrameTransformer.cpp │ │ ├── FrameTransformer.h │ │ ├── MillicastTypes.h │ │ ├── MillicastVideoEncoderFactory.cpp │ │ ├── MillicastVideoEncoderFactory.h │ │ ├── PeerConnection.cpp │ │ ├── PeerConnection.h │ │ ├── SessionDescriptionObserver.h │ │ ├── SimulcastEncoderFactory.cpp │ │ ├── SimulcastEncoderFactory.h │ │ ├── SimulcastVideoEncoder.cpp │ │ ├── SimulcastVideoEncoder.h │ │ ├── Stats.cpp │ │ ├── Stats.h │ │ ├── Texture2DVideoSourceAdapter.cpp │ │ ├── Texture2DVideoSourceAdapter.h │ │ ├── VideoEncoderNVENC.cpp │ │ ├── VideoEncoderNVENC.h │ │ ├── VideoEncoderVPX.cpp │ │ ├── VideoEncoderVPX.h │ │ ├── WebRTCInc.h │ │ ├── WebRTCLog.cpp │ │ └── WebRTCLog.h └── Public │ ├── IMillicastPublisherModule.h │ ├── IMillicastSource.h │ ├── Media │ └── MillicastRenderTargetCanvas.h │ ├── MillicastCameraActor.h │ ├── MillicastPublisherComponent.h │ ├── MillicastPublisherSource.h │ ├── MillicastScreenCapturerActor.h │ ├── MillicastWebRTCInc.h │ └── RtcCodecsConstants.h └── MillicastPublisherEditor ├── MillicastPublisherEditor.Build.cs └── Private ├── Factories ├── MillicastPublisherSourceFactoryNew.cpp └── MillicastPublisherSourceFactoryNew.h └── MillicastPublisherEditorModule.cpp /.github/workflows/cla.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/.github/workflows/cla.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Intermediate/ 2 | Binaries/ -------------------------------------------------------------------------------- /Content/Editor/Icons/MillicastMediaSource_20x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Content/Editor/Icons/MillicastMediaSource_20x.png -------------------------------------------------------------------------------- /Content/Editor/Icons/MillicastMediaSource_64x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Content/Editor/Icons/MillicastMediaSource_64x.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /MillicastPublisher.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/MillicastPublisher.uplugin -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /Source/MillicastPublisher/MillicastPublisher.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/MillicastPublisher.Build.cs -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/Actors/MillicastCameraActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/Actors/MillicastCameraActor.cpp -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/Actors/MillicastScreenCapturerActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/Actors/MillicastScreenCapturerActor.cpp -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/Components/MillicastPublisherComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/Components/MillicastPublisherComponent.cpp -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/Components/MillicastScreenCapturerComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/Components/MillicastScreenCapturerComponent.cpp -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/Components/MillicastScreenCapturerComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/Components/MillicastScreenCapturerComponent.h -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/Components/MillicastViewportCapturerComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/Components/MillicastViewportCapturerComponent.cpp -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/Components/MillicastViewportCapturerComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/Components/MillicastViewportCapturerComponent.h -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/Media/AudioCapturerBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/Media/AudioCapturerBase.cpp -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/Media/AudioCapturerBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/Media/AudioCapturerBase.h -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/Media/AudioDeviceCapturer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/Media/AudioDeviceCapturer.cpp -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/Media/AudioDeviceCapturer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/Media/AudioDeviceCapturer.h -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/Media/AudioSubmixCapturer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/Media/AudioSubmixCapturer.cpp -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/Media/AudioSubmixCapturer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/Media/AudioSubmixCapturer.h -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/Media/MillicastPublisherSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/Media/MillicastPublisherSource.cpp -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/Media/MillicastRenderTargetCanvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/Media/MillicastRenderTargetCanvas.cpp -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/Media/RenderTargetCapturer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/Media/RenderTargetCapturer.cpp -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/Media/RenderTargetCapturer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/Media/RenderTargetCapturer.h -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/Media/SlateWindowVideoCapturer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/Media/SlateWindowVideoCapturer.cpp -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/Media/SlateWindowVideoCapturer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/Media/SlateWindowVideoCapturer.h -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/Media/WasapiDeviceCapturer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/Media/WasapiDeviceCapturer.cpp -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/Media/WasapiDeviceCapturer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/Media/WasapiDeviceCapturer.h -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/MillicastPublisherModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/MillicastPublisherModule.cpp -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/MillicastPublisherPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/MillicastPublisherPrivate.h -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/RHI/CopyTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/RHI/CopyTexture.cpp -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/RHI/CopyTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/RHI/CopyTexture.h -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/Subsystems/MillicastAudioDeviceCaptureSubsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/Subsystems/MillicastAudioDeviceCaptureSubsystem.cpp -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/Subsystems/MillicastAudioDeviceCaptureSubsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/Subsystems/MillicastAudioDeviceCaptureSubsystem.h -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/Subsystems/MillicastPublisherSourceRegistrySubsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/Subsystems/MillicastPublisherSourceRegistrySubsystem.cpp -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/Subsystems/MillicastPublisherSourceRegistrySubsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/Subsystems/MillicastPublisherSourceRegistrySubsystem.h -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/Subsystems/MillicastPublisherSubsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/Subsystems/MillicastPublisherSubsystem.cpp -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/Subsystems/MillicastPublisherSubsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/Subsystems/MillicastPublisherSubsystem.h -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/Util.h -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/WebRTC/AVEncoderContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/WebRTC/AVEncoderContext.cpp -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/WebRTC/AVEncoderContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/WebRTC/AVEncoderContext.h -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/WebRTC/AudioDeviceModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/WebRTC/AudioDeviceModule.cpp -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/WebRTC/AudioDeviceModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/WebRTC/AudioDeviceModule.h -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/WebRTC/FrameBufferRHI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/WebRTC/FrameBufferRHI.h -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/WebRTC/FrameTransformer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/WebRTC/FrameTransformer.cpp -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/WebRTC/FrameTransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/WebRTC/FrameTransformer.h -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/WebRTC/MillicastTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/WebRTC/MillicastTypes.h -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/WebRTC/MillicastVideoEncoderFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/WebRTC/MillicastVideoEncoderFactory.cpp -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/WebRTC/MillicastVideoEncoderFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/WebRTC/MillicastVideoEncoderFactory.h -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/WebRTC/PeerConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/WebRTC/PeerConnection.cpp -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/WebRTC/PeerConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/WebRTC/PeerConnection.h -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/WebRTC/SessionDescriptionObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/WebRTC/SessionDescriptionObserver.h -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/WebRTC/SimulcastEncoderFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/WebRTC/SimulcastEncoderFactory.cpp -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/WebRTC/SimulcastEncoderFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/WebRTC/SimulcastEncoderFactory.h -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/WebRTC/SimulcastVideoEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/WebRTC/SimulcastVideoEncoder.cpp -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/WebRTC/SimulcastVideoEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/WebRTC/SimulcastVideoEncoder.h -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/WebRTC/Stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/WebRTC/Stats.cpp -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/WebRTC/Stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/WebRTC/Stats.h -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/WebRTC/Texture2DVideoSourceAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/WebRTC/Texture2DVideoSourceAdapter.cpp -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/WebRTC/Texture2DVideoSourceAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/WebRTC/Texture2DVideoSourceAdapter.h -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/WebRTC/VideoEncoderNVENC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/WebRTC/VideoEncoderNVENC.cpp -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/WebRTC/VideoEncoderNVENC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/WebRTC/VideoEncoderNVENC.h -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/WebRTC/VideoEncoderVPX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/WebRTC/VideoEncoderVPX.cpp -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/WebRTC/VideoEncoderVPX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/WebRTC/VideoEncoderVPX.h -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/WebRTC/WebRTCInc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/WebRTC/WebRTCInc.h -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/WebRTC/WebRTCLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/WebRTC/WebRTCLog.cpp -------------------------------------------------------------------------------- /Source/MillicastPublisher/Private/WebRTC/WebRTCLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Private/WebRTC/WebRTCLog.h -------------------------------------------------------------------------------- /Source/MillicastPublisher/Public/IMillicastPublisherModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Public/IMillicastPublisherModule.h -------------------------------------------------------------------------------- /Source/MillicastPublisher/Public/IMillicastSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Public/IMillicastSource.h -------------------------------------------------------------------------------- /Source/MillicastPublisher/Public/Media/MillicastRenderTargetCanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Public/Media/MillicastRenderTargetCanvas.h -------------------------------------------------------------------------------- /Source/MillicastPublisher/Public/MillicastCameraActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Public/MillicastCameraActor.h -------------------------------------------------------------------------------- /Source/MillicastPublisher/Public/MillicastPublisherComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Public/MillicastPublisherComponent.h -------------------------------------------------------------------------------- /Source/MillicastPublisher/Public/MillicastPublisherSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Public/MillicastPublisherSource.h -------------------------------------------------------------------------------- /Source/MillicastPublisher/Public/MillicastScreenCapturerActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Public/MillicastScreenCapturerActor.h -------------------------------------------------------------------------------- /Source/MillicastPublisher/Public/MillicastWebRTCInc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Public/MillicastWebRTCInc.h -------------------------------------------------------------------------------- /Source/MillicastPublisher/Public/RtcCodecsConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisher/Public/RtcCodecsConstants.h -------------------------------------------------------------------------------- /Source/MillicastPublisherEditor/MillicastPublisherEditor.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisherEditor/MillicastPublisherEditor.Build.cs -------------------------------------------------------------------------------- /Source/MillicastPublisherEditor/Private/Factories/MillicastPublisherSourceFactoryNew.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisherEditor/Private/Factories/MillicastPublisherSourceFactoryNew.cpp -------------------------------------------------------------------------------- /Source/MillicastPublisherEditor/Private/Factories/MillicastPublisherSourceFactoryNew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisherEditor/Private/Factories/MillicastPublisherSourceFactoryNew.h -------------------------------------------------------------------------------- /Source/MillicastPublisherEditor/Private/MillicastPublisherEditorModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/millicast/millicast-publisher-unreal-engine-plugin/HEAD/Source/MillicastPublisherEditor/Private/MillicastPublisherEditorModule.cpp --------------------------------------------------------------------------------