VsDeblockPP7
From Avisynth wiki
Abstract | |
---|---|
Author | Asd-g |
Version | 1.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
- [x86]: AviSynth+ or AviSynth 2.6
- [x64]: AviSynth+
- Progressive input only
- Supported color formats: Y8, YV12, YV16. YV24
- AviSynth+: all planar formats (8/10/12/14/16/32-bit, Y/YUV/RGB) are supported.
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.
- clip =
- float mthresh = 2.0
- Constant quantization parameter.
- Must be between 1.0 and 63.0.
- float mthresh = 2.0
- int mode = 0
- Mode:
- 0 : Hard threshold.
- 1 : Soft threshold (better deringing, but blurrier).
- 2 : Medium threshold (compromise between hard and soft).
- Mode:
- int mode = 0
- 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.
- Planes to process.
- int y = 3
Examples
vsDeblockPP7 with default settings:
MPEG2Source("Blocky.dv2") vsDeblockPP7(mthresh=2.0, mode=0, y=3, u=3, v=3)
External Links
- GitHub - Source code repository.
Back to External Filters ←