├── .gitignore ├── .gitmodules ├── AviSynthCUDAFilters.sln ├── AvsCUDA ├── AvsCUDA.cpp ├── AvsCUDA.h ├── AvsCUDA.vcxproj ├── AvsCUDA.vcxproj.filters ├── core │ └── internal.h └── filters │ ├── ConditionalFunctions.cu │ ├── Convert.cu │ ├── Filters.cu │ ├── SupportFilters.cpp │ ├── convert_avx.cpp │ ├── convert_avx.h │ ├── convert_avx2.cpp │ ├── convert_avx2.h │ ├── focus.cpp │ ├── focus.h │ ├── focus_avx2.cpp │ ├── merge.cu │ ├── merge.h │ ├── merge_avx2.cpp │ ├── merge_avx2.h │ ├── resample.cu │ ├── resample.h │ ├── resample_avx2.cpp │ ├── resample_avx2.h │ ├── resample_functions.cpp │ ├── resample_functions.h │ ├── turn.cpp │ └── turn.h ├── Common.props ├── GRunT ├── GRunT.cpp ├── GRunT.vcxproj └── GRunT.vcxproj.filters ├── KDebugTool ├── KDebugTool.cpp ├── KDebugTool.vcxproj └── KDebugTool.vcxproj.filters ├── KFM ├── CombingAnalyze.cu ├── Deblock.cu ├── DeblockAVX.cpp ├── DecombeUCF.cu ├── KDeband.cu ├── KFM.cpp ├── KFM.h ├── KFM.vcxproj ├── KFM.vcxproj.filters ├── KFMFilterBase.cu ├── KFMFilterBase.cuh ├── KFMKernel.cu ├── MergeStatic.cu ├── SIMDSupport.hpp ├── TextOut.cu └── TextOut.h ├── KTGMC ├── CudaDebug.h ├── CudaKernelBase.h ├── GenericImageFunctions.cuh ├── KTGMC.vcxproj ├── KTGMC.vcxproj.filters ├── KTGMC.vcxproj.user ├── Kernel.cu ├── MV.cpp ├── MVKernel.cu ├── MVKernel.h ├── Misc.cpp └── Misc.h ├── KTGMCTest ├── AvsCUDATest.cpp ├── KFMTest.cpp ├── KTGMCTest.cpp ├── KTGMCTest.vcxproj ├── KTGMCTest.vcxproj.filters ├── KTGMCTest.vcxproj.user ├── MaskToolsTest.cpp ├── MiscTest.cpp ├── TestCommons.cpp ├── TestCommons.h └── TestMain.cpp ├── KUtil ├── KUtil.cpp ├── KUtil.vcxproj └── KUtil.vcxproj.filters ├── README.md ├── TestScripts ├── KFMDeint.avsi ├── KSMDegrain.avsi ├── KTGMC.avsi ├── KTGMC_KeepOnlyBobShimmerFixes.avs ├── QTGMC_BinomialSoften.avs ├── QTGMC_Bob.avs ├── QTGMC_KeepOnlyBobShimmerFixes.avs └── QTGMC_Ref.avsi ├── avs_props.txt ├── common ├── CommonFunctions.h ├── Copy.cu ├── Copy.h ├── DebugWriter.cpp ├── DebugWriter.h ├── DeviceLocalData.cpp ├── DeviceLocalData.h ├── EnvCommon.h ├── Frame.h ├── KMV.h ├── ReduceKernel.cuh └── VectorFunctions.cuh ├── include ├── avisynth.h ├── avs │ ├── alignment.h │ ├── capi.h │ ├── config.h │ ├── cpuid.h │ ├── minmax.h │ ├── types.h │ └── win.h └── gtest │ ├── gtest-death-test.h │ ├── gtest-message.h │ ├── gtest-param-test.h │ ├── gtest-param-test.h.pump │ ├── gtest-printers.h │ ├── gtest-spi.h │ ├── gtest-test-part.h │ ├── gtest-typed-test.h │ ├── gtest.h │ ├── gtest_pred_impl.h │ ├── gtest_prod.h │ └── internal │ ├── custom │ ├── gtest-port.h │ ├── gtest-printers.h │ └── gtest.h │ ├── gtest-death-test-internal.h │ ├── gtest-filepath.h │ ├── gtest-internal.h │ ├── gtest-linked_ptr.h │ ├── gtest-param-util-generated.h │ ├── gtest-param-util-generated.h.pump │ ├── gtest-param-util.h │ ├── gtest-port-arch.h │ ├── gtest-port.h │ ├── gtest-string.h │ ├── gtest-tuple.h │ ├── gtest-tuple.h.pump │ ├── gtest-type-util.h │ └── gtest-type-util.h.pump └── lib ├── x64 ├── gtest.lib ├── gtest.pdb ├── gtestd.lib └── gtestd.pdb └── x86 ├── gtest.lib ├── gtest.pdb ├── gtestd.idb ├── gtestd.lib └── gtestd.pdb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/.gitmodules -------------------------------------------------------------------------------- /AviSynthCUDAFilters.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/AviSynthCUDAFilters.sln -------------------------------------------------------------------------------- /AvsCUDA/AvsCUDA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/AvsCUDA/AvsCUDA.cpp -------------------------------------------------------------------------------- /AvsCUDA/AvsCUDA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/AvsCUDA/AvsCUDA.h -------------------------------------------------------------------------------- /AvsCUDA/AvsCUDA.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/AvsCUDA/AvsCUDA.vcxproj -------------------------------------------------------------------------------- /AvsCUDA/AvsCUDA.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/AvsCUDA/AvsCUDA.vcxproj.filters -------------------------------------------------------------------------------- /AvsCUDA/core/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/AvsCUDA/core/internal.h -------------------------------------------------------------------------------- /AvsCUDA/filters/ConditionalFunctions.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/AvsCUDA/filters/ConditionalFunctions.cu -------------------------------------------------------------------------------- /AvsCUDA/filters/Convert.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/AvsCUDA/filters/Convert.cu -------------------------------------------------------------------------------- /AvsCUDA/filters/Filters.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/AvsCUDA/filters/Filters.cu -------------------------------------------------------------------------------- /AvsCUDA/filters/SupportFilters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/AvsCUDA/filters/SupportFilters.cpp -------------------------------------------------------------------------------- /AvsCUDA/filters/convert_avx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/AvsCUDA/filters/convert_avx.cpp -------------------------------------------------------------------------------- /AvsCUDA/filters/convert_avx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/AvsCUDA/filters/convert_avx.h -------------------------------------------------------------------------------- /AvsCUDA/filters/convert_avx2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/AvsCUDA/filters/convert_avx2.cpp -------------------------------------------------------------------------------- /AvsCUDA/filters/convert_avx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/AvsCUDA/filters/convert_avx2.h -------------------------------------------------------------------------------- /AvsCUDA/filters/focus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/AvsCUDA/filters/focus.cpp -------------------------------------------------------------------------------- /AvsCUDA/filters/focus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/AvsCUDA/filters/focus.h -------------------------------------------------------------------------------- /AvsCUDA/filters/focus_avx2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/AvsCUDA/filters/focus_avx2.cpp -------------------------------------------------------------------------------- /AvsCUDA/filters/merge.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/AvsCUDA/filters/merge.cu -------------------------------------------------------------------------------- /AvsCUDA/filters/merge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/AvsCUDA/filters/merge.h -------------------------------------------------------------------------------- /AvsCUDA/filters/merge_avx2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/AvsCUDA/filters/merge_avx2.cpp -------------------------------------------------------------------------------- /AvsCUDA/filters/merge_avx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/AvsCUDA/filters/merge_avx2.h -------------------------------------------------------------------------------- /AvsCUDA/filters/resample.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/AvsCUDA/filters/resample.cu -------------------------------------------------------------------------------- /AvsCUDA/filters/resample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/AvsCUDA/filters/resample.h -------------------------------------------------------------------------------- /AvsCUDA/filters/resample_avx2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/AvsCUDA/filters/resample_avx2.cpp -------------------------------------------------------------------------------- /AvsCUDA/filters/resample_avx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/AvsCUDA/filters/resample_avx2.h -------------------------------------------------------------------------------- /AvsCUDA/filters/resample_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/AvsCUDA/filters/resample_functions.cpp -------------------------------------------------------------------------------- /AvsCUDA/filters/resample_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/AvsCUDA/filters/resample_functions.h -------------------------------------------------------------------------------- /AvsCUDA/filters/turn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/AvsCUDA/filters/turn.cpp -------------------------------------------------------------------------------- /AvsCUDA/filters/turn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/AvsCUDA/filters/turn.h -------------------------------------------------------------------------------- /Common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/Common.props -------------------------------------------------------------------------------- /GRunT/GRunT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/GRunT/GRunT.cpp -------------------------------------------------------------------------------- /GRunT/GRunT.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/GRunT/GRunT.vcxproj -------------------------------------------------------------------------------- /GRunT/GRunT.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/GRunT/GRunT.vcxproj.filters -------------------------------------------------------------------------------- /KDebugTool/KDebugTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KDebugTool/KDebugTool.cpp -------------------------------------------------------------------------------- /KDebugTool/KDebugTool.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KDebugTool/KDebugTool.vcxproj -------------------------------------------------------------------------------- /KDebugTool/KDebugTool.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KDebugTool/KDebugTool.vcxproj.filters -------------------------------------------------------------------------------- /KFM/CombingAnalyze.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KFM/CombingAnalyze.cu -------------------------------------------------------------------------------- /KFM/Deblock.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KFM/Deblock.cu -------------------------------------------------------------------------------- /KFM/DeblockAVX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KFM/DeblockAVX.cpp -------------------------------------------------------------------------------- /KFM/DecombeUCF.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KFM/DecombeUCF.cu -------------------------------------------------------------------------------- /KFM/KDeband.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KFM/KDeband.cu -------------------------------------------------------------------------------- /KFM/KFM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KFM/KFM.cpp -------------------------------------------------------------------------------- /KFM/KFM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KFM/KFM.h -------------------------------------------------------------------------------- /KFM/KFM.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KFM/KFM.vcxproj -------------------------------------------------------------------------------- /KFM/KFM.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KFM/KFM.vcxproj.filters -------------------------------------------------------------------------------- /KFM/KFMFilterBase.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KFM/KFMFilterBase.cu -------------------------------------------------------------------------------- /KFM/KFMFilterBase.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KFM/KFMFilterBase.cuh -------------------------------------------------------------------------------- /KFM/KFMKernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KFM/KFMKernel.cu -------------------------------------------------------------------------------- /KFM/MergeStatic.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KFM/MergeStatic.cu -------------------------------------------------------------------------------- /KFM/SIMDSupport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KFM/SIMDSupport.hpp -------------------------------------------------------------------------------- /KFM/TextOut.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KFM/TextOut.cu -------------------------------------------------------------------------------- /KFM/TextOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KFM/TextOut.h -------------------------------------------------------------------------------- /KTGMC/CudaDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KTGMC/CudaDebug.h -------------------------------------------------------------------------------- /KTGMC/CudaKernelBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KTGMC/CudaKernelBase.h -------------------------------------------------------------------------------- /KTGMC/GenericImageFunctions.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KTGMC/GenericImageFunctions.cuh -------------------------------------------------------------------------------- /KTGMC/KTGMC.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KTGMC/KTGMC.vcxproj -------------------------------------------------------------------------------- /KTGMC/KTGMC.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KTGMC/KTGMC.vcxproj.filters -------------------------------------------------------------------------------- /KTGMC/KTGMC.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KTGMC/KTGMC.vcxproj.user -------------------------------------------------------------------------------- /KTGMC/Kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KTGMC/Kernel.cu -------------------------------------------------------------------------------- /KTGMC/MV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KTGMC/MV.cpp -------------------------------------------------------------------------------- /KTGMC/MVKernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KTGMC/MVKernel.cu -------------------------------------------------------------------------------- /KTGMC/MVKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KTGMC/MVKernel.h -------------------------------------------------------------------------------- /KTGMC/Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KTGMC/Misc.cpp -------------------------------------------------------------------------------- /KTGMC/Misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KTGMC/Misc.h -------------------------------------------------------------------------------- /KTGMCTest/AvsCUDATest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KTGMCTest/AvsCUDATest.cpp -------------------------------------------------------------------------------- /KTGMCTest/KFMTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KTGMCTest/KFMTest.cpp -------------------------------------------------------------------------------- /KTGMCTest/KTGMCTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KTGMCTest/KTGMCTest.cpp -------------------------------------------------------------------------------- /KTGMCTest/KTGMCTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KTGMCTest/KTGMCTest.vcxproj -------------------------------------------------------------------------------- /KTGMCTest/KTGMCTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KTGMCTest/KTGMCTest.vcxproj.filters -------------------------------------------------------------------------------- /KTGMCTest/KTGMCTest.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KTGMCTest/KTGMCTest.vcxproj.user -------------------------------------------------------------------------------- /KTGMCTest/MaskToolsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KTGMCTest/MaskToolsTest.cpp -------------------------------------------------------------------------------- /KTGMCTest/MiscTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KTGMCTest/MiscTest.cpp -------------------------------------------------------------------------------- /KTGMCTest/TestCommons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KTGMCTest/TestCommons.cpp -------------------------------------------------------------------------------- /KTGMCTest/TestCommons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KTGMCTest/TestCommons.h -------------------------------------------------------------------------------- /KTGMCTest/TestMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KTGMCTest/TestMain.cpp -------------------------------------------------------------------------------- /KUtil/KUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KUtil/KUtil.cpp -------------------------------------------------------------------------------- /KUtil/KUtil.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KUtil/KUtil.vcxproj -------------------------------------------------------------------------------- /KUtil/KUtil.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/KUtil/KUtil.vcxproj.filters -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/README.md -------------------------------------------------------------------------------- /TestScripts/KFMDeint.avsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/TestScripts/KFMDeint.avsi -------------------------------------------------------------------------------- /TestScripts/KSMDegrain.avsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/TestScripts/KSMDegrain.avsi -------------------------------------------------------------------------------- /TestScripts/KTGMC.avsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/TestScripts/KTGMC.avsi -------------------------------------------------------------------------------- /TestScripts/KTGMC_KeepOnlyBobShimmerFixes.avs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/TestScripts/KTGMC_KeepOnlyBobShimmerFixes.avs -------------------------------------------------------------------------------- /TestScripts/QTGMC_BinomialSoften.avs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/TestScripts/QTGMC_BinomialSoften.avs -------------------------------------------------------------------------------- /TestScripts/QTGMC_Bob.avs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/TestScripts/QTGMC_Bob.avs -------------------------------------------------------------------------------- /TestScripts/QTGMC_KeepOnlyBobShimmerFixes.avs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/TestScripts/QTGMC_KeepOnlyBobShimmerFixes.avs -------------------------------------------------------------------------------- /TestScripts/QTGMC_Ref.avsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/TestScripts/QTGMC_Ref.avsi -------------------------------------------------------------------------------- /avs_props.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/avs_props.txt -------------------------------------------------------------------------------- /common/CommonFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/common/CommonFunctions.h -------------------------------------------------------------------------------- /common/Copy.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/common/Copy.cu -------------------------------------------------------------------------------- /common/Copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/common/Copy.h -------------------------------------------------------------------------------- /common/DebugWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/common/DebugWriter.cpp -------------------------------------------------------------------------------- /common/DebugWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/common/DebugWriter.h -------------------------------------------------------------------------------- /common/DeviceLocalData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/common/DeviceLocalData.cpp -------------------------------------------------------------------------------- /common/DeviceLocalData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/common/DeviceLocalData.h -------------------------------------------------------------------------------- /common/EnvCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/common/EnvCommon.h -------------------------------------------------------------------------------- /common/Frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/common/Frame.h -------------------------------------------------------------------------------- /common/KMV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/common/KMV.h -------------------------------------------------------------------------------- /common/ReduceKernel.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/common/ReduceKernel.cuh -------------------------------------------------------------------------------- /common/VectorFunctions.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/common/VectorFunctions.cuh -------------------------------------------------------------------------------- /include/avisynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/include/avisynth.h -------------------------------------------------------------------------------- /include/avs/alignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/include/avs/alignment.h -------------------------------------------------------------------------------- /include/avs/capi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/include/avs/capi.h -------------------------------------------------------------------------------- /include/avs/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/include/avs/config.h -------------------------------------------------------------------------------- /include/avs/cpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/include/avs/cpuid.h -------------------------------------------------------------------------------- /include/avs/minmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/include/avs/minmax.h -------------------------------------------------------------------------------- /include/avs/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/include/avs/types.h -------------------------------------------------------------------------------- /include/avs/win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/include/avs/win.h -------------------------------------------------------------------------------- /include/gtest/gtest-death-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/include/gtest/gtest-death-test.h -------------------------------------------------------------------------------- /include/gtest/gtest-message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/include/gtest/gtest-message.h -------------------------------------------------------------------------------- /include/gtest/gtest-param-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/include/gtest/gtest-param-test.h -------------------------------------------------------------------------------- /include/gtest/gtest-param-test.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/include/gtest/gtest-param-test.h.pump -------------------------------------------------------------------------------- /include/gtest/gtest-printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/include/gtest/gtest-printers.h -------------------------------------------------------------------------------- /include/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/include/gtest/gtest-spi.h -------------------------------------------------------------------------------- /include/gtest/gtest-test-part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/include/gtest/gtest-test-part.h -------------------------------------------------------------------------------- /include/gtest/gtest-typed-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/include/gtest/gtest-typed-test.h -------------------------------------------------------------------------------- /include/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/include/gtest/gtest.h -------------------------------------------------------------------------------- /include/gtest/gtest_pred_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/include/gtest/gtest_pred_impl.h -------------------------------------------------------------------------------- /include/gtest/gtest_prod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/include/gtest/gtest_prod.h -------------------------------------------------------------------------------- /include/gtest/internal/custom/gtest-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/include/gtest/internal/custom/gtest-port.h -------------------------------------------------------------------------------- /include/gtest/internal/custom/gtest-printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/include/gtest/internal/custom/gtest-printers.h -------------------------------------------------------------------------------- /include/gtest/internal/custom/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/include/gtest/internal/custom/gtest.h -------------------------------------------------------------------------------- /include/gtest/internal/gtest-death-test-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/include/gtest/internal/gtest-death-test-internal.h -------------------------------------------------------------------------------- /include/gtest/internal/gtest-filepath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/include/gtest/internal/gtest-filepath.h -------------------------------------------------------------------------------- /include/gtest/internal/gtest-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/include/gtest/internal/gtest-internal.h -------------------------------------------------------------------------------- /include/gtest/internal/gtest-linked_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/include/gtest/internal/gtest-linked_ptr.h -------------------------------------------------------------------------------- /include/gtest/internal/gtest-param-util-generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/include/gtest/internal/gtest-param-util-generated.h -------------------------------------------------------------------------------- /include/gtest/internal/gtest-param-util-generated.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/include/gtest/internal/gtest-param-util-generated.h.pump -------------------------------------------------------------------------------- /include/gtest/internal/gtest-param-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/include/gtest/internal/gtest-param-util.h -------------------------------------------------------------------------------- /include/gtest/internal/gtest-port-arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/include/gtest/internal/gtest-port-arch.h -------------------------------------------------------------------------------- /include/gtest/internal/gtest-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/include/gtest/internal/gtest-port.h -------------------------------------------------------------------------------- /include/gtest/internal/gtest-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/include/gtest/internal/gtest-string.h -------------------------------------------------------------------------------- /include/gtest/internal/gtest-tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/include/gtest/internal/gtest-tuple.h -------------------------------------------------------------------------------- /include/gtest/internal/gtest-tuple.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/include/gtest/internal/gtest-tuple.h.pump -------------------------------------------------------------------------------- /include/gtest/internal/gtest-type-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/include/gtest/internal/gtest-type-util.h -------------------------------------------------------------------------------- /include/gtest/internal/gtest-type-util.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/include/gtest/internal/gtest-type-util.h.pump -------------------------------------------------------------------------------- /lib/x64/gtest.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/lib/x64/gtest.lib -------------------------------------------------------------------------------- /lib/x64/gtest.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/lib/x64/gtest.pdb -------------------------------------------------------------------------------- /lib/x64/gtestd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/lib/x64/gtestd.lib -------------------------------------------------------------------------------- /lib/x64/gtestd.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/lib/x64/gtestd.pdb -------------------------------------------------------------------------------- /lib/x86/gtest.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/lib/x86/gtest.lib -------------------------------------------------------------------------------- /lib/x86/gtest.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/lib/x86/gtest.pdb -------------------------------------------------------------------------------- /lib/x86/gtestd.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/lib/x86/gtestd.idb -------------------------------------------------------------------------------- /lib/x86/gtestd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/lib/x86/gtestd.lib -------------------------------------------------------------------------------- /lib/x86/gtestd.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/AviSynthCUDAFilters/HEAD/lib/x86/gtestd.pdb --------------------------------------------------------------------------------