Yadifmod2
From Avisynth wiki
Abstract | |
---|---|
Author | Chikuzen |
Version | 0.0.4-1 |
Download | yadifmod2-0.0.4-1.zip |
Category | Deinterlacing |
License | GPLv2 |
Discussion | Doom9 Forum |
Contents |
Description
Yet Another Deinterlacing Filter mod for AviSynth2.6/AviSynth+.
Requirements
- [x86]: AviSynth+ or AviSynth 2.6
- [x64]: AviSynth+
- Supported color formats: Y8, YV12, YV16, YV24
- AviSynth+: all planar formats (8/10/12/14/16bit and float, YUV/RGB without alpha) are supported.
- Windows Vista SP2 or later
- SSE2 capable CPU
- Microsoft VisualC++ Redistributable Package 2015
Syntax and Parameters
- yadifmod2 (clip, int "order", int "field", int "mode", clip "edeint", int "opt")
- clip =
- All planar 8/10/12/14/16/float formats except alpha are supported.
- clip =
- int order = -1
- Set the field order.
- int order = -1
- -1(default) : use AviSynth's internal parity value
- 0 : bff (bottom field first)
- 1 : tff (top field first)
- int field = -1
- Controls which field to keep when using same rate output.
- -1 : Set equal to order
- 0 : Keep bottom field
- 1 : Keep top field
- This parameter doesn't do anything when using double rate output.
- Controls which field to keep when using same rate output.
- int field = -1
- int mode = 0
- Controls double rate vs same rate output, and whether or not the spatial interlacing check is performed.
- int mode = 0
- 0 : Same rate, do spatial check
- 1 : Double rate, do spatial check
- 2 : Same rate, no spatial check
- 3 : Double rate, no spatial check
- clip edeint = NULL
- Clip from which to take spatial predictions. If this is not set, yadifmod2 will generate spatial predictions itself as same as yadif.
- This clip must be the same width, height, colorspace and bit depth as the input clip. If using same rate output, this clip should have the same number of frames as the input. If using double rate output, this clip should have twice as many frames as the input.
- clip edeint = NULL
- int opt = others
- Controls which CPU optimizations are used.
- 0 : Use C++ routine.
- 1 : Use SSE2 + SSE routine if possible. When SSE2 can't be used, fallback to 0.
- 2 : Use SSSE3 + SSE2 + SSE routine if possible. When SSSE3 can't be used, fallback to 1.
- 3 : Use SSE4.1 + SSSE3 + SSE2 + SSE routine if possible. When SSE4.1 can't be used, fallback to 2.
- 4 : Use SSE4.1 + SSSE3 + SSE2 + AVX routine if possible. When AVX can't be used, fallback to 3.
- others : Use AVX2 + AVX routine if possible. When AVX2 can't be used, fallback to 4.(default)
- Controls which CPU optimizations are used.
- int opt = others
Examples
yadifmod2 with default settings:
AviSource("blah.avi") yadifmod2(order=-1, field=-1, mode=0, opt=0)
External Links
- GitHub - Source code repository.
Back to External Filters ←