Yadif
From Avisynth wiki
(Difference between revisions)
m (less spaces) |
m (typo, avs link in requirements) |
||
Line 16: | Line 16: | ||
<br> | <br> | ||
== Requirements == | == Requirements == | ||
− | * AviSynth 2.5.8 or | + | * AviSynth 2.5.8 or [http://sourceforge.net/projects/avisynth2/ greater] |
* Supported color formats: [[YV12]] | * Supported color formats: [[YV12]] | ||
<br> | <br> | ||
Line 41: | Line 41: | ||
:::*true : flag for (hacked) planar YUY2 color format of input and output clips, compatible with Interleaved2planar and Planar2Interleaved functions from the RemoveGrain ([[RemoveGrain_v0.9/SSETools|SSETools]]) plugin. | :::*true : flag for (hacked) planar YUY2 color format of input and output clips, compatible with Interleaved2planar and Planar2Interleaved functions from the RemoveGrain ([[RemoveGrain_v0.9/SSETools|SSETools]]) plugin. | ||
<br> | <br> | ||
− | ::{{Par2|opt|int| | + | ::{{Par2|opt|int|-1}} |
:::*-1 : CPU optimization - auto (default). | :::*-1 : CPU optimization - auto (default). | ||
:::*0 : slow C version. | :::*0 : slow C version. |
Revision as of 21:32, 15 September 2015
Abstract | |
---|---|
Author | Fizick |
Version | v1.7 |
Download | yadif17.zip |
Category | Deinterlacing |
License | GPLv2 |
Discussion | Doom9 Thread |
Contents |
Description
Port of YADIF (Yet Another DeInterlacing Filter) from MPlayer by Michael Niedermayer. It check pixels of previous, current and next frames to re-create the missed field by some local adaptive method (edge-directed interpolation) and uses spatial check to prevent most artifacts.
Note: Yadif is a C-plugin so it must be loaded using LoadCPlugin.
Requirements
Syntax and Parameters
- Yadif (clip, int "mode", int "order", bool "planar", int "opt")
- clip =
- Input clip.
- clip =
- int mode = 0
- 0 : single frame rate, temporal and spatial interlacing check (default).
- 1 : double frame rate, temporal and spatial interlacing check.
- 2 : single frame rate, skips spatial interlacing check.
- 3 : double frame rate, skips spatial interlacing check.
- int mode = 0
- int order = 1
- -1 : field order as AviSynth assumes (default).
- 0 : bottom field first
- 1 : top field first
- int order = 1
- bool planar = false
- bool planar = false
- int opt = -1
- -1 : CPU optimization - auto (default).
- 0 : slow C version.
- 1 : Integer SSE
- 2 : SSE2
- 3 : SSSE3 (some)
- int opt = -1
Examples
Yadif with default settings:
AviSource("blah.avi") Yadif(mode=0, order=-1, planar=false, opt=-1)
Changelog
Version Date Changes
Archived Downloads
Version | Download | Mirror |
---|---|---|
v1.7 | yadif17.zip | yadif17.zip |
External Links
- Doom9 Forum - Yadif discussion.
- avisynth.org.ru - Official homepage and documentation.
Back to External Filters ←