Deblock

author: Manao
version: 0.9.5
download: http:/ /jourdan.madism.org/~manao/
category: Avisynth Plugin
requirements: YV12 Colorspace
license: This plugin is released under the GPL license. You must agree to the terms of 'Copying.txt' before using the plugin or its source code.

Function syntax

Deblock (clip, int quant, int aOffset, int bOffset)

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

quant : the higher the quant, the stronger the deblocking. It can range from 0 to 51.

aOffset : quant modifier to the blocking detector threshold. Setting it higher means that more edges will be deblocked.

bOffset : another quant modifier, for block detecting and for deblocking's strength. There again, the higher, the stronger.

Defaults are quant = 25, aOffset = bOffset = 0. If quant + aOffset is less than 16, the filter does nothing at all. The same goes for quant + bOffset.

bool mmx : flag which allows you to disable mmx optimizations if set to false. Default is true. If your computer doesn't support mmx optimizations, it will be disabled by default anyway (and you won't be able to activate them).

bool isse : flag which allows you to disable isse optimizations. Default is true, and it behaves just like mmx.