├── AviUtlInstaller.iss ├── LICENSE ├── README.md ├── base ├── aviutl.exe.txt └── aviutl_LAA.exe.txt ├── cputest ├── cputest.cpp ├── cputest.vcxproj └── cputest.vcxproj.filters ├── deinterlace_plugin ├── afs │ ├── en │ │ ├── afs.auf.txt │ │ └── nullout.auo.txt │ └── jp │ │ ├── afs.auf.txt │ │ └── nullout.auo.txt ├── afsvf │ ├── en │ │ ├── afsvf.auf.txt │ │ └── trans.auf.txt │ └── jp │ │ ├── afsvf.auf.txt │ │ └── trans.auf.txt └── nnedi3 │ ├── en │ └── nnedi3.auf.txt │ └── jp │ ├── nnedi3.auf.txt │ └── nnedi3.txt ├── denoise_plugin ├── nlmeans_gpu │ ├── en │ │ └── NL-Means.auf.txt │ └── jp │ │ └── nlmeans_light_GPU.auf.txt └── nlmeans_light │ ├── en │ └── nlmeans_light_ENU.auf.txt │ └── jp │ └── nlmeans_light.auf.txt ├── export_plugin └── dge2 │ ├── DirectGIFExport2.auo.txt │ ├── gifsicle.exe.txt │ └── libiomp5md.dll.txt ├── filter_plugin └── resize │ ├── DLL │ ├── avx2filter.dll.txt │ ├── avxfilter.dll.txt │ ├── sse2filter.dll.txt │ ├── sse2filter_yuy2.dll.txt │ ├── wndfuncs.dll.txt │ └── xopfilter.dll.txt │ ├── en │ └── ResizeFilter.auf.txt │ └── jp │ └── ResizeFilter.auf.txt ├── haspShader3 ├── haspShader3.vcxproj ├── haspShader3.vcxproj.filters └── pshader3.cpp ├── import_plugin └── ds_input │ ├── ds_input.aui.txt │ └── ds_input.ini ├── lang ├── EnMod1_5.aul.txt └── EnMod_1_5XP.aul.txt └── nle ├── en └── exedit_files.txt └── jp └── exedit_files.txt /AviUtlInstaller.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaverickTse/AviUtlInstaller/HEAD/AviUtlInstaller.iss -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaverickTse/AviUtlInstaller/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaverickTse/AviUtlInstaller/HEAD/README.md -------------------------------------------------------------------------------- /base/aviutl.exe.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /base/aviutl_LAA.exe.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cputest/cputest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaverickTse/AviUtlInstaller/HEAD/cputest/cputest.cpp -------------------------------------------------------------------------------- /cputest/cputest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaverickTse/AviUtlInstaller/HEAD/cputest/cputest.vcxproj -------------------------------------------------------------------------------- /cputest/cputest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaverickTse/AviUtlInstaller/HEAD/cputest/cputest.vcxproj.filters -------------------------------------------------------------------------------- /deinterlace_plugin/afs/en/afs.auf.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deinterlace_plugin/afs/en/nullout.auo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deinterlace_plugin/afs/jp/afs.auf.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deinterlace_plugin/afs/jp/nullout.auo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deinterlace_plugin/afsvf/en/afsvf.auf.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deinterlace_plugin/afsvf/en/trans.auf.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deinterlace_plugin/afsvf/jp/afsvf.auf.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deinterlace_plugin/afsvf/jp/trans.auf.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deinterlace_plugin/nnedi3/en/nnedi3.auf.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deinterlace_plugin/nnedi3/jp/nnedi3.auf.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deinterlace_plugin/nnedi3/jp/nnedi3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaverickTse/AviUtlInstaller/HEAD/deinterlace_plugin/nnedi3/jp/nnedi3.txt -------------------------------------------------------------------------------- /denoise_plugin/nlmeans_gpu/en/NL-Means.auf.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /denoise_plugin/nlmeans_gpu/jp/nlmeans_light_GPU.auf.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /denoise_plugin/nlmeans_light/en/nlmeans_light_ENU.auf.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /denoise_plugin/nlmeans_light/jp/nlmeans_light.auf.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /export_plugin/dge2/DirectGIFExport2.auo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /export_plugin/dge2/gifsicle.exe.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /export_plugin/dge2/libiomp5md.dll.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /filter_plugin/resize/DLL/avx2filter.dll.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /filter_plugin/resize/DLL/avxfilter.dll.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /filter_plugin/resize/DLL/sse2filter.dll.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /filter_plugin/resize/DLL/sse2filter_yuy2.dll.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /filter_plugin/resize/DLL/wndfuncs.dll.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /filter_plugin/resize/DLL/xopfilter.dll.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /filter_plugin/resize/en/ResizeFilter.auf.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /filter_plugin/resize/jp/ResizeFilter.auf.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /haspShader3/haspShader3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaverickTse/AviUtlInstaller/HEAD/haspShader3/haspShader3.vcxproj -------------------------------------------------------------------------------- /haspShader3/haspShader3.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaverickTse/AviUtlInstaller/HEAD/haspShader3/haspShader3.vcxproj.filters -------------------------------------------------------------------------------- /haspShader3/pshader3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaverickTse/AviUtlInstaller/HEAD/haspShader3/pshader3.cpp -------------------------------------------------------------------------------- /import_plugin/ds_input/ds_input.aui.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /import_plugin/ds_input/ds_input.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaverickTse/AviUtlInstaller/HEAD/import_plugin/ds_input/ds_input.ini -------------------------------------------------------------------------------- /lang/EnMod1_5.aul.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lang/EnMod_1_5XP.aul.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nle/en/exedit_files.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nle/jp/exedit_files.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------