Metadata-Version: 2.4
Name: vapoursynth-deblock
Version: 8.0
Summary: It does a deblocking of the picture, using the deblocking filter of h264
Keywords: vapoursynth,deblock
License-Expression: GPL-2.0-or-later
License-File: LICENSE
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Plugins
Classifier: Natural Language :: English
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Programming Language :: C++
Classifier: Topic :: Multimedia :: Video
Project-URL: Repository, https://github.com/HomeOfVapourSynthEvolution/VapourSynth-Deblock
Project-URL: Issues, https://github.com/HomeOfVapourSynthEvolution/VapourSynth-Deblock/issues
Requires-Python: >=3.12
Requires-Dist: VapourSynth>=74
Description-Content-Type: text/markdown

# Deblock

It does a deblocking of the picture, using the deblocking filter of h264.

Ported from AviSynth plugin http://www.avisynth.nl/users/fizick/mvtools/deblock.html.


## Parameters

```py
deblock.Deblock(vnode clip[, int quant=25, int aoffset=0, int boffset=0, int[] planes=[0, 1, 2]])
```

- clip: Clip to process. Any format with either integer sample type of 8-16 bit depth or float sample type of 32 bit depth is supported.

- quant: The higher the quant, the stronger the deblocking. It can range from 0 to 60.

- aoffset: Quant modifier to the blocking detector threshold. Setting it higher means than more edges will deblocked.

- boffset: Another quant modifier, for block detecting and for deblocking's strength. There again, the higher, the stronger.

- planes: Specifies which planes will be processed. Any unprocessed planes will be simply copied.

If `quant` + `aoffset` is inferior to 16, the filter does nothing at all. The same goes for `quant` + `boffset`.


## Installation

```
pip install -U vapoursynth-deblock
```
