DeblockPP7
From Avisynth wiki
(Difference between revisions)
(DeblockPP7) |
m (typo) |
||
Line 2: | Line 2: | ||
{{Filter3 | {{Filter3 | ||
|John Doe | |John Doe | ||
− | | | + | |1.0 |
|3=[http://forum.doom9.org/attachment.php?attachmentid=14970&d=1440108276 DeblockPP7_Avisynth_2_5.rar] | |3=[http://forum.doom9.org/attachment.php?attachmentid=14970&d=1440108276 DeblockPP7_Avisynth_2_5.rar] | ||
|4=Deblocker | |4=Deblocker | ||
Line 41: | Line 41: | ||
DeblockPP7 with default settings: | DeblockPP7 with default settings: | ||
MPEG2Source("Blocky.dv2") | MPEG2Source("Blocky.dv2") | ||
− | DeblockPP7( | + | DeblockPP7(qp=5, mode="medium", mmx=true) |
<br> | <br> |
Revision as of 22:26, 22 August 2015
Abstract | |
---|---|
Author | John Doe |
Version | 1.0 |
Download | DeblockPP7_Avisynth_2_5.rar |
Category | Deblocker |
License | GPLv2 |
Discussion | Doom9 Thread |
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.
Requirements
- AviSynth 2.5.8 or greater
- Progressive input only
- Supported color formats: YUY2, YV12
- Width and height need to be Mod 8.
Syntax and Parameters
- DeblockPP7 (clip, int "qp", string "mode", bool "mmx")
- clip =
- Input clip.
- clip =
- int qp = 5
- Force a constant quantization parameter. It accepts an integer in range 0 to 63.
- int qp = 5
- string mode = "medium"
- Set thresholding mode. Available modes are:
-
"soft"
: set soft thresholding (better de-ringing effect, but likely blurrier). -
"medium"
: set medium thresholding (good results, default). -
"hard"
: set hard thresholding.
-
- Set thresholding mode. Available modes are:
- string mode = "medium"
- bool mmx = true
- Set to false to disable MMX optimizations.
- bool mmx = true
Examples
DeblockPP7 with default settings:
MPEG2Source("Blocky.dv2") DeblockPP7(qp=5, mode="medium", mmx=true)
External Links
- Doom9 Forum - DeblockPP7 discussion.
Back to External Filters ←