VsDeblockPP7

From Avisynth wiki
Revision as of 23:08, 19 July 2020 by Reel.Deal (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
Abstract
Author Asd-g
Version v1.0.0
Download vsDeblockPP7-1.0.0.7z
Category Deblocker
License GPLv3
Discussion

Contents

Description

A port of the MPlayer PP7 deblocking filter. Postprocessing filter 7 is variant of the spp filter, similar to spp=6 with 7 point DCT, where only the center sample is used after IDCT.


  • vsDeblockPP7 is a port of the VapourSynth plugin DeblockPP7.


Requirements


Syntax and Parameters

vsDeblockPP7 (clip, float "mthresh", int "mode", int "y", int "u", int "v")


clip   =
A clip to process. It must be in planar format.


float  mthresh = 2.0
Constant quantization parameter.
Must be between 1.0 and 63.0.


int  mode = 0
Mode:
  • 0 : Hard threshold.
  • 1 : Soft threshold (better deringing, but blurrier).
  • 2 : Medium threshold (compromise between hard and soft).


int  y = 3
int  u = 3
int  v = 3
Planes to process.
  • 1 : Return garbage.
  • 2 : Copy plane.
  • 3 : Process plane. Always process planes when the clip is RGB.


Examples

vsDeblockPP7 with default settings:

MPEG2Source("Blocky.dv2")
vsDeblockPP7(mthresh=2.0, mode=0, y=3, u=3, v=3)


Changelog

Version      Date            Changes
v1.0.0 2020/07/10 - Initial release; port of the VapourSynth plugin - AviSynth+: self-registers as MT_MULTI_INSTANCE.


Archived Downloads

See GitHub releases page.

External Links

  • GitHub - Source code repository.




Back to External Filters


Personal tools