mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-24 02:24:07 +00:00
Update presets veryslow and placebo a bit
Both use now --gop 16, --intra-qp-offset -3, --me tz, and --transform-skip
This commit is contained in:
parent
1dfc69b42e
commit
7b7358c25a
|
@ -316,9 +316,9 @@ where the names have been abbreviated to fit the layout in GitHub.
|
|||
| rd | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 2 | 2 |
|
||||
| pu-depth-intra | 2-3 | 2-3 | 2-3 | 2-3 | 1-3 | 1-4 | 1-4 | 1-4 | 1-4 | 1-4 |
|
||||
| pu-depth-inter | 2-3 | 2-3 | 1-3 | 1-3 | 1-3 | 0-3 | 0-3 | 0-3 | 0-3 | 0-3 |
|
||||
| me | hexbs | hexbs | hexbs | hexbs | hexbs | hexbs | hexbs | hexbs | hexbs | tz |
|
||||
| gop | g4d4t1| g4d4t1| g4d4t1| g4d4t1| g4d4t1| 8 | 8 | 8 | 8 | 8 |
|
||||
| intra-qp-offset | 0 | 0 | 0 | 0 | 0 | -2 | -2 | -2 | -2 | -2 |
|
||||
| me | hexbs | hexbs | hexbs | hexbs | hexbs | hexbs | hexbs | hexbs | tz | tz |
|
||||
| gop | g4d4t1| g4d4t1| g4d4t1| g4d4t1| g4d4t1| 8 | 8 | 8 | 16 | 16 |
|
||||
| intra-qp-offset | 0 | 0 | 0 | 0 | 0 | -2 | -2 | -2 | -3 | -3 |
|
||||
| ref | 1 | 1 | 1 | 1 | 2 | 4 | 4 | 4 | 4 | 4 |
|
||||
| bipred | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 |
|
||||
| deblock | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
|
||||
|
@ -327,7 +327,7 @@ where the names have been abbreviated to fit the layout in GitHub.
|
|||
| sao | off | full | full | full | full | full | full | full | full | full |
|
||||
| rdoq | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 |
|
||||
| rdoq-skip | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
|
||||
| transform-skip | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 |
|
||||
| transform-skip | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 |
|
||||
| mv-rdo | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 |
|
||||
| full-intra-search | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
|
||||
| smp | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 |
|
||||
|
|
12
src/cfg.c
12
src/cfg.c
|
@ -634,9 +634,9 @@ int kvz_config_parse(kvz_config *cfg, const char *name, const char *value)
|
|||
"rd", "2",
|
||||
"pu-depth-intra", "1-4",
|
||||
"pu-depth-inter", "0-3",
|
||||
"me", "hexbs",
|
||||
"gop", "8",
|
||||
"intra-qp-offset", "-2",
|
||||
"me", "tz",
|
||||
"gop", "16",
|
||||
"intra-qp-offset", "-3",
|
||||
"ref", "4",
|
||||
"bipred", "1",
|
||||
"deblock", "0:0",
|
||||
|
@ -645,7 +645,7 @@ int kvz_config_parse(kvz_config *cfg, const char *name, const char *value)
|
|||
"sao", "full",
|
||||
"rdoq", "1",
|
||||
"rdoq-skip", "0",
|
||||
"transform-skip", "0",
|
||||
"transform-skip", "1",
|
||||
"mv-rdo", "0",
|
||||
"full-intra-search", "0",
|
||||
"smp", "1",
|
||||
|
@ -664,8 +664,8 @@ int kvz_config_parse(kvz_config *cfg, const char *name, const char *value)
|
|||
"pu-depth-intra", "1-4",
|
||||
"pu-depth-inter", "0-3",
|
||||
"me", "tz",
|
||||
"gop", "8",
|
||||
"intra-qp-offset", "-2",
|
||||
"gop", "16",
|
||||
"intra-qp-offset", "-3",
|
||||
"ref", "4",
|
||||
"bipred", "1",
|
||||
"deblock", "0:0",
|
||||
|
|
Loading…
Reference in a new issue