├── .gitattributes ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake_uninstall.cmake.in └── src ├── plugin.cpp ├── rife.cpp ├── rife.h ├── rife.rc ├── rife_flow_tta_avg.comp.hex.h ├── rife_flow_tta_temporal_avg.comp.hex.h ├── rife_ops.h ├── rife_out_tta_temporal_avg.comp.hex.h ├── rife_postproc.comp.hex.h ├── rife_postproc_tta.comp.hex.h ├── rife_preproc.comp.hex.h ├── rife_preproc_tta.comp.hex.h ├── rife_v2_flow_tta_avg.comp.hex.h ├── rife_v2_flow_tta_temporal_avg.comp.hex.h ├── rife_v4_timestep.comp.hex.h ├── warp.comp.hex.h ├── warp.cpp ├── warp_pack4.comp.hex.h └── warp_pack8.comp.hex.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/AviSynthPlus-RIFE/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/AviSynthPlus-RIFE/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/AviSynthPlus-RIFE/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/AviSynthPlus-RIFE/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/AviSynthPlus-RIFE/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/AviSynthPlus-RIFE/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/AviSynthPlus-RIFE/HEAD/README.md -------------------------------------------------------------------------------- /cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/AviSynthPlus-RIFE/HEAD/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /src/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/AviSynthPlus-RIFE/HEAD/src/plugin.cpp -------------------------------------------------------------------------------- /src/rife.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/AviSynthPlus-RIFE/HEAD/src/rife.cpp -------------------------------------------------------------------------------- /src/rife.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/AviSynthPlus-RIFE/HEAD/src/rife.h -------------------------------------------------------------------------------- /src/rife.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/AviSynthPlus-RIFE/HEAD/src/rife.rc -------------------------------------------------------------------------------- /src/rife_flow_tta_avg.comp.hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/AviSynthPlus-RIFE/HEAD/src/rife_flow_tta_avg.comp.hex.h -------------------------------------------------------------------------------- /src/rife_flow_tta_temporal_avg.comp.hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/AviSynthPlus-RIFE/HEAD/src/rife_flow_tta_temporal_avg.comp.hex.h -------------------------------------------------------------------------------- /src/rife_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/AviSynthPlus-RIFE/HEAD/src/rife_ops.h -------------------------------------------------------------------------------- /src/rife_out_tta_temporal_avg.comp.hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/AviSynthPlus-RIFE/HEAD/src/rife_out_tta_temporal_avg.comp.hex.h -------------------------------------------------------------------------------- /src/rife_postproc.comp.hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/AviSynthPlus-RIFE/HEAD/src/rife_postproc.comp.hex.h -------------------------------------------------------------------------------- /src/rife_postproc_tta.comp.hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/AviSynthPlus-RIFE/HEAD/src/rife_postproc_tta.comp.hex.h -------------------------------------------------------------------------------- /src/rife_preproc.comp.hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/AviSynthPlus-RIFE/HEAD/src/rife_preproc.comp.hex.h -------------------------------------------------------------------------------- /src/rife_preproc_tta.comp.hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/AviSynthPlus-RIFE/HEAD/src/rife_preproc_tta.comp.hex.h -------------------------------------------------------------------------------- /src/rife_v2_flow_tta_avg.comp.hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/AviSynthPlus-RIFE/HEAD/src/rife_v2_flow_tta_avg.comp.hex.h -------------------------------------------------------------------------------- /src/rife_v2_flow_tta_temporal_avg.comp.hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/AviSynthPlus-RIFE/HEAD/src/rife_v2_flow_tta_temporal_avg.comp.hex.h -------------------------------------------------------------------------------- /src/rife_v4_timestep.comp.hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/AviSynthPlus-RIFE/HEAD/src/rife_v4_timestep.comp.hex.h -------------------------------------------------------------------------------- /src/warp.comp.hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/AviSynthPlus-RIFE/HEAD/src/warp.comp.hex.h -------------------------------------------------------------------------------- /src/warp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/AviSynthPlus-RIFE/HEAD/src/warp.cpp -------------------------------------------------------------------------------- /src/warp_pack4.comp.hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/AviSynthPlus-RIFE/HEAD/src/warp_pack4.comp.hex.h -------------------------------------------------------------------------------- /src/warp_pack8.comp.hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asd-g/AviSynthPlus-RIFE/HEAD/src/warp_pack8.comp.hex.h --------------------------------------------------------------------------------