├── .editorconfig ├── .gitattributes ├── .gitignore ├── Directory.Build.props ├── KlearTouch.MediaPlayer.sln ├── KlearTouchApp.MediaPlayer.Samples.sln ├── LICENSE.txt ├── Logo.png ├── README.md ├── samples └── KlearTouchApp.MediaPlayer.WinUI.Xaml │ ├── App.xaml │ ├── App.xaml.cs │ ├── 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 │ ├── KlearTouchApp.MediaPlayer.WinUI.NuGet.csproj │ ├── KlearTouchApp.MediaPlayer.WinUI.Xaml.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ └── launchSettings.json │ └── app.manifest └── src ├── KlearTouch.MediaPlayer.Uwp ├── KlearTouch.MediaPlayer.Uwp.csproj └── Properties │ ├── AssemblyInfo.cs │ └── KlearTouch.MediaPlayer.Uwp.rd.xml ├── KlearTouch.MediaPlayer.WinUI ├── Controls │ ├── IMediaPlayerElement.cs │ ├── IMediaTransportControls.cs │ ├── MediaPlayerElement.cs │ ├── MediaTransportControls.cs │ └── SwapChainSurface.cs ├── Core │ └── MediaSource.cs ├── DirectN │ ├── Extensions │ │ ├── ComError.cs │ │ ├── ComObject.cs │ │ ├── D3D11Functions.cs │ │ ├── HRESULT.cs │ │ ├── HRESULTS.cs │ │ ├── IDXGIDeviceExtensions.cs │ │ ├── IDXGIFactoryExtensions.cs │ │ ├── IDXGIObjectExtensions.cs │ │ └── IDXGISwapChainExtensions.cs │ ├── Generated │ │ ├── Constants.cs │ │ ├── D3D11_CREATE_DEVICE_FLAG.cs │ │ ├── D3D_DRIVER_TYPE.cs │ │ ├── D3D_FEATURE_LEVEL.cs │ │ ├── DXGI_ALPHA_MODE.cs │ │ ├── DXGI_FORMAT.cs │ │ ├── DXGI_SAMPLE_DESC.cs │ │ ├── DXGI_SCALING.cs │ │ ├── DXGI_SWAP_CHAIN_DESC1.cs │ │ ├── DXGI_SWAP_EFFECT.cs │ │ ├── ID3D11Device.cs │ │ ├── ID3D11Multithread.cs │ │ ├── IDXGIAdapter.cs │ │ ├── IDXGIDevice.cs │ │ ├── IDXGIFactory2.cs │ │ ├── IDXGIObject.cs │ │ ├── IDXGISurface.cs │ │ ├── IDXGISwapChain.cs │ │ ├── IDXGISwapChain1.cs │ │ ├── IDXGISwapChain2.cs │ │ └── ISwapChainPanelNative.cs │ ├── LICENSE │ └── README.md ├── KlearTouch.MediaPlayer.WinUI.csproj └── Playback │ ├── IMediaPlaybackSession.cs │ ├── IMediaPlaybackSource.cs │ ├── IMediaPlayer.cs │ ├── MediaPlaybackSession.cs │ ├── MediaPlayer.cs │ └── MediaPlayerFailedEventArgs.cs ├── KlearTouchApp.MediaPlayer.Uwp ├── App.xaml ├── App.xaml.cs ├── 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 ├── KlearTouchApp.MediaPlayer.Uwp.csproj ├── MainPage.xaml ├── MainPage.xaml.cs ├── Package.appxmanifest └── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml └── KlearTouchApp.MediaPlayer.WinUI ├── App.xaml ├── App.xaml.cs ├── 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 ├── KlearTouchApp.MediaPlayer.WinUI.csproj ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Package.appxmanifest ├── Properties └── launchSettings.json └── app.manifest /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/.gitignore -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /KlearTouch.MediaPlayer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/KlearTouch.MediaPlayer.sln -------------------------------------------------------------------------------- /KlearTouchApp.MediaPlayer.Samples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/KlearTouchApp.MediaPlayer.Samples.sln -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/Logo.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/README.md -------------------------------------------------------------------------------- /samples/KlearTouchApp.MediaPlayer.WinUI.Xaml/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/samples/KlearTouchApp.MediaPlayer.WinUI.Xaml/App.xaml -------------------------------------------------------------------------------- /samples/KlearTouchApp.MediaPlayer.WinUI.Xaml/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/samples/KlearTouchApp.MediaPlayer.WinUI.Xaml/App.xaml.cs -------------------------------------------------------------------------------- /samples/KlearTouchApp.MediaPlayer.WinUI.Xaml/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/samples/KlearTouchApp.MediaPlayer.WinUI.Xaml/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/KlearTouchApp.MediaPlayer.WinUI.Xaml/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/samples/KlearTouchApp.MediaPlayer.WinUI.Xaml/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/KlearTouchApp.MediaPlayer.WinUI.Xaml/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/samples/KlearTouchApp.MediaPlayer.WinUI.Xaml/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/KlearTouchApp.MediaPlayer.WinUI.Xaml/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/samples/KlearTouchApp.MediaPlayer.WinUI.Xaml/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/KlearTouchApp.MediaPlayer.WinUI.Xaml/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/samples/KlearTouchApp.MediaPlayer.WinUI.Xaml/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/KlearTouchApp.MediaPlayer.WinUI.Xaml/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/samples/KlearTouchApp.MediaPlayer.WinUI.Xaml/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/KlearTouchApp.MediaPlayer.WinUI.Xaml/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/samples/KlearTouchApp.MediaPlayer.WinUI.Xaml/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/KlearTouchApp.MediaPlayer.WinUI.Xaml/KlearTouchApp.MediaPlayer.WinUI.NuGet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/samples/KlearTouchApp.MediaPlayer.WinUI.Xaml/KlearTouchApp.MediaPlayer.WinUI.NuGet.csproj -------------------------------------------------------------------------------- /samples/KlearTouchApp.MediaPlayer.WinUI.Xaml/KlearTouchApp.MediaPlayer.WinUI.Xaml.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/samples/KlearTouchApp.MediaPlayer.WinUI.Xaml/KlearTouchApp.MediaPlayer.WinUI.Xaml.csproj -------------------------------------------------------------------------------- /samples/KlearTouchApp.MediaPlayer.WinUI.Xaml/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/samples/KlearTouchApp.MediaPlayer.WinUI.Xaml/MainWindow.xaml -------------------------------------------------------------------------------- /samples/KlearTouchApp.MediaPlayer.WinUI.Xaml/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/samples/KlearTouchApp.MediaPlayer.WinUI.Xaml/MainWindow.xaml.cs -------------------------------------------------------------------------------- /samples/KlearTouchApp.MediaPlayer.WinUI.Xaml/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/samples/KlearTouchApp.MediaPlayer.WinUI.Xaml/Package.appxmanifest -------------------------------------------------------------------------------- /samples/KlearTouchApp.MediaPlayer.WinUI.Xaml/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/samples/KlearTouchApp.MediaPlayer.WinUI.Xaml/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/KlearTouchApp.MediaPlayer.WinUI.Xaml/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/samples/KlearTouchApp.MediaPlayer.WinUI.Xaml/app.manifest -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.Uwp/KlearTouch.MediaPlayer.Uwp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.Uwp/KlearTouch.MediaPlayer.Uwp.csproj -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.Uwp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.Uwp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.Uwp/Properties/KlearTouch.MediaPlayer.Uwp.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.Uwp/Properties/KlearTouch.MediaPlayer.Uwp.rd.xml -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/Controls/IMediaPlayerElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/Controls/IMediaPlayerElement.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/Controls/IMediaTransportControls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/Controls/IMediaTransportControls.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/Controls/MediaPlayerElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/Controls/MediaPlayerElement.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/Controls/MediaTransportControls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/Controls/MediaTransportControls.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/Controls/SwapChainSurface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/Controls/SwapChainSurface.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/Core/MediaSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/Core/MediaSource.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/DirectN/Extensions/ComError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/DirectN/Extensions/ComError.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/DirectN/Extensions/ComObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/DirectN/Extensions/ComObject.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/DirectN/Extensions/D3D11Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/DirectN/Extensions/D3D11Functions.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/DirectN/Extensions/HRESULT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/DirectN/Extensions/HRESULT.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/DirectN/Extensions/HRESULTS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/DirectN/Extensions/HRESULTS.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/DirectN/Extensions/IDXGIDeviceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/DirectN/Extensions/IDXGIDeviceExtensions.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/DirectN/Extensions/IDXGIFactoryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/DirectN/Extensions/IDXGIFactoryExtensions.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/DirectN/Extensions/IDXGIObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/DirectN/Extensions/IDXGIObjectExtensions.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/DirectN/Extensions/IDXGISwapChainExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/DirectN/Extensions/IDXGISwapChainExtensions.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/Constants.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/D3D11_CREATE_DEVICE_FLAG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/D3D11_CREATE_DEVICE_FLAG.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/D3D_DRIVER_TYPE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/D3D_DRIVER_TYPE.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/D3D_FEATURE_LEVEL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/D3D_FEATURE_LEVEL.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/DXGI_ALPHA_MODE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/DXGI_ALPHA_MODE.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/DXGI_FORMAT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/DXGI_FORMAT.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/DXGI_SAMPLE_DESC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/DXGI_SAMPLE_DESC.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/DXGI_SCALING.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/DXGI_SCALING.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/DXGI_SWAP_CHAIN_DESC1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/DXGI_SWAP_CHAIN_DESC1.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/DXGI_SWAP_EFFECT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/DXGI_SWAP_EFFECT.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/ID3D11Device.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/ID3D11Device.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/ID3D11Multithread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/ID3D11Multithread.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/IDXGIAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/IDXGIAdapter.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/IDXGIDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/IDXGIDevice.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/IDXGIFactory2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/IDXGIFactory2.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/IDXGIObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/IDXGIObject.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/IDXGISurface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/IDXGISurface.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/IDXGISwapChain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/IDXGISwapChain.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/IDXGISwapChain1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/IDXGISwapChain1.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/IDXGISwapChain2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/IDXGISwapChain2.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/ISwapChainPanelNative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/DirectN/Generated/ISwapChainPanelNative.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/DirectN/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/DirectN/LICENSE -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/DirectN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/DirectN/README.md -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/KlearTouch.MediaPlayer.WinUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/KlearTouch.MediaPlayer.WinUI.csproj -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/Playback/IMediaPlaybackSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/Playback/IMediaPlaybackSession.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/Playback/IMediaPlaybackSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/Playback/IMediaPlaybackSource.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/Playback/IMediaPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/Playback/IMediaPlayer.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/Playback/MediaPlaybackSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/Playback/MediaPlaybackSession.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/Playback/MediaPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/Playback/MediaPlayer.cs -------------------------------------------------------------------------------- /src/KlearTouch.MediaPlayer.WinUI/Playback/MediaPlayerFailedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouch.MediaPlayer.WinUI/Playback/MediaPlayerFailedEventArgs.cs -------------------------------------------------------------------------------- /src/KlearTouchApp.MediaPlayer.Uwp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouchApp.MediaPlayer.Uwp/App.xaml -------------------------------------------------------------------------------- /src/KlearTouchApp.MediaPlayer.Uwp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouchApp.MediaPlayer.Uwp/App.xaml.cs -------------------------------------------------------------------------------- /src/KlearTouchApp.MediaPlayer.Uwp/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouchApp.MediaPlayer.Uwp/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /src/KlearTouchApp.MediaPlayer.Uwp/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouchApp.MediaPlayer.Uwp/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /src/KlearTouchApp.MediaPlayer.Uwp/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouchApp.MediaPlayer.Uwp/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/KlearTouchApp.MediaPlayer.Uwp/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouchApp.MediaPlayer.Uwp/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /src/KlearTouchApp.MediaPlayer.Uwp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouchApp.MediaPlayer.Uwp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /src/KlearTouchApp.MediaPlayer.Uwp/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouchApp.MediaPlayer.Uwp/Assets/StoreLogo.png -------------------------------------------------------------------------------- /src/KlearTouchApp.MediaPlayer.Uwp/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouchApp.MediaPlayer.Uwp/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/KlearTouchApp.MediaPlayer.Uwp/KlearTouchApp.MediaPlayer.Uwp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouchApp.MediaPlayer.Uwp/KlearTouchApp.MediaPlayer.Uwp.csproj -------------------------------------------------------------------------------- /src/KlearTouchApp.MediaPlayer.Uwp/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouchApp.MediaPlayer.Uwp/MainPage.xaml -------------------------------------------------------------------------------- /src/KlearTouchApp.MediaPlayer.Uwp/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouchApp.MediaPlayer.Uwp/MainPage.xaml.cs -------------------------------------------------------------------------------- /src/KlearTouchApp.MediaPlayer.Uwp/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouchApp.MediaPlayer.Uwp/Package.appxmanifest -------------------------------------------------------------------------------- /src/KlearTouchApp.MediaPlayer.Uwp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouchApp.MediaPlayer.Uwp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/KlearTouchApp.MediaPlayer.Uwp/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouchApp.MediaPlayer.Uwp/Properties/Default.rd.xml -------------------------------------------------------------------------------- /src/KlearTouchApp.MediaPlayer.WinUI/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouchApp.MediaPlayer.WinUI/App.xaml -------------------------------------------------------------------------------- /src/KlearTouchApp.MediaPlayer.WinUI/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouchApp.MediaPlayer.WinUI/App.xaml.cs -------------------------------------------------------------------------------- /src/KlearTouchApp.MediaPlayer.WinUI/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouchApp.MediaPlayer.WinUI/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /src/KlearTouchApp.MediaPlayer.WinUI/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouchApp.MediaPlayer.WinUI/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /src/KlearTouchApp.MediaPlayer.WinUI/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouchApp.MediaPlayer.WinUI/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/KlearTouchApp.MediaPlayer.WinUI/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouchApp.MediaPlayer.WinUI/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /src/KlearTouchApp.MediaPlayer.WinUI/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouchApp.MediaPlayer.WinUI/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /src/KlearTouchApp.MediaPlayer.WinUI/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouchApp.MediaPlayer.WinUI/Assets/StoreLogo.png -------------------------------------------------------------------------------- /src/KlearTouchApp.MediaPlayer.WinUI/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouchApp.MediaPlayer.WinUI/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/KlearTouchApp.MediaPlayer.WinUI/KlearTouchApp.MediaPlayer.WinUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouchApp.MediaPlayer.WinUI/KlearTouchApp.MediaPlayer.WinUI.csproj -------------------------------------------------------------------------------- /src/KlearTouchApp.MediaPlayer.WinUI/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouchApp.MediaPlayer.WinUI/MainWindow.xaml -------------------------------------------------------------------------------- /src/KlearTouchApp.MediaPlayer.WinUI/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouchApp.MediaPlayer.WinUI/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/KlearTouchApp.MediaPlayer.WinUI/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouchApp.MediaPlayer.WinUI/Package.appxmanifest -------------------------------------------------------------------------------- /src/KlearTouchApp.MediaPlayer.WinUI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouchApp.MediaPlayer.WinUI/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/KlearTouchApp.MediaPlayer.WinUI/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlearTouch/KlearTouch.MediaPlayer/HEAD/src/KlearTouchApp.MediaPlayer.WinUI/app.manifest --------------------------------------------------------------------------------