MAA2

From Avisynth wiki
Jump to: navigation, search
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

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.


int  mask = 1
  • 0: Disable masking
  • 1: Enable masking
  • -i: Enable masking with custom threshold (sensible values are between 0 and 30)


bool  chroma = false
  • false: Don't process chroma channels (copy UV from the source clip if present)
  • true: Process chroma channels


float  ss = 2.0
  • Supersampling factor (sensible values are between 2.0 and 4.0 for HD content)


int  aa = 48


int  aac = aa-8
  • SangNom2 chroma antialiasing strength.


int  threads = 4
  • Number of threads used by every SangNom2 instance.


int  show = 0
  • 0: Don't overlay mask
  • 1: Overlay mask only
  • 2: Overlay mask and run antialiasing on the luma plane


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





Back to External Filters

Personal tools