├── .gitignore ├── CHANGELOG-TDeint.md ├── CHANGELOG-TIVTC.md ├── Doc_TDeint └── tdeint.htm ├── Doc_TIVTC ├── FieldDiff - READ ME.txt ├── FrameDiff - READ ME.txt ├── MergeHints - READ ME.txt ├── RequestLinear - READ ME.txt ├── ShowCombedTIVTC - READ ME.txt ├── TDecimate - READ ME.txt ├── TFM - READ ME.txt └── TIVTC - READ ME.txt ├── README.md ├── RetrieveRanges ├── RetrieveRanges-ReadMe.txt ├── RetrieveRanges.cpp ├── RetrieveRanges.exe ├── gpl.txt └── makefile ├── examples ├── TFM-example_ovr_file.txt ├── TFM-example_ovr_file_with_explanations.txt ├── TIVTC - Common Usage Examples.txt ├── clip2_sample_avs.avs ├── override_sample_avs.avs ├── tfm_tdeint+eedi2_postprocessing.avs ├── tfm_tdeint-bob_blend+eedi2_postprocessing.avs ├── tfm_tdeint_postprocessing.avs └── two pass mkv vfr example │ ├── first pass script.avs │ └── second pass script.avs └── src ├── CMakeLists.txt ├── TDeint ├── CMakeLists.txt ├── Files.cmake ├── TDBuf.cpp ├── TDBuf.h ├── TDeintASM.cpp ├── TDeintASM.h ├── TDeinterlace.cpp ├── TDeinterlace.h ├── TDeinterlace.rc ├── TDeinterlace.sln ├── TDeinterlace.vcproj ├── TDeinterlace.vcxproj ├── TDeinterlace.vcxproj.filters ├── TDeinterlacePlanar.cpp ├── TDeinterlaceYUY2.cpp ├── THelper.cpp ├── THelper.h ├── TSwitch.cpp ├── TSwitch.h ├── gpl.txt └── resource.h ├── TIVTC.sln ├── TIVTC ├── CMakeLists.txt ├── Cache.cpp ├── Cache.h ├── Cycle.cpp ├── Cycle.h ├── FieldDiff.cpp ├── FieldDiff.h ├── Files.cmake ├── Font.h ├── FrameDiff.cpp ├── FrameDiff.h ├── IsCombedTIVTC.cpp ├── MergeHints.cpp ├── MergeHints.h ├── PlanarFrame.cpp ├── PlanarFrame.h ├── PluginInit.cpp ├── RequestLinear.cpp ├── RequestLinear.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 ├── TFMYUY2.cpp ├── TFMasm.h ├── TIVTC.rc ├── TIVTC.vcproj ├── TIVTC.vcxproj ├── TIVTC.vcxproj.filters ├── calcCRC.cpp ├── calcCRC.h ├── gpl.txt ├── profUtil.cpp ├── profUtil.h └── resource.h ├── cmake_uninstall.cmake.in ├── common ├── TCommonASM.cpp ├── TCommonASM.h ├── fixedfonts.cpp ├── fixedfonts.h ├── info.cpp ├── info.h ├── internal.cpp └── internal.h └── include ├── avisynth.h └── avs ├── alignment.h ├── capi.h ├── config.h ├── cpuid.h ├── filesystem.h ├── minmax.h ├── posix.h ├── types.h └── win.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG-TDeint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/CHANGELOG-TDeint.md -------------------------------------------------------------------------------- /CHANGELOG-TIVTC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/CHANGELOG-TIVTC.md -------------------------------------------------------------------------------- /Doc_TDeint/tdeint.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/Doc_TDeint/tdeint.htm -------------------------------------------------------------------------------- /Doc_TIVTC/FieldDiff - READ ME.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/Doc_TIVTC/FieldDiff - READ ME.txt -------------------------------------------------------------------------------- /Doc_TIVTC/FrameDiff - READ ME.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/Doc_TIVTC/FrameDiff - READ ME.txt -------------------------------------------------------------------------------- /Doc_TIVTC/MergeHints - READ ME.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/Doc_TIVTC/MergeHints - READ ME.txt -------------------------------------------------------------------------------- /Doc_TIVTC/RequestLinear - READ ME.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/Doc_TIVTC/RequestLinear - READ ME.txt -------------------------------------------------------------------------------- /Doc_TIVTC/ShowCombedTIVTC - READ ME.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/Doc_TIVTC/ShowCombedTIVTC - READ ME.txt -------------------------------------------------------------------------------- /Doc_TIVTC/TDecimate - READ ME.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/Doc_TIVTC/TDecimate - READ ME.txt -------------------------------------------------------------------------------- /Doc_TIVTC/TFM - READ ME.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/Doc_TIVTC/TFM - READ ME.txt -------------------------------------------------------------------------------- /Doc_TIVTC/TIVTC - READ ME.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/Doc_TIVTC/TIVTC - READ ME.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/README.md -------------------------------------------------------------------------------- /RetrieveRanges/RetrieveRanges-ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/RetrieveRanges/RetrieveRanges-ReadMe.txt -------------------------------------------------------------------------------- /RetrieveRanges/RetrieveRanges.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/RetrieveRanges/RetrieveRanges.cpp -------------------------------------------------------------------------------- /RetrieveRanges/RetrieveRanges.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/RetrieveRanges/RetrieveRanges.exe -------------------------------------------------------------------------------- /RetrieveRanges/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/RetrieveRanges/gpl.txt -------------------------------------------------------------------------------- /RetrieveRanges/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/RetrieveRanges/makefile -------------------------------------------------------------------------------- /examples/TFM-example_ovr_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/examples/TFM-example_ovr_file.txt -------------------------------------------------------------------------------- /examples/TFM-example_ovr_file_with_explanations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/examples/TFM-example_ovr_file_with_explanations.txt -------------------------------------------------------------------------------- /examples/TIVTC - Common Usage Examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/examples/TIVTC - Common Usage Examples.txt -------------------------------------------------------------------------------- /examples/clip2_sample_avs.avs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/examples/clip2_sample_avs.avs -------------------------------------------------------------------------------- /examples/override_sample_avs.avs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/examples/override_sample_avs.avs -------------------------------------------------------------------------------- /examples/tfm_tdeint+eedi2_postprocessing.avs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/examples/tfm_tdeint+eedi2_postprocessing.avs -------------------------------------------------------------------------------- /examples/tfm_tdeint-bob_blend+eedi2_postprocessing.avs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/examples/tfm_tdeint-bob_blend+eedi2_postprocessing.avs -------------------------------------------------------------------------------- /examples/tfm_tdeint_postprocessing.avs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/examples/tfm_tdeint_postprocessing.avs -------------------------------------------------------------------------------- /examples/two pass mkv vfr example/first pass script.avs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/examples/two pass mkv vfr example/first pass script.avs -------------------------------------------------------------------------------- /examples/two pass mkv vfr example/second pass script.avs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/examples/two pass mkv vfr example/second pass script.avs -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/TDeint/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TDeint/CMakeLists.txt -------------------------------------------------------------------------------- /src/TDeint/Files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TDeint/Files.cmake -------------------------------------------------------------------------------- /src/TDeint/TDBuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TDeint/TDBuf.cpp -------------------------------------------------------------------------------- /src/TDeint/TDBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TDeint/TDBuf.h -------------------------------------------------------------------------------- /src/TDeint/TDeintASM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TDeint/TDeintASM.cpp -------------------------------------------------------------------------------- /src/TDeint/TDeintASM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TDeint/TDeintASM.h -------------------------------------------------------------------------------- /src/TDeint/TDeinterlace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TDeint/TDeinterlace.cpp -------------------------------------------------------------------------------- /src/TDeint/TDeinterlace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TDeint/TDeinterlace.h -------------------------------------------------------------------------------- /src/TDeint/TDeinterlace.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TDeint/TDeinterlace.rc -------------------------------------------------------------------------------- /src/TDeint/TDeinterlace.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TDeint/TDeinterlace.sln -------------------------------------------------------------------------------- /src/TDeint/TDeinterlace.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TDeint/TDeinterlace.vcproj -------------------------------------------------------------------------------- /src/TDeint/TDeinterlace.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TDeint/TDeinterlace.vcxproj -------------------------------------------------------------------------------- /src/TDeint/TDeinterlace.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TDeint/TDeinterlace.vcxproj.filters -------------------------------------------------------------------------------- /src/TDeint/TDeinterlacePlanar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TDeint/TDeinterlacePlanar.cpp -------------------------------------------------------------------------------- /src/TDeint/TDeinterlaceYUY2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TDeint/TDeinterlaceYUY2.cpp -------------------------------------------------------------------------------- /src/TDeint/THelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TDeint/THelper.cpp -------------------------------------------------------------------------------- /src/TDeint/THelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TDeint/THelper.h -------------------------------------------------------------------------------- /src/TDeint/TSwitch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TDeint/TSwitch.cpp -------------------------------------------------------------------------------- /src/TDeint/TSwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TDeint/TSwitch.h -------------------------------------------------------------------------------- /src/TDeint/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TDeint/gpl.txt -------------------------------------------------------------------------------- /src/TDeint/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TDeint/resource.h -------------------------------------------------------------------------------- /src/TIVTC.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC.sln -------------------------------------------------------------------------------- /src/TIVTC/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/CMakeLists.txt -------------------------------------------------------------------------------- /src/TIVTC/Cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/Cache.cpp -------------------------------------------------------------------------------- /src/TIVTC/Cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/Cache.h -------------------------------------------------------------------------------- /src/TIVTC/Cycle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/Cycle.cpp -------------------------------------------------------------------------------- /src/TIVTC/Cycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/Cycle.h -------------------------------------------------------------------------------- /src/TIVTC/FieldDiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/FieldDiff.cpp -------------------------------------------------------------------------------- /src/TIVTC/FieldDiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/FieldDiff.h -------------------------------------------------------------------------------- /src/TIVTC/Files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/Files.cmake -------------------------------------------------------------------------------- /src/TIVTC/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/Font.h -------------------------------------------------------------------------------- /src/TIVTC/FrameDiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/FrameDiff.cpp -------------------------------------------------------------------------------- /src/TIVTC/FrameDiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/FrameDiff.h -------------------------------------------------------------------------------- /src/TIVTC/IsCombedTIVTC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/IsCombedTIVTC.cpp -------------------------------------------------------------------------------- /src/TIVTC/MergeHints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/MergeHints.cpp -------------------------------------------------------------------------------- /src/TIVTC/MergeHints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/MergeHints.h -------------------------------------------------------------------------------- /src/TIVTC/PlanarFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/PlanarFrame.cpp -------------------------------------------------------------------------------- /src/TIVTC/PlanarFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/PlanarFrame.h -------------------------------------------------------------------------------- /src/TIVTC/PluginInit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/PluginInit.cpp -------------------------------------------------------------------------------- /src/TIVTC/RequestLinear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/RequestLinear.cpp -------------------------------------------------------------------------------- /src/TIVTC/RequestLinear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/RequestLinear.h -------------------------------------------------------------------------------- /src/TIVTC/TDecimate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/TDecimate.cpp -------------------------------------------------------------------------------- /src/TIVTC/TDecimate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/TDecimate.h -------------------------------------------------------------------------------- /src/TIVTC/TDecimateASM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/TDecimateASM.cpp -------------------------------------------------------------------------------- /src/TIVTC/TDecimateASM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/TDecimateASM.h -------------------------------------------------------------------------------- /src/TIVTC/TDecimateBlur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/TDecimateBlur.cpp -------------------------------------------------------------------------------- /src/TIVTC/TDecimateMode2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/TDecimateMode2.cpp -------------------------------------------------------------------------------- /src/TIVTC/TDecimateMode7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/TDecimateMode7.cpp -------------------------------------------------------------------------------- /src/TIVTC/TDecimateOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/TDecimateOut.cpp -------------------------------------------------------------------------------- /src/TIVTC/TFM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/TFM.cpp -------------------------------------------------------------------------------- /src/TIVTC/TFM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/TFM.h -------------------------------------------------------------------------------- /src/TIVTC/TFMASM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/TFMASM.cpp -------------------------------------------------------------------------------- /src/TIVTC/TFMD2V.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/TFMD2V.cpp -------------------------------------------------------------------------------- /src/TIVTC/TFMPP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/TFMPP.cpp -------------------------------------------------------------------------------- /src/TIVTC/TFMPP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/TFMPP.h -------------------------------------------------------------------------------- /src/TIVTC/TFMPlanar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/TFMPlanar.cpp -------------------------------------------------------------------------------- /src/TIVTC/TFMYUY2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/TFMYUY2.cpp -------------------------------------------------------------------------------- /src/TIVTC/TFMasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/TFMasm.h -------------------------------------------------------------------------------- /src/TIVTC/TIVTC.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/TIVTC.rc -------------------------------------------------------------------------------- /src/TIVTC/TIVTC.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/TIVTC.vcproj -------------------------------------------------------------------------------- /src/TIVTC/TIVTC.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/TIVTC.vcxproj -------------------------------------------------------------------------------- /src/TIVTC/TIVTC.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/TIVTC.vcxproj.filters -------------------------------------------------------------------------------- /src/TIVTC/calcCRC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/calcCRC.cpp -------------------------------------------------------------------------------- /src/TIVTC/calcCRC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/calcCRC.h -------------------------------------------------------------------------------- /src/TIVTC/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/gpl.txt -------------------------------------------------------------------------------- /src/TIVTC/profUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/profUtil.cpp -------------------------------------------------------------------------------- /src/TIVTC/profUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/profUtil.h -------------------------------------------------------------------------------- /src/TIVTC/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/TIVTC/resource.h -------------------------------------------------------------------------------- /src/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /src/common/TCommonASM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/common/TCommonASM.cpp -------------------------------------------------------------------------------- /src/common/TCommonASM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/common/TCommonASM.h -------------------------------------------------------------------------------- /src/common/fixedfonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/common/fixedfonts.cpp -------------------------------------------------------------------------------- /src/common/fixedfonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/common/fixedfonts.h -------------------------------------------------------------------------------- /src/common/info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/common/info.cpp -------------------------------------------------------------------------------- /src/common/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/common/info.h -------------------------------------------------------------------------------- /src/common/internal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/common/internal.cpp -------------------------------------------------------------------------------- /src/common/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/common/internal.h -------------------------------------------------------------------------------- /src/include/avisynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/include/avisynth.h -------------------------------------------------------------------------------- /src/include/avs/alignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/include/avs/alignment.h -------------------------------------------------------------------------------- /src/include/avs/capi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/include/avs/capi.h -------------------------------------------------------------------------------- /src/include/avs/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/include/avs/config.h -------------------------------------------------------------------------------- /src/include/avs/cpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/include/avs/cpuid.h -------------------------------------------------------------------------------- /src/include/avs/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/include/avs/filesystem.h -------------------------------------------------------------------------------- /src/include/avs/minmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/include/avs/minmax.h -------------------------------------------------------------------------------- /src/include/avs/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/include/avs/posix.h -------------------------------------------------------------------------------- /src/include/avs/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/include/avs/types.h -------------------------------------------------------------------------------- /src/include/avs/win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterf/TIVTC/HEAD/src/include/avs/win.h --------------------------------------------------------------------------------