Skip to content

Commit

Permalink
Finish 64bit/8k porting. Bump to 0.2. Solve #1.
Browse files Browse the repository at this point in the history
  • Loading branch information
msg7086 committed Oct 2, 2014
1 parent e893bbc commit e6c67cf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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"
Expand All @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion vs_it/vs_it_interface.h
Original file line number Diff line number Diff line change
Expand Up @@ -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) {\
Expand Down

0 comments on commit e6c67cf

Please sign in to comment.