├── .editorconfig ├── .gitignore ├── CHANGELOG.md ├── CMakeLists.txt ├── DTL MVTools releases notes.docx ├── DePan ├── CMakeLists.txt ├── DePan.vcxproj ├── DePan.vcxproj.filters ├── Files.cmake ├── commonfunctions.h ├── def.h ├── depan.h ├── depan.rc ├── depan_compensate.cpp ├── depan_interface.cpp ├── depan_interpolate.cpp ├── depan_scenes.cpp ├── depan_stabilize.cpp ├── depan_transform.cpp ├── depanio.cpp ├── depanio.h ├── include │ ├── avisynth.h │ └── avs │ │ ├── alignment.h │ │ ├── capi.h │ │ ├── config.h │ │ ├── cpuid.h │ │ ├── filesystem.h │ │ ├── minmax.h │ │ ├── posix.h │ │ ├── types.h │ │ └── win.h ├── info.cpp ├── info.h ├── yuy2planes.cpp └── yuy2planes.h ├── DePanEstimate ├── CMakeLists.txt ├── DePanEstimate.vcxproj ├── DePanEstimate.vcxproj.filters ├── Files.cmake ├── def.h ├── depanestimate.cpp ├── depanestimate.h ├── depanestimate.rc ├── depanio.cpp ├── depanio.h ├── estimate_fftw.cpp ├── estimate_fftw.h ├── fftwlite.h ├── include │ ├── avisynth.h │ └── avs │ │ ├── alignment.h │ │ ├── capi.h │ │ ├── config.h │ │ ├── cpuid.h │ │ ├── filesystem.h │ │ ├── minmax.h │ │ ├── posix.h │ │ ├── types.h │ │ └── win.h ├── info.cpp └── info.h ├── Doc_Depan ├── depan-rus.html └── depan.html ├── Doc_DepanEstimate ├── depan-rus.html ├── depan.html ├── gpl-rus.txt └── gpl.txt ├── Documentation ├── avisynth-new.css ├── avisynth.css ├── gpl-rus.txt ├── gpl.txt ├── mvtools-rus.html ├── mvtools.html ├── mvtools2-2.5.11.22.html ├── mvtools2-rus-2.5.11.22.html ├── mvtools2.html └── overlap.png ├── README.md ├── README_depans.txt ├── Sources ├── AllocAlign.h ├── AllocAlign.hpp ├── AnaFlags.h ├── AvstpFinder.cpp ├── AvstpFinder.h ├── AvstpWrapper.cpp ├── AvstpWrapper.h ├── BlockArea.cpp ├── BlockArea.h ├── CMakeLists.txt ├── COVARFunctions.cpp ├── COVARFunctions.h ├── ClipFnc.cpp ├── ClipFnc.h ├── Compute.hlsl ├── CopyCode.cpp ├── CopyCode.h ├── DCTClass.h ├── DCTFFTW.cpp ├── DCTFFTW.h ├── DCTFactory.cpp ├── DCTFactory.h ├── DCTINT.cpp ├── DCTINT.h ├── DWTFunctions.cpp ├── DWTFunctions.h ├── DescriptorHeap.cpp ├── DescriptorHeap.h ├── DirectXHelpers.h ├── DisMetric.cpp ├── DisMetric.h ├── FakeBlockData.cpp ├── FakeBlockData.h ├── FakeGroupOfPlanes.cpp ├── FakeGroupOfPlanes.h ├── FakePlaneOfBlocks.cpp ├── FakePlaneOfBlocks.h ├── Files.cmake ├── GroupOfPlanes.cpp ├── GroupOfPlanes.h ├── Interface.cpp ├── Interlocked.cpp ├── Interpolation.cpp ├── Interpolation.h ├── MAverage.cpp ├── MAverage.h ├── MDegrainN.cpp ├── MDegrainN.h ├── MRestoreVect.cpp ├── MRestoreVect.h ├── MScaleVect.cpp ├── MScaleVect.h ├── MStoreVect.cpp ├── MStoreVect.h ├── MTFlowGraphSched.h ├── MTFlowGraphSched.hpp ├── MTFlowGraphSimple.h ├── MTFlowGraphSimple.hpp ├── MTSlicer.h ├── MTSlicer.hpp ├── MTransform.cpp ├── MTransform.h ├── MVAnalyse.cpp ├── MVAnalyse.h ├── MVAnalysisData.h ├── MVBlockFps.cpp ├── MVBlockFps.h ├── MVClip.cpp ├── MVClip.h ├── MVClipArray.cpp ├── MVCompensate.cpp ├── MVCompensate.h ├── MVDegrain1.cpp ├── MVDegrain1.h ├── MVDegrain2.cpp ├── MVDegrain2.h ├── MVDegrain3.cpp ├── MVDegrain3.h ├── MVDegrain3_avx2.cpp ├── MVDegrain3_avx2.h ├── MVDepan.cpp ├── MVDepan.h ├── MVFilter.cpp ├── MVFilter.h ├── MVFinest.cpp ├── MVFinest.h ├── MVFlow.cpp ├── MVFlow.h ├── MVFlowBlur.cpp ├── MVFlowBlur.h ├── MVFlowFps.cpp ├── MVFlowFps.h ├── MVFlowInter.cpp ├── MVFlowInter.h ├── MVFrame.cpp ├── MVFrame.h ├── MVGroupOfFrames.cpp ├── MVGroupOfFrames.h ├── MVInterface.h ├── MVMask.cpp ├── MVMask.h ├── MVPlane.cpp ├── MVPlane.h ├── MVPlaneSet.h ├── MVRecalculate.cpp ├── MVRecalculate.h ├── MVSCDetection.cpp ├── MVSCDetection.h ├── MVShow.cpp ├── MVShow.h ├── MVSuper.cpp ├── MVSuper.h ├── MaskFun.cpp ├── MaskFun.h ├── MaskFun.hpp ├── Padding.cpp ├── Padding.h ├── PlaneOfBlocks.cpp ├── PlaneOfBlocks.h ├── PlaneOfBlocks_avx2.cpp ├── PlaneOfBlocks_avx2.h ├── PlaneOfBlocks_avx512.cpp ├── PlaneOfBlocks_avx512.h ├── PlatformHelpers.h ├── ReadData.h ├── SADFunctions.cpp ├── SADFunctions.h ├── SADFunctions16.h ├── SADFunctions_avx2.cpp ├── SADFunctions_avx2.h ├── SSIMFunctions.cpp ├── SSIMFunctions.h ├── SearchType.h ├── SharedPtr.h ├── SharedPtr.hpp ├── SimpleResize.cpp ├── SimpleResize.h ├── SuperParams64Bits.h ├── Time256ProviderCst.h ├── Time256ProviderPlane.h ├── VECTOR.h ├── VIFFunctions.cpp ├── VIFFunctions.h ├── Variance.cpp ├── Variance.h ├── asm │ ├── Bilinear.asm │ ├── Bilinear_x64.asm │ ├── CopyCode-a.asm │ ├── Overlap-a.asm │ ├── Variance-a.asm │ ├── const-a.asm │ ├── const16-a.asm │ ├── cpu-a.asm │ ├── fdct_mmx.asm │ ├── fdct_mmx_x64.asm │ ├── include │ │ ├── x86inc.asm │ │ └── x86util.asm │ ├── pixel-a.asm │ ├── sad-a.asm │ └── sad16-a.asm ├── avstp.h ├── build_ic.bat ├── commonfunctions.h ├── conc │ ├── AioAdd.h │ ├── AioAdd.hpp │ ├── AioMax.h │ ├── AioMax.hpp │ ├── AioSub.h │ ├── AioSub.hpp │ ├── Array.h │ ├── Array.hpp │ ├── AtomicInt.h │ ├── AtomicInt.hpp │ ├── AtomicIntOp.h │ ├── AtomicIntOp.hpp │ ├── AtomicMem.h │ ├── AtomicMem.hpp │ ├── AtomicPtr.h │ ├── AtomicPtr.hpp │ ├── AtomicPtrIntPair.h │ ├── AtomicPtrIntPair.hpp │ ├── CellPool.h │ ├── CellPool.hpp │ ├── CritSec.h │ ├── CritSec.hpp │ ├── Interlocked.h │ ├── Interlocked.hpp │ ├── Interlocked__.hpp │ ├── LockFreeCell.h │ ├── LockFreeQueue.h │ ├── LockFreeQueue.hpp │ ├── LockFreeStack.h │ ├── LockFreeStack.hpp │ ├── Mutex.h │ ├── Mutex.hpp │ ├── ObjFactoryDef.h │ ├── ObjFactoryDef.hpp │ ├── ObjFactoryInterface.h │ ├── ObjFactoryInterface.hpp │ ├── ObjPool.h │ ├── ObjPool.hpp │ ├── def.h │ ├── fnc.h │ └── fnc.hpp ├── cpu.cpp ├── cpu.h ├── d3dx12.h ├── debugprintf.h ├── def.h ├── dm_cache.cpp ├── dm_cache.h ├── fftwlite.h ├── fstb │ ├── AllocAlign.h │ ├── AllocAlign.hpp │ ├── SingleObj.h │ ├── SingleObj.hpp │ └── def.h ├── include │ ├── avisynth.h │ └── avs │ │ ├── alignment.h │ │ ├── capi.h │ │ ├── config.h │ │ ├── cpuid.h │ │ ├── filesystem.h │ │ ├── minmax.h │ │ ├── posix.h │ │ ├── types.h │ │ └── win.h ├── info.cpp ├── info.h ├── makezip.cmd ├── mvtools.rc ├── mvtools.vcxproj ├── mvtools.vcxproj.filters ├── mvtools.vcxproj.user ├── overlap.cpp ├── overlap.h ├── profile.h ├── resource ├── resource.h ├── types.h ├── version.h ├── yasm.rules ├── yuy2planes.cpp └── yuy2planes.h ├── cmake_uninstall.cmake.in ├── mvtools.sln └── new_features_list.ods /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /DTL MVTools releases notes.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DTL MVTools releases notes.docx -------------------------------------------------------------------------------- /DePan/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePan/CMakeLists.txt -------------------------------------------------------------------------------- /DePan/DePan.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePan/DePan.vcxproj -------------------------------------------------------------------------------- /DePan/DePan.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePan/DePan.vcxproj.filters -------------------------------------------------------------------------------- /DePan/Files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePan/Files.cmake -------------------------------------------------------------------------------- /DePan/commonfunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePan/commonfunctions.h -------------------------------------------------------------------------------- /DePan/def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePan/def.h -------------------------------------------------------------------------------- /DePan/depan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePan/depan.h -------------------------------------------------------------------------------- /DePan/depan.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePan/depan.rc -------------------------------------------------------------------------------- /DePan/depan_compensate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePan/depan_compensate.cpp -------------------------------------------------------------------------------- /DePan/depan_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePan/depan_interface.cpp -------------------------------------------------------------------------------- /DePan/depan_interpolate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePan/depan_interpolate.cpp -------------------------------------------------------------------------------- /DePan/depan_scenes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePan/depan_scenes.cpp -------------------------------------------------------------------------------- /DePan/depan_stabilize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePan/depan_stabilize.cpp -------------------------------------------------------------------------------- /DePan/depan_transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePan/depan_transform.cpp -------------------------------------------------------------------------------- /DePan/depanio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePan/depanio.cpp -------------------------------------------------------------------------------- /DePan/depanio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePan/depanio.h -------------------------------------------------------------------------------- /DePan/include/avisynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePan/include/avisynth.h -------------------------------------------------------------------------------- /DePan/include/avs/alignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePan/include/avs/alignment.h -------------------------------------------------------------------------------- /DePan/include/avs/capi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePan/include/avs/capi.h -------------------------------------------------------------------------------- /DePan/include/avs/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePan/include/avs/config.h -------------------------------------------------------------------------------- /DePan/include/avs/cpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePan/include/avs/cpuid.h -------------------------------------------------------------------------------- /DePan/include/avs/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePan/include/avs/filesystem.h -------------------------------------------------------------------------------- /DePan/include/avs/minmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePan/include/avs/minmax.h -------------------------------------------------------------------------------- /DePan/include/avs/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePan/include/avs/posix.h -------------------------------------------------------------------------------- /DePan/include/avs/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePan/include/avs/types.h -------------------------------------------------------------------------------- /DePan/include/avs/win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePan/include/avs/win.h -------------------------------------------------------------------------------- /DePan/info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePan/info.cpp -------------------------------------------------------------------------------- /DePan/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePan/info.h -------------------------------------------------------------------------------- /DePan/yuy2planes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePan/yuy2planes.cpp -------------------------------------------------------------------------------- /DePan/yuy2planes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePan/yuy2planes.h -------------------------------------------------------------------------------- /DePanEstimate/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePanEstimate/CMakeLists.txt -------------------------------------------------------------------------------- /DePanEstimate/DePanEstimate.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePanEstimate/DePanEstimate.vcxproj -------------------------------------------------------------------------------- /DePanEstimate/DePanEstimate.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePanEstimate/DePanEstimate.vcxproj.filters -------------------------------------------------------------------------------- /DePanEstimate/Files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePanEstimate/Files.cmake -------------------------------------------------------------------------------- /DePanEstimate/def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePanEstimate/def.h -------------------------------------------------------------------------------- /DePanEstimate/depanestimate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePanEstimate/depanestimate.cpp -------------------------------------------------------------------------------- /DePanEstimate/depanestimate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePanEstimate/depanestimate.h -------------------------------------------------------------------------------- /DePanEstimate/depanestimate.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePanEstimate/depanestimate.rc -------------------------------------------------------------------------------- /DePanEstimate/depanio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePanEstimate/depanio.cpp -------------------------------------------------------------------------------- /DePanEstimate/depanio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePanEstimate/depanio.h -------------------------------------------------------------------------------- /DePanEstimate/estimate_fftw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePanEstimate/estimate_fftw.cpp -------------------------------------------------------------------------------- /DePanEstimate/estimate_fftw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePanEstimate/estimate_fftw.h -------------------------------------------------------------------------------- /DePanEstimate/fftwlite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePanEstimate/fftwlite.h -------------------------------------------------------------------------------- /DePanEstimate/include/avisynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePanEstimate/include/avisynth.h -------------------------------------------------------------------------------- /DePanEstimate/include/avs/alignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePanEstimate/include/avs/alignment.h -------------------------------------------------------------------------------- /DePanEstimate/include/avs/capi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePanEstimate/include/avs/capi.h -------------------------------------------------------------------------------- /DePanEstimate/include/avs/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePanEstimate/include/avs/config.h -------------------------------------------------------------------------------- /DePanEstimate/include/avs/cpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePanEstimate/include/avs/cpuid.h -------------------------------------------------------------------------------- /DePanEstimate/include/avs/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePanEstimate/include/avs/filesystem.h -------------------------------------------------------------------------------- /DePanEstimate/include/avs/minmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePanEstimate/include/avs/minmax.h -------------------------------------------------------------------------------- /DePanEstimate/include/avs/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePanEstimate/include/avs/posix.h -------------------------------------------------------------------------------- /DePanEstimate/include/avs/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePanEstimate/include/avs/types.h -------------------------------------------------------------------------------- /DePanEstimate/include/avs/win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePanEstimate/include/avs/win.h -------------------------------------------------------------------------------- /DePanEstimate/info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePanEstimate/info.cpp -------------------------------------------------------------------------------- /DePanEstimate/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/DePanEstimate/info.h -------------------------------------------------------------------------------- /Doc_Depan/depan-rus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Doc_Depan/depan-rus.html -------------------------------------------------------------------------------- /Doc_Depan/depan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Doc_Depan/depan.html -------------------------------------------------------------------------------- /Doc_DepanEstimate/depan-rus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Doc_DepanEstimate/depan-rus.html -------------------------------------------------------------------------------- /Doc_DepanEstimate/depan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Doc_DepanEstimate/depan.html -------------------------------------------------------------------------------- /Doc_DepanEstimate/gpl-rus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Doc_DepanEstimate/gpl-rus.txt -------------------------------------------------------------------------------- /Doc_DepanEstimate/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Doc_DepanEstimate/gpl.txt -------------------------------------------------------------------------------- /Documentation/avisynth-new.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Documentation/avisynth-new.css -------------------------------------------------------------------------------- /Documentation/avisynth.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Documentation/avisynth.css -------------------------------------------------------------------------------- /Documentation/gpl-rus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Documentation/gpl-rus.txt -------------------------------------------------------------------------------- /Documentation/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Documentation/gpl.txt -------------------------------------------------------------------------------- /Documentation/mvtools-rus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Documentation/mvtools-rus.html -------------------------------------------------------------------------------- /Documentation/mvtools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Documentation/mvtools.html -------------------------------------------------------------------------------- /Documentation/mvtools2-2.5.11.22.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Documentation/mvtools2-2.5.11.22.html -------------------------------------------------------------------------------- /Documentation/mvtools2-rus-2.5.11.22.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Documentation/mvtools2-rus-2.5.11.22.html -------------------------------------------------------------------------------- /Documentation/mvtools2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Documentation/mvtools2.html -------------------------------------------------------------------------------- /Documentation/overlap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Documentation/overlap.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/README.md -------------------------------------------------------------------------------- /README_depans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/README_depans.txt -------------------------------------------------------------------------------- /Sources/AllocAlign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/AllocAlign.h -------------------------------------------------------------------------------- /Sources/AllocAlign.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/AllocAlign.hpp -------------------------------------------------------------------------------- /Sources/AnaFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/AnaFlags.h -------------------------------------------------------------------------------- /Sources/AvstpFinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/AvstpFinder.cpp -------------------------------------------------------------------------------- /Sources/AvstpFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/AvstpFinder.h -------------------------------------------------------------------------------- /Sources/AvstpWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/AvstpWrapper.cpp -------------------------------------------------------------------------------- /Sources/AvstpWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/AvstpWrapper.h -------------------------------------------------------------------------------- /Sources/BlockArea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/BlockArea.cpp -------------------------------------------------------------------------------- /Sources/BlockArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/BlockArea.h -------------------------------------------------------------------------------- /Sources/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/COVARFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/COVARFunctions.cpp -------------------------------------------------------------------------------- /Sources/COVARFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/COVARFunctions.h -------------------------------------------------------------------------------- /Sources/ClipFnc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/ClipFnc.cpp -------------------------------------------------------------------------------- /Sources/ClipFnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/ClipFnc.h -------------------------------------------------------------------------------- /Sources/Compute.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/Compute.hlsl -------------------------------------------------------------------------------- /Sources/CopyCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/CopyCode.cpp -------------------------------------------------------------------------------- /Sources/CopyCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/CopyCode.h -------------------------------------------------------------------------------- /Sources/DCTClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/DCTClass.h -------------------------------------------------------------------------------- /Sources/DCTFFTW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/DCTFFTW.cpp -------------------------------------------------------------------------------- /Sources/DCTFFTW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/DCTFFTW.h -------------------------------------------------------------------------------- /Sources/DCTFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/DCTFactory.cpp -------------------------------------------------------------------------------- /Sources/DCTFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/DCTFactory.h -------------------------------------------------------------------------------- /Sources/DCTINT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/DCTINT.cpp -------------------------------------------------------------------------------- /Sources/DCTINT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/DCTINT.h -------------------------------------------------------------------------------- /Sources/DWTFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/DWTFunctions.cpp -------------------------------------------------------------------------------- /Sources/DWTFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/DWTFunctions.h -------------------------------------------------------------------------------- /Sources/DescriptorHeap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/DescriptorHeap.cpp -------------------------------------------------------------------------------- /Sources/DescriptorHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/DescriptorHeap.h -------------------------------------------------------------------------------- /Sources/DirectXHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/DirectXHelpers.h -------------------------------------------------------------------------------- /Sources/DisMetric.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/DisMetric.cpp -------------------------------------------------------------------------------- /Sources/DisMetric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/DisMetric.h -------------------------------------------------------------------------------- /Sources/FakeBlockData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/FakeBlockData.cpp -------------------------------------------------------------------------------- /Sources/FakeBlockData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/FakeBlockData.h -------------------------------------------------------------------------------- /Sources/FakeGroupOfPlanes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/FakeGroupOfPlanes.cpp -------------------------------------------------------------------------------- /Sources/FakeGroupOfPlanes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/FakeGroupOfPlanes.h -------------------------------------------------------------------------------- /Sources/FakePlaneOfBlocks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/FakePlaneOfBlocks.cpp -------------------------------------------------------------------------------- /Sources/FakePlaneOfBlocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/FakePlaneOfBlocks.h -------------------------------------------------------------------------------- /Sources/Files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/Files.cmake -------------------------------------------------------------------------------- /Sources/GroupOfPlanes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/GroupOfPlanes.cpp -------------------------------------------------------------------------------- /Sources/GroupOfPlanes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/GroupOfPlanes.h -------------------------------------------------------------------------------- /Sources/Interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/Interface.cpp -------------------------------------------------------------------------------- /Sources/Interlocked.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/Interlocked.cpp -------------------------------------------------------------------------------- /Sources/Interpolation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/Interpolation.cpp -------------------------------------------------------------------------------- /Sources/Interpolation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/Interpolation.h -------------------------------------------------------------------------------- /Sources/MAverage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MAverage.cpp -------------------------------------------------------------------------------- /Sources/MAverage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MAverage.h -------------------------------------------------------------------------------- /Sources/MDegrainN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MDegrainN.cpp -------------------------------------------------------------------------------- /Sources/MDegrainN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MDegrainN.h -------------------------------------------------------------------------------- /Sources/MRestoreVect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MRestoreVect.cpp -------------------------------------------------------------------------------- /Sources/MRestoreVect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MRestoreVect.h -------------------------------------------------------------------------------- /Sources/MScaleVect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MScaleVect.cpp -------------------------------------------------------------------------------- /Sources/MScaleVect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MScaleVect.h -------------------------------------------------------------------------------- /Sources/MStoreVect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MStoreVect.cpp -------------------------------------------------------------------------------- /Sources/MStoreVect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MStoreVect.h -------------------------------------------------------------------------------- /Sources/MTFlowGraphSched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MTFlowGraphSched.h -------------------------------------------------------------------------------- /Sources/MTFlowGraphSched.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MTFlowGraphSched.hpp -------------------------------------------------------------------------------- /Sources/MTFlowGraphSimple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MTFlowGraphSimple.h -------------------------------------------------------------------------------- /Sources/MTFlowGraphSimple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MTFlowGraphSimple.hpp -------------------------------------------------------------------------------- /Sources/MTSlicer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MTSlicer.h -------------------------------------------------------------------------------- /Sources/MTSlicer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MTSlicer.hpp -------------------------------------------------------------------------------- /Sources/MTransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MTransform.cpp -------------------------------------------------------------------------------- /Sources/MTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MTransform.h -------------------------------------------------------------------------------- /Sources/MVAnalyse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVAnalyse.cpp -------------------------------------------------------------------------------- /Sources/MVAnalyse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVAnalyse.h -------------------------------------------------------------------------------- /Sources/MVAnalysisData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVAnalysisData.h -------------------------------------------------------------------------------- /Sources/MVBlockFps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVBlockFps.cpp -------------------------------------------------------------------------------- /Sources/MVBlockFps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVBlockFps.h -------------------------------------------------------------------------------- /Sources/MVClip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVClip.cpp -------------------------------------------------------------------------------- /Sources/MVClip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVClip.h -------------------------------------------------------------------------------- /Sources/MVClipArray.cpp: -------------------------------------------------------------------------------- 1 | // Dead code. 2 | -------------------------------------------------------------------------------- /Sources/MVCompensate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVCompensate.cpp -------------------------------------------------------------------------------- /Sources/MVCompensate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVCompensate.h -------------------------------------------------------------------------------- /Sources/MVDegrain1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVDegrain1.cpp -------------------------------------------------------------------------------- /Sources/MVDegrain1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVDegrain1.h -------------------------------------------------------------------------------- /Sources/MVDegrain2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVDegrain2.cpp -------------------------------------------------------------------------------- /Sources/MVDegrain2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVDegrain2.h -------------------------------------------------------------------------------- /Sources/MVDegrain3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVDegrain3.cpp -------------------------------------------------------------------------------- /Sources/MVDegrain3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVDegrain3.h -------------------------------------------------------------------------------- /Sources/MVDegrain3_avx2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVDegrain3_avx2.cpp -------------------------------------------------------------------------------- /Sources/MVDegrain3_avx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVDegrain3_avx2.h -------------------------------------------------------------------------------- /Sources/MVDepan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVDepan.cpp -------------------------------------------------------------------------------- /Sources/MVDepan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVDepan.h -------------------------------------------------------------------------------- /Sources/MVFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVFilter.cpp -------------------------------------------------------------------------------- /Sources/MVFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVFilter.h -------------------------------------------------------------------------------- /Sources/MVFinest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVFinest.cpp -------------------------------------------------------------------------------- /Sources/MVFinest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVFinest.h -------------------------------------------------------------------------------- /Sources/MVFlow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVFlow.cpp -------------------------------------------------------------------------------- /Sources/MVFlow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVFlow.h -------------------------------------------------------------------------------- /Sources/MVFlowBlur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVFlowBlur.cpp -------------------------------------------------------------------------------- /Sources/MVFlowBlur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVFlowBlur.h -------------------------------------------------------------------------------- /Sources/MVFlowFps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVFlowFps.cpp -------------------------------------------------------------------------------- /Sources/MVFlowFps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVFlowFps.h -------------------------------------------------------------------------------- /Sources/MVFlowInter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVFlowInter.cpp -------------------------------------------------------------------------------- /Sources/MVFlowInter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVFlowInter.h -------------------------------------------------------------------------------- /Sources/MVFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVFrame.cpp -------------------------------------------------------------------------------- /Sources/MVFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVFrame.h -------------------------------------------------------------------------------- /Sources/MVGroupOfFrames.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVGroupOfFrames.cpp -------------------------------------------------------------------------------- /Sources/MVGroupOfFrames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVGroupOfFrames.h -------------------------------------------------------------------------------- /Sources/MVInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVInterface.h -------------------------------------------------------------------------------- /Sources/MVMask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVMask.cpp -------------------------------------------------------------------------------- /Sources/MVMask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVMask.h -------------------------------------------------------------------------------- /Sources/MVPlane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVPlane.cpp -------------------------------------------------------------------------------- /Sources/MVPlane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVPlane.h -------------------------------------------------------------------------------- /Sources/MVPlaneSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVPlaneSet.h -------------------------------------------------------------------------------- /Sources/MVRecalculate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVRecalculate.cpp -------------------------------------------------------------------------------- /Sources/MVRecalculate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVRecalculate.h -------------------------------------------------------------------------------- /Sources/MVSCDetection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVSCDetection.cpp -------------------------------------------------------------------------------- /Sources/MVSCDetection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVSCDetection.h -------------------------------------------------------------------------------- /Sources/MVShow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVShow.cpp -------------------------------------------------------------------------------- /Sources/MVShow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVShow.h -------------------------------------------------------------------------------- /Sources/MVSuper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVSuper.cpp -------------------------------------------------------------------------------- /Sources/MVSuper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MVSuper.h -------------------------------------------------------------------------------- /Sources/MaskFun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MaskFun.cpp -------------------------------------------------------------------------------- /Sources/MaskFun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MaskFun.h -------------------------------------------------------------------------------- /Sources/MaskFun.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/MaskFun.hpp -------------------------------------------------------------------------------- /Sources/Padding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/Padding.cpp -------------------------------------------------------------------------------- /Sources/Padding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/Padding.h -------------------------------------------------------------------------------- /Sources/PlaneOfBlocks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/PlaneOfBlocks.cpp -------------------------------------------------------------------------------- /Sources/PlaneOfBlocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/PlaneOfBlocks.h -------------------------------------------------------------------------------- /Sources/PlaneOfBlocks_avx2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/PlaneOfBlocks_avx2.cpp -------------------------------------------------------------------------------- /Sources/PlaneOfBlocks_avx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/PlaneOfBlocks_avx2.h -------------------------------------------------------------------------------- /Sources/PlaneOfBlocks_avx512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/PlaneOfBlocks_avx512.cpp -------------------------------------------------------------------------------- /Sources/PlaneOfBlocks_avx512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/PlaneOfBlocks_avx512.h -------------------------------------------------------------------------------- /Sources/PlatformHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/PlatformHelpers.h -------------------------------------------------------------------------------- /Sources/ReadData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/ReadData.h -------------------------------------------------------------------------------- /Sources/SADFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/SADFunctions.cpp -------------------------------------------------------------------------------- /Sources/SADFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/SADFunctions.h -------------------------------------------------------------------------------- /Sources/SADFunctions16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/SADFunctions16.h -------------------------------------------------------------------------------- /Sources/SADFunctions_avx2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/SADFunctions_avx2.cpp -------------------------------------------------------------------------------- /Sources/SADFunctions_avx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/SADFunctions_avx2.h -------------------------------------------------------------------------------- /Sources/SSIMFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/SSIMFunctions.cpp -------------------------------------------------------------------------------- /Sources/SSIMFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/SSIMFunctions.h -------------------------------------------------------------------------------- /Sources/SearchType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/SearchType.h -------------------------------------------------------------------------------- /Sources/SharedPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/SharedPtr.h -------------------------------------------------------------------------------- /Sources/SharedPtr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/SharedPtr.hpp -------------------------------------------------------------------------------- /Sources/SimpleResize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/SimpleResize.cpp -------------------------------------------------------------------------------- /Sources/SimpleResize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/SimpleResize.h -------------------------------------------------------------------------------- /Sources/SuperParams64Bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/SuperParams64Bits.h -------------------------------------------------------------------------------- /Sources/Time256ProviderCst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/Time256ProviderCst.h -------------------------------------------------------------------------------- /Sources/Time256ProviderPlane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/Time256ProviderPlane.h -------------------------------------------------------------------------------- /Sources/VECTOR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/VECTOR.h -------------------------------------------------------------------------------- /Sources/VIFFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/VIFFunctions.cpp -------------------------------------------------------------------------------- /Sources/VIFFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/VIFFunctions.h -------------------------------------------------------------------------------- /Sources/Variance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/Variance.cpp -------------------------------------------------------------------------------- /Sources/Variance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/Variance.h -------------------------------------------------------------------------------- /Sources/asm/Bilinear.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/asm/Bilinear.asm -------------------------------------------------------------------------------- /Sources/asm/Bilinear_x64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/asm/Bilinear_x64.asm -------------------------------------------------------------------------------- /Sources/asm/CopyCode-a.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/asm/CopyCode-a.asm -------------------------------------------------------------------------------- /Sources/asm/Overlap-a.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/asm/Overlap-a.asm -------------------------------------------------------------------------------- /Sources/asm/Variance-a.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/asm/Variance-a.asm -------------------------------------------------------------------------------- /Sources/asm/const-a.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/asm/const-a.asm -------------------------------------------------------------------------------- /Sources/asm/const16-a.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/asm/const16-a.asm -------------------------------------------------------------------------------- /Sources/asm/cpu-a.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/asm/cpu-a.asm -------------------------------------------------------------------------------- /Sources/asm/fdct_mmx.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/asm/fdct_mmx.asm -------------------------------------------------------------------------------- /Sources/asm/fdct_mmx_x64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/asm/fdct_mmx_x64.asm -------------------------------------------------------------------------------- /Sources/asm/include/x86inc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/asm/include/x86inc.asm -------------------------------------------------------------------------------- /Sources/asm/include/x86util.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/asm/include/x86util.asm -------------------------------------------------------------------------------- /Sources/asm/pixel-a.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/asm/pixel-a.asm -------------------------------------------------------------------------------- /Sources/asm/sad-a.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/asm/sad-a.asm -------------------------------------------------------------------------------- /Sources/asm/sad16-a.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/asm/sad16-a.asm -------------------------------------------------------------------------------- /Sources/avstp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/avstp.h -------------------------------------------------------------------------------- /Sources/build_ic.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/build_ic.bat -------------------------------------------------------------------------------- /Sources/commonfunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/commonfunctions.h -------------------------------------------------------------------------------- /Sources/conc/AioAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/conc/AioAdd.h -------------------------------------------------------------------------------- /Sources/conc/AioAdd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/conc/AioAdd.hpp -------------------------------------------------------------------------------- /Sources/conc/AioMax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/conc/AioMax.h -------------------------------------------------------------------------------- /Sources/conc/AioMax.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/conc/AioMax.hpp -------------------------------------------------------------------------------- /Sources/conc/AioSub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/conc/AioSub.h -------------------------------------------------------------------------------- /Sources/conc/AioSub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/conc/AioSub.hpp -------------------------------------------------------------------------------- /Sources/conc/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/conc/Array.h -------------------------------------------------------------------------------- /Sources/conc/Array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/conc/Array.hpp -------------------------------------------------------------------------------- /Sources/conc/AtomicInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/conc/AtomicInt.h -------------------------------------------------------------------------------- /Sources/conc/AtomicInt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/conc/AtomicInt.hpp -------------------------------------------------------------------------------- /Sources/conc/AtomicIntOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/conc/AtomicIntOp.h -------------------------------------------------------------------------------- /Sources/conc/AtomicIntOp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/conc/AtomicIntOp.hpp -------------------------------------------------------------------------------- /Sources/conc/AtomicMem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/conc/AtomicMem.h -------------------------------------------------------------------------------- /Sources/conc/AtomicMem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/conc/AtomicMem.hpp -------------------------------------------------------------------------------- /Sources/conc/AtomicPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/conc/AtomicPtr.h -------------------------------------------------------------------------------- /Sources/conc/AtomicPtr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/conc/AtomicPtr.hpp -------------------------------------------------------------------------------- /Sources/conc/AtomicPtrIntPair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/conc/AtomicPtrIntPair.h -------------------------------------------------------------------------------- /Sources/conc/AtomicPtrIntPair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/conc/AtomicPtrIntPair.hpp -------------------------------------------------------------------------------- /Sources/conc/CellPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/conc/CellPool.h -------------------------------------------------------------------------------- /Sources/conc/CellPool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/conc/CellPool.hpp -------------------------------------------------------------------------------- /Sources/conc/CritSec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/conc/CritSec.h -------------------------------------------------------------------------------- /Sources/conc/CritSec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/conc/CritSec.hpp -------------------------------------------------------------------------------- /Sources/conc/Interlocked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/conc/Interlocked.h -------------------------------------------------------------------------------- /Sources/conc/Interlocked.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/conc/Interlocked.hpp -------------------------------------------------------------------------------- /Sources/conc/Interlocked__.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/conc/Interlocked__.hpp -------------------------------------------------------------------------------- /Sources/conc/LockFreeCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/conc/LockFreeCell.h -------------------------------------------------------------------------------- /Sources/conc/LockFreeQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/conc/LockFreeQueue.h -------------------------------------------------------------------------------- /Sources/conc/LockFreeQueue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/conc/LockFreeQueue.hpp -------------------------------------------------------------------------------- /Sources/conc/LockFreeStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/conc/LockFreeStack.h -------------------------------------------------------------------------------- /Sources/conc/LockFreeStack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/conc/LockFreeStack.hpp -------------------------------------------------------------------------------- /Sources/conc/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/conc/Mutex.h -------------------------------------------------------------------------------- /Sources/conc/Mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/conc/Mutex.hpp -------------------------------------------------------------------------------- /Sources/conc/ObjFactoryDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/conc/ObjFactoryDef.h -------------------------------------------------------------------------------- /Sources/conc/ObjFactoryDef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/conc/ObjFactoryDef.hpp -------------------------------------------------------------------------------- /Sources/conc/ObjFactoryInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/conc/ObjFactoryInterface.h -------------------------------------------------------------------------------- /Sources/conc/ObjFactoryInterface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/conc/ObjFactoryInterface.hpp -------------------------------------------------------------------------------- /Sources/conc/ObjPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/conc/ObjPool.h -------------------------------------------------------------------------------- /Sources/conc/ObjPool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/conc/ObjPool.hpp -------------------------------------------------------------------------------- /Sources/conc/def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/conc/def.h -------------------------------------------------------------------------------- /Sources/conc/fnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/conc/fnc.h -------------------------------------------------------------------------------- /Sources/conc/fnc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/conc/fnc.hpp -------------------------------------------------------------------------------- /Sources/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/cpu.cpp -------------------------------------------------------------------------------- /Sources/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/cpu.h -------------------------------------------------------------------------------- /Sources/d3dx12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/d3dx12.h -------------------------------------------------------------------------------- /Sources/debugprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/debugprintf.h -------------------------------------------------------------------------------- /Sources/def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/def.h -------------------------------------------------------------------------------- /Sources/dm_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/dm_cache.cpp -------------------------------------------------------------------------------- /Sources/dm_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/dm_cache.h -------------------------------------------------------------------------------- /Sources/fftwlite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/fftwlite.h -------------------------------------------------------------------------------- /Sources/fstb/AllocAlign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/fstb/AllocAlign.h -------------------------------------------------------------------------------- /Sources/fstb/AllocAlign.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/fstb/AllocAlign.hpp -------------------------------------------------------------------------------- /Sources/fstb/SingleObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/fstb/SingleObj.h -------------------------------------------------------------------------------- /Sources/fstb/SingleObj.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/fstb/SingleObj.hpp -------------------------------------------------------------------------------- /Sources/fstb/def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/fstb/def.h -------------------------------------------------------------------------------- /Sources/include/avisynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/include/avisynth.h -------------------------------------------------------------------------------- /Sources/include/avs/alignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/include/avs/alignment.h -------------------------------------------------------------------------------- /Sources/include/avs/capi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/include/avs/capi.h -------------------------------------------------------------------------------- /Sources/include/avs/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/include/avs/config.h -------------------------------------------------------------------------------- /Sources/include/avs/cpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/include/avs/cpuid.h -------------------------------------------------------------------------------- /Sources/include/avs/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/include/avs/filesystem.h -------------------------------------------------------------------------------- /Sources/include/avs/minmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/include/avs/minmax.h -------------------------------------------------------------------------------- /Sources/include/avs/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/include/avs/posix.h -------------------------------------------------------------------------------- /Sources/include/avs/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/include/avs/types.h -------------------------------------------------------------------------------- /Sources/include/avs/win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/include/avs/win.h -------------------------------------------------------------------------------- /Sources/info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/info.cpp -------------------------------------------------------------------------------- /Sources/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/info.h -------------------------------------------------------------------------------- /Sources/makezip.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/makezip.cmd -------------------------------------------------------------------------------- /Sources/mvtools.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/mvtools.rc -------------------------------------------------------------------------------- /Sources/mvtools.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/mvtools.vcxproj -------------------------------------------------------------------------------- /Sources/mvtools.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/mvtools.vcxproj.filters -------------------------------------------------------------------------------- /Sources/mvtools.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/mvtools.vcxproj.user -------------------------------------------------------------------------------- /Sources/overlap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/overlap.cpp -------------------------------------------------------------------------------- /Sources/overlap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/overlap.h -------------------------------------------------------------------------------- /Sources/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/profile.h -------------------------------------------------------------------------------- /Sources/resource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/resource -------------------------------------------------------------------------------- /Sources/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/resource.h -------------------------------------------------------------------------------- /Sources/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/types.h -------------------------------------------------------------------------------- /Sources/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/version.h -------------------------------------------------------------------------------- /Sources/yasm.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/yasm.rules -------------------------------------------------------------------------------- /Sources/yuy2planes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/yuy2planes.cpp -------------------------------------------------------------------------------- /Sources/yuy2planes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/Sources/yuy2planes.h -------------------------------------------------------------------------------- /cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /mvtools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/mvtools.sln -------------------------------------------------------------------------------- /new_features_list.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTL2020/mvtools/HEAD/new_features_list.ods --------------------------------------------------------------------------------