Enable deblocking for every preset

Deblocking adds very little complexity
while giving massive coding performance boost
This commit is contained in:
Ari Lemmetti 2016-05-17 18:50:31 +03:00
parent 2c7092c762
commit 68c6f0f7b8
2 changed files with 3 additions and 3 deletions

View file

@ -185,7 +185,7 @@ pu-depth-intra | 2-3 | 1-3 | 1-3 | 1-3 | 1-3 | 1-4 | 1-4 | 1-4
pu-depth-inter | 1-3 | 1-3 | 0-3 | 0-3 | 0-3 | 0-3 | 0-3 | 0-3 | 0-3 | 0-3 pu-depth-inter | 1-3 | 1-3 | 0-3 | 0-3 | 0-3 | 0-3 | 0-3 | 0-3 | 0-3 | 0-3
me | hexbs | hexbs | hexbs | hexbs | hexbs | hexbs | hexbs | tz | tz | tz me | hexbs | hexbs | hexbs | hexbs | hexbs | hexbs | hexbs | tz | tz | tz
ref | 1 | 1 | 2 | 2 | 2 | 3 | 3 | 4 | 4 | 6 ref | 1 | 1 | 2 | 2 | 2 | 3 | 3 | 4 | 4 | 6
deblock | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 deblock | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1
signhide | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 signhide | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1
subme | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 subme | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1
sao | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 sao | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1

View file

@ -298,7 +298,7 @@ int kvz_config_parse(kvz_config *cfg, const char *name, const char *value)
"rd", "0", "rd", "0",
"me", "hexbs", "me", "hexbs",
"ref", "1", "ref", "1",
"deblock", "0", "deblock", "1",
"signhide", "0", "signhide", "0",
"subme", "0", "subme", "0",
"sao", "0", "sao", "0",
@ -317,7 +317,7 @@ int kvz_config_parse(kvz_config *cfg, const char *name, const char *value)
"rd", "1", "rd", "1",
"me", "hexbs", "me", "hexbs",
"ref", "1", "ref", "1",
"deblock", "0", "deblock", "1",
"signhide", "0", "signhide", "0",
"subme", "0", "subme", "0",
"sao", "0", "sao", "0",