From aeef5ebbac8b18d04681806fc9bf615559d6a891 Mon Sep 17 00:00:00 2001 From: msg7086 Date: Wed, 8 Oct 2014 05:14:27 -0700 Subject: [PATCH] Bump to v1.1 --- README.md | 3 ++- src/vs_it_interface.h | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 293207f..62143a4 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # VapourSynth-IT -VS_IT.dll v0103.1.0 Copyright(C) 2002 thejam79, 2003 minamina, 2014 msg7086 +VS_IT.dll v0103.1.1 Copyright(C) 2002 thejam79, 2003 minamina, 2014 msg7086 VapourSynth Plugin - Inverse Telecine (YV12 Only, IT-0051 base, IT_YV12-0103 base) @@ -67,6 +67,7 @@ You are welcome to send PR if you can help to improve the code quality. ## ChangeLog +- v1.1 14/10/08 Move 2 thread variables back to object to improve speed. Now we support compiling under Linux using g++ and clang++. Clang version appears to be faster but YMMV. - v1.0 14/10/06 All inline asm code has been translated to pure C and SSE2 intrinsics. SSE2 comes with 30% speed up compared to original MMX code. - v0.4 14/10/04 Code cleanup. Special thanks to macromizer for cleaning up macros. - v0.3 14/10/03 Code cleanup, multiple instances problem fixed diff --git a/src/vs_it_interface.h b/src/vs_it_interface.h index e117b2c..36a9521 100644 --- a/src/vs_it_interface.h +++ b/src/vs_it_interface.h @@ -40,7 +40,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110 - 1301, USA #define PARAM_INT(name, def) int name = int64ToIntS(vsapi->propGetInt(in, #name, 0, &err)); if (err) { name = def; } -#define IT_VERSION "0103." "1.0" +#define IT_VERSION "0103." "1.1" #include "IScriptEnvironment.h" #include "vs_it.h"