Deblock QED
From Avisynth
| Abstract | |
|---|---|
| Author | Didée |
| Version | 1.0 |
| Download | Deblock_QED.avs |
| Category | Deblockers |
| Requirements |
|
| License | |
DeBlock_QED(clip clp[, int "quant1"[, int "quant2"[, int "aOff1"[, int "bOff1"[, int "aOff2"[, int "bOff2"[, int "uv"]]]]]]])
Contents |
[edit] Abstract
Designed to provide 8x8 deblocking sensitive to the amount of blocking in the source, compared to other deblockers which apply a uniform deblocking across every frame.
[edit] Requires Filters
[edit] Description
quant1 int = 20
Strength of block edge deblocking.
quant2 int = 40
Strength of block internal deblocking.
aOff1 int = quant1/2
bOff1 int = quant1/4
aOff2 int = quant1/4
bOff2 int = quant1/8
Modifies block detection and removal strength, for quant1 and quant2 respectively. See DeBlock for more information.
uv int = 3
Deblock chroma:
- 2 : Copy chroma from source.
- 3 : Process chroma.
- 1/-1 : Process chroma with normal/strong Deblock().
[edit] Examples
AviSource("Blah.avi") Deblock_QED(25, uv=false)
[edit] Changelog
[edit] Links
Download Deblock_QED.avs
Download Deblock_QED.avs for MaskTools2

