├── .gitmodules ├── Common.props ├── D3DVP.sln ├── D3DVP ├── D3DVP.cpp ├── D3DVP.def ├── D3DVP.vcxproj ├── D3DVP.vcxproj.filters ├── Thread.hpp ├── convert.h ├── convert_avx2.cpp └── convert_c.cpp ├── D3DVPTest ├── D3DVPTest.cpp ├── D3DVPTest.vcxproj └── D3DVPTest.vcxproj.filters ├── README.md ├── include ├── avisynth.h ├── avs │ ├── alignment.h │ ├── capi.h │ ├── config.h │ ├── cpuid.h │ ├── minmax.h │ ├── types.h │ └── win.h ├── filter.h └── gtest │ ├── gtest-death-test.h │ ├── gtest-message.h │ ├── gtest-param-test.h │ ├── gtest-param-test.h.pump │ ├── gtest-printers.h │ ├── gtest-spi.h │ ├── gtest-test-part.h │ ├── gtest-typed-test.h │ ├── gtest.h │ ├── gtest_pred_impl.h │ ├── gtest_prod.h │ └── internal │ ├── custom │ ├── gtest-port.h │ ├── gtest-printers.h │ └── gtest.h │ ├── gtest-death-test-internal.h │ ├── gtest-filepath.h │ ├── gtest-internal.h │ ├── gtest-linked_ptr.h │ ├── gtest-param-util-generated.h │ ├── gtest-param-util-generated.h.pump │ ├── gtest-param-util.h │ ├── gtest-port-arch.h │ ├── gtest-port.h │ ├── gtest-string.h │ ├── gtest-tuple.h │ ├── gtest-tuple.h.pump │ ├── gtest-type-util.h │ └── gtest-type-util.h.pump └── lib ├── x64 └── AviSynth.lib └── x86 └── AviSynth.lib /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/.gitmodules -------------------------------------------------------------------------------- /Common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/Common.props -------------------------------------------------------------------------------- /D3DVP.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/D3DVP.sln -------------------------------------------------------------------------------- /D3DVP/D3DVP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/D3DVP/D3DVP.cpp -------------------------------------------------------------------------------- /D3DVP/D3DVP.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/D3DVP/D3DVP.def -------------------------------------------------------------------------------- /D3DVP/D3DVP.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/D3DVP/D3DVP.vcxproj -------------------------------------------------------------------------------- /D3DVP/D3DVP.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/D3DVP/D3DVP.vcxproj.filters -------------------------------------------------------------------------------- /D3DVP/Thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/D3DVP/Thread.hpp -------------------------------------------------------------------------------- /D3DVP/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/D3DVP/convert.h -------------------------------------------------------------------------------- /D3DVP/convert_avx2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/D3DVP/convert_avx2.cpp -------------------------------------------------------------------------------- /D3DVP/convert_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/D3DVP/convert_c.cpp -------------------------------------------------------------------------------- /D3DVPTest/D3DVPTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/D3DVPTest/D3DVPTest.cpp -------------------------------------------------------------------------------- /D3DVPTest/D3DVPTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/D3DVPTest/D3DVPTest.vcxproj -------------------------------------------------------------------------------- /D3DVPTest/D3DVPTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/D3DVPTest/D3DVPTest.vcxproj.filters -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/README.md -------------------------------------------------------------------------------- /include/avisynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/include/avisynth.h -------------------------------------------------------------------------------- /include/avs/alignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/include/avs/alignment.h -------------------------------------------------------------------------------- /include/avs/capi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/include/avs/capi.h -------------------------------------------------------------------------------- /include/avs/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/include/avs/config.h -------------------------------------------------------------------------------- /include/avs/cpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/include/avs/cpuid.h -------------------------------------------------------------------------------- /include/avs/minmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/include/avs/minmax.h -------------------------------------------------------------------------------- /include/avs/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/include/avs/types.h -------------------------------------------------------------------------------- /include/avs/win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/include/avs/win.h -------------------------------------------------------------------------------- /include/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/include/filter.h -------------------------------------------------------------------------------- /include/gtest/gtest-death-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/include/gtest/gtest-death-test.h -------------------------------------------------------------------------------- /include/gtest/gtest-message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/include/gtest/gtest-message.h -------------------------------------------------------------------------------- /include/gtest/gtest-param-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/include/gtest/gtest-param-test.h -------------------------------------------------------------------------------- /include/gtest/gtest-param-test.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/include/gtest/gtest-param-test.h.pump -------------------------------------------------------------------------------- /include/gtest/gtest-printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/include/gtest/gtest-printers.h -------------------------------------------------------------------------------- /include/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/include/gtest/gtest-spi.h -------------------------------------------------------------------------------- /include/gtest/gtest-test-part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/include/gtest/gtest-test-part.h -------------------------------------------------------------------------------- /include/gtest/gtest-typed-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/include/gtest/gtest-typed-test.h -------------------------------------------------------------------------------- /include/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/include/gtest/gtest.h -------------------------------------------------------------------------------- /include/gtest/gtest_pred_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/include/gtest/gtest_pred_impl.h -------------------------------------------------------------------------------- /include/gtest/gtest_prod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/include/gtest/gtest_prod.h -------------------------------------------------------------------------------- /include/gtest/internal/custom/gtest-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/include/gtest/internal/custom/gtest-port.h -------------------------------------------------------------------------------- /include/gtest/internal/custom/gtest-printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/include/gtest/internal/custom/gtest-printers.h -------------------------------------------------------------------------------- /include/gtest/internal/custom/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/include/gtest/internal/custom/gtest.h -------------------------------------------------------------------------------- /include/gtest/internal/gtest-death-test-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/include/gtest/internal/gtest-death-test-internal.h -------------------------------------------------------------------------------- /include/gtest/internal/gtest-filepath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/include/gtest/internal/gtest-filepath.h -------------------------------------------------------------------------------- /include/gtest/internal/gtest-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/include/gtest/internal/gtest-internal.h -------------------------------------------------------------------------------- /include/gtest/internal/gtest-linked_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/include/gtest/internal/gtest-linked_ptr.h -------------------------------------------------------------------------------- /include/gtest/internal/gtest-param-util-generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/include/gtest/internal/gtest-param-util-generated.h -------------------------------------------------------------------------------- /include/gtest/internal/gtest-param-util-generated.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/include/gtest/internal/gtest-param-util-generated.h.pump -------------------------------------------------------------------------------- /include/gtest/internal/gtest-param-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/include/gtest/internal/gtest-param-util.h -------------------------------------------------------------------------------- /include/gtest/internal/gtest-port-arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/include/gtest/internal/gtest-port-arch.h -------------------------------------------------------------------------------- /include/gtest/internal/gtest-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/include/gtest/internal/gtest-port.h -------------------------------------------------------------------------------- /include/gtest/internal/gtest-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/include/gtest/internal/gtest-string.h -------------------------------------------------------------------------------- /include/gtest/internal/gtest-tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/include/gtest/internal/gtest-tuple.h -------------------------------------------------------------------------------- /include/gtest/internal/gtest-tuple.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/include/gtest/internal/gtest-tuple.h.pump -------------------------------------------------------------------------------- /include/gtest/internal/gtest-type-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/include/gtest/internal/gtest-type-util.h -------------------------------------------------------------------------------- /include/gtest/internal/gtest-type-util.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/include/gtest/internal/gtest-type-util.h.pump -------------------------------------------------------------------------------- /lib/x64/AviSynth.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/lib/x64/AviSynth.lib -------------------------------------------------------------------------------- /lib/x86/AviSynth.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekopanda/D3DVP/HEAD/lib/x86/AviSynth.lib --------------------------------------------------------------------------------