├── meson.build └── src ├── Cycle.cpp ├── Cycle.h ├── PluginInit.cpp ├── TCommonASM.cpp ├── TCommonASM.h ├── TDecimate.cpp ├── TDecimate.h ├── TDecimateASM.cpp ├── TDecimateASM.h ├── TDecimateBlur.cpp ├── TDecimateMode2.cpp ├── TDecimateMode7.cpp ├── TDecimateOut.cpp ├── TFM.cpp ├── TFM.h ├── TFMASM.cpp ├── TFMD2V.cpp ├── TFMPP.cpp ├── TFMPP.h ├── TFMPlanar.cpp ├── TFMasm.h ├── calcCRC.cpp ├── calcCRC.h ├── cpufeatures.cpp ├── cpufeatures.h └── internal.h /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/vapoursynth-tivtc/HEAD/meson.build -------------------------------------------------------------------------------- /src/Cycle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/vapoursynth-tivtc/HEAD/src/Cycle.cpp -------------------------------------------------------------------------------- /src/Cycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/vapoursynth-tivtc/HEAD/src/Cycle.h -------------------------------------------------------------------------------- /src/PluginInit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/vapoursynth-tivtc/HEAD/src/PluginInit.cpp -------------------------------------------------------------------------------- /src/TCommonASM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/vapoursynth-tivtc/HEAD/src/TCommonASM.cpp -------------------------------------------------------------------------------- /src/TCommonASM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/vapoursynth-tivtc/HEAD/src/TCommonASM.h -------------------------------------------------------------------------------- /src/TDecimate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/vapoursynth-tivtc/HEAD/src/TDecimate.cpp -------------------------------------------------------------------------------- /src/TDecimate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/vapoursynth-tivtc/HEAD/src/TDecimate.h -------------------------------------------------------------------------------- /src/TDecimateASM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/vapoursynth-tivtc/HEAD/src/TDecimateASM.cpp -------------------------------------------------------------------------------- /src/TDecimateASM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/vapoursynth-tivtc/HEAD/src/TDecimateASM.h -------------------------------------------------------------------------------- /src/TDecimateBlur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/vapoursynth-tivtc/HEAD/src/TDecimateBlur.cpp -------------------------------------------------------------------------------- /src/TDecimateMode2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/vapoursynth-tivtc/HEAD/src/TDecimateMode2.cpp -------------------------------------------------------------------------------- /src/TDecimateMode7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/vapoursynth-tivtc/HEAD/src/TDecimateMode7.cpp -------------------------------------------------------------------------------- /src/TDecimateOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/vapoursynth-tivtc/HEAD/src/TDecimateOut.cpp -------------------------------------------------------------------------------- /src/TFM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/vapoursynth-tivtc/HEAD/src/TFM.cpp -------------------------------------------------------------------------------- /src/TFM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/vapoursynth-tivtc/HEAD/src/TFM.h -------------------------------------------------------------------------------- /src/TFMASM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/vapoursynth-tivtc/HEAD/src/TFMASM.cpp -------------------------------------------------------------------------------- /src/TFMD2V.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/vapoursynth-tivtc/HEAD/src/TFMD2V.cpp -------------------------------------------------------------------------------- /src/TFMPP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/vapoursynth-tivtc/HEAD/src/TFMPP.cpp -------------------------------------------------------------------------------- /src/TFMPP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/vapoursynth-tivtc/HEAD/src/TFMPP.h -------------------------------------------------------------------------------- /src/TFMPlanar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/vapoursynth-tivtc/HEAD/src/TFMPlanar.cpp -------------------------------------------------------------------------------- /src/TFMasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/vapoursynth-tivtc/HEAD/src/TFMasm.h -------------------------------------------------------------------------------- /src/calcCRC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/vapoursynth-tivtc/HEAD/src/calcCRC.cpp -------------------------------------------------------------------------------- /src/calcCRC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/vapoursynth-tivtc/HEAD/src/calcCRC.h -------------------------------------------------------------------------------- /src/cpufeatures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/vapoursynth-tivtc/HEAD/src/cpufeatures.cpp -------------------------------------------------------------------------------- /src/cpufeatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/vapoursynth-tivtc/HEAD/src/cpufeatures.h -------------------------------------------------------------------------------- /src/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/vapoursynth-tivtc/HEAD/src/internal.h --------------------------------------------------------------------------------