MAA2
From Avisynth wiki
Abstract | |
---|---|
Author | line0 |
Version | v0.41 |
Download | maa2.avsi |
Category | Anti-aliasing |
License | |
Discussion |
Contents |
Description
Updated version of the MAA antialising script. MAA2 uses tp7's SangNom2 and FTurn, which provide a nice speedup for SangNom-based antialiasing, especially when only processing the luma plane.
The defaults of MAA2 match up with MAA, so you'll get identical output (save for the more accurate border region processing of SangNom2) when using this script as a drop-in replacement.
Requirements
- AviSynth 2.6.0 or greater
- Progressive input only
- Supported color formats: Y8, YV12, YV24
Required Plugins
Latest versions of the following filters are recommended unless stated otherwise.
Syntax and Parameters
- maa2 (clip c, int "mask", bool "chroma", float "ss", int "aa", int "aac", int "threads", int "show")
- clip c =
- Input clip to be processed.
- clip c =
- int mask = 1
- 0: Disable masking
- 1: Enable masking
- -i: Enable masking with custom threshold (sensible values are between 0 and 30)
- int mask = 1
- bool chroma = false
- false: Don't process chroma channels (copy UV from the source clip if present)
- true: Process chroma channels
- bool chroma = false
- float ss = 2.0
- Supersampling factor (sensible values are between 2.0 and 4.0 for HD content)
- float ss = 2.0
- int aa = 48
- SangNom2 luma antialiasing strength.
- int aa = 48
- int aac = aa-8
- SangNom2 chroma antialiasing strength.
- int aac = aa-8
- int threads = 4
- Number of threads used by every SangNom2 instance.
- int threads = 4
- int show = 0
- 0: Don't overlay mask
- 1: Overlay mask only
- 2: Overlay mask and run antialiasing on the luma plane
- int show = 0
Examples
MAA2 with default settings:
AviSource("Blah.avi") maa2 (mask=1, chroma=false, ss=2.0, aa=48, aac=40, threads=4, show=0)
Changelog
For all changes see commit history here.
External Links
- Git Hub - Git repository.
Back to External Filters ←