From e6c67cf2d032770bd23282b828d38e4d4539d0c5 Mon Sep 17 00:00:00 2001 From: msg7086 Date: Wed, 1 Oct 2014 17:37:38 -0700 Subject: [PATCH] Finish 64bit/8k porting. Bump to 0.2. Solve #1. --- README.md | 7 +++++-- vs_it/vs_it_interface.h | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b7501c6..b13b942 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,12 @@ # VapourSynth-IT -VS_IT.dll v0103.0.1 Copyright(C) 2002 thejam79, 2003 minamina, 2014 msg7086 +VS_IT.dll v0103.0.2 Copyright(C) 2002 thejam79, 2003 minamina, 2014 msg7086 VapourSynth Plugin - Inverse Telecine (YV12 Only, IT-0051 base, IT_YV12-0103 base) - Original plugin: IT 0.051 by thejam79 - Original plugin: IT_YV12 v0.1.03 by minamina +- Original modify: 64bit/8k mod by anonymous from (avisynth64bitplugin) - All credits go to them. ## License @@ -28,7 +29,8 @@ VapourSynth Plugin - Inverse Telecine (YV12 Only, IT-0051 base, IT_YV12-0103 bas core.it.it(clip clip, int fps = 24, int threshold = 20, int pthreshold = 75) - fps - 24: IVTC; 30: frame-match only + clip - clip to be processed. Width < 8192 and YV12 only + fps - 24: IVTC; 30: frame-matching only threshold / pthreshold - original developer never mentioned about this (removed) blend = false (removed) ref = "TOP" @@ -46,6 +48,7 @@ v = core.it.it(v) This is a partial porting. - Only YV12 is ported and supported. +- 64bit has not been tested yet. - Source code is rarely changed, and some function calls are replaced by macro to point to new functions. - You are welcome to send PR if want to improve this. - `blend` has been removed. No blend. diff --git a/vs_it/vs_it_interface.h b/vs_it/vs_it_interface.h index f037cdf..ef85140 100644 --- a/vs_it/vs_it_interface.h +++ b/vs_it/vs_it_interface.h @@ -37,7 +37,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110 - 1301, USA #define TS_FUNC_ALIGN __attribute__((force_align_arg_pointer)) #endif -#define IT_VERSION "0103.0.1" +#define IT_VERSION "0103." "0.2" #define FAIL_IF_ERROR(cond, ...) {\ if (cond) {\