mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-24 02:24:07 +00:00
Enable deblocking for every preset
Deblocking adds very little complexity while giving massive coding performance boost
This commit is contained in:
parent
2c7092c762
commit
68c6f0f7b8
|
@ -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
|
||||||
|
|
|
@ -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",
|
||||||
|
|
Loading…
Reference in a new issue