DeBlock

From Avisynth wiki
(Difference between revisions)
Jump to: navigation, search
(External Links)
m (add Deep_color_tools category)
(10 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{FilterCat4|External_filters|Plugins|Restoration_filters|Deblockers}}
+
{{FilterCat6|External_filters|Plugins|Plugins_x64|Restoration_filters|Deblockers|Deep_color_tools}}
 
{{Filter3
 
{{Filter3
|{{Author/Manao}},{{Author/Fizick}}
+
|{{Author/Manao}},{{Author/Fizick}}, {{Author/tp7}}, [https://github.com/mysteryx93 MysteryX]
 
|1.3
 
|1.3
|[http://avisynth.org.ru/mvtools/deblock12.zip deblock12.zip]
+
|[https://github.com/mysteryx93/Avisynth-Deblock/releases Deblock13.zip]
 
|Deblocker
 
|Deblocker
 
|5=[http://www.gnu.org/licenses/gpl-2.0.txt GPLv2]
 
|5=[http://www.gnu.org/licenses/gpl-2.0.txt GPLv2]
|6=[http://forum.doom9.org/showthread.php?t=110352 Doom9 Thread]}}
+
|6=[https://forum.doom9.org/showthread.php?t=110352 Doom9 Thread (original v1.2)]<br>[https://forum.doom9.org/showthread.php?t=175487 Doom9 Thread (update v1.3]}}
  
Official documentation: http://avisynth.org.ru/mvtools/deblock.html
 
 
==Description==
 
==Description==
 
It performs deblocking on the picture, using the deblocking filter of H264. It's useful to deblock the result of ''MVCompensate'' of [[MVTools]] plugin, etc.<br>
 
It performs deblocking on the picture, using the deblocking filter of H264. It's useful to deblock the result of ''MVCompensate'' of [[MVTools]] plugin, etc.<br>
Line 14: Line 13:
 
<br>
 
<br>
 
== Requirements ==
 
== Requirements ==
* AviSynth 2.6.0 or later
+
* [x86]: [[AviSynth+]] or [https://sourceforge.net/projects/avisynth2/ AviSynth 2.6]
* Supported color formats: All planar formats
+
* [x64]: [[AviSynth+]]
 +
* Supported color formats: [[Y8]], [[YV12]], [[YV16]], [[YV24]], [[YV411]]
 +
**AviSynth+: all [[planar]] Y and YUV formats (8/10/12/14/16bit and float) are supported.
 
<br>
 
<br>
  
Line 22: Line 23:
 
<br>
 
<br>
 
::{{Par2| |clip| }}
 
::{{Par2| |clip| }}
:::Input clip.
+
:::Input clip, width and height must be mod 8.
  
 
::{{Par2|quant|int|25}}
 
::{{Par2|quant|int|25}}
Line 42: Line 43:
 
Deblock with default settings:
 
Deblock with default settings:
 
  MPEG2Source("Blocky.dv2")
 
  MPEG2Source("Blocky.dv2")
  Deblock(quant=25, aOffset=0, bOffset=0)
+
  Deblock(quant=25, aOffset=0, bOffset=0, planes="yuv")
  
  
Line 54: Line 55:
 
== Changelog ==
 
== Changelog ==
 
  Version      Date            Developer      Changes<br>
 
  Version      Date            Developer      Changes<br>
  v1.3        2018/05/29      MysteryX        - Back-ported from VapourSynth with high-bit-depth support
+
  v1.3        2018/05/29      MysteryX        - Back-ported code from VapourSynth
 +
                                              - Added high-bit-depth support
 +
                                              - Added Planes parameter to specify which planes to process
 +
                                              - AviSynth+: self-registers as a [[MT_NICE_FILTER]]
 
  v0.9        2013/12/03      tp7            - Faster and supports all planar colorspaces
 
  v0.9        2013/12/03      tp7            - Faster and supports all planar colorspaces
 +
                                              - Compiled with Microsoft Visual Studio C++ 2012.
 
  v1.2        2006/04/23      Fizick          - Moved code into separate project
 
  v1.2        2006/04/23      Fizick          - Moved code into separate project
 
  v1.1        2006/01/09      Manao/Fizick    - Present in old MvTools (up to v1.1)
 
  v1.1        2006/01/09      Manao/Fizick    - Present in old MvTools (up to v1.1)
Line 72: Line 77:
 
|-
 
|-
 
!v0.1.2
 
!v0.1.2
|[http://avisynth.org.ru/mvtools/deblock12.zip DctFilter.zip]
+
|[http://avisynth.org.ru/mvtools/deblock12.zip deblock12.zip]
 
|}
 
|}
 
<br>
 
<br>
  
 
==External Links==
 
==External Links==
*[http://avisynth.org.ru/mvtools/deblock.html v1.2 Documentation]
+
*[https://github.com/mysteryx93/Avisynth-Deblock GitHub] Source code repository (latest version, v1.3)
*[http://avisynth.org.ru/fizick.html Fizick's Avisynth Filters]
+
*[https://github.com/tp7/Deblock GitHub] Source code repository (older version, v0.9)
 
<br>
 
<br>
 
<br>
 
<br>

Revision as of 22:06, 25 June 2020

Abstract
Author Manao,Fizick, tp7, MysteryX
Version 1.3
Download Deblock13.zip
Category Deblocker
License GPLv2
Discussion Doom9 Thread (original v1.2)
Doom9 Thread (update v1.3

Contents

Description

It performs deblocking on the picture, using the deblocking filter of H264. It's useful to deblock the result of MVCompensate of MVTools plugin, etc.


Requirements


Syntax and Parameters

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


clip   =
Input clip, width and height must be mod 8.
int  quant = 25
The higher the quant, the stronger the deblocking. Range is from 0 to 60.
int  aOffset = 0
Quant modifier to the blocking detector threshold. Setting it higher means than more edges will deblocked.
int  bOffset = 0
Another quant modifier, for block detecting and for deblocking's strength. There again, the higher, the stronger.
string  planes = "yuv"
Specifies which planes to process between y, u and v.


  • If quant + aOffset is less than 16, the filter does nothing at all. The same goes for quant + bOffset.


Examples

Deblock with default settings:

MPEG2Source("Blocky.dv2")
Deblock(quant=25, aOffset=0, bOffset=0, planes="yuv")


To deblock the motion compensation (MVTools plugin):

vectors = source.MVAnalyse(isb = false, lambda = 1000)
compensation = source.MVCompensate(vectors, mode = 0)
compensation.Deblock()


Changelog

Version      Date            Developer       Changes
v1.3 2018/05/29 MysteryX - Back-ported code from VapourSynth - Added high-bit-depth support - Added Planes parameter to specify which planes to process - AviSynth+: self-registers as a MT_NICE_FILTER v0.9 2013/12/03 tp7 - Faster and supports all planar colorspaces - Compiled with Microsoft Visual Studio C++ 2012. v1.2 2006/04/23 Fizick - Moved code into separate project v1.1 2006/01/09 Manao/Fizick - Present in old MvTools (up to v1.1)


Archived Downloads

Version Download Mirror
v0.0.9 GitHub
v0.1.2 deblock12.zip


External Links

  • GitHub Source code repository (latest version, v1.3)
  • GitHub Source code repository (older version, v0.9)




Back to External Filters


Personal tools