mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-23 18:14:06 +00:00
[intra] Limit intra depth to 3 (8x8) for now
This commit is contained in:
parent
b4a3d54170
commit
c8539a3701
|
@ -373,7 +373,7 @@ where the names have been abbreviated to fit the layout in GitHub.
|
|||
| | 0-uf | 1-sf | 2-vf | 3-fr | 4-f | 5-m | 6-s | 7-sr | 8-vs | 9-p |
|
||||
| -------------------- | ----- | ----- | ----- | ----- | ----- | ----- | ----- | ----- | ----- | ----- |
|
||||
| rd | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 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-intra | 2-3 | 2-3 | 2-3 | 2-3 | 1-3 | 1-3 | 1-3 | 1-3 | 1-3 | 1-3 |
|
||||
| pu-depth-inter | 1-2 | 1-2 | 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 | tz | tz |
|
||||
| gop | 8 | 8 | 8 | 8 | 8 | 16 | 16 | 16 | 16 | 16 |
|
||||
|
|
10
src/cfg.c
10
src/cfg.c
|
@ -699,7 +699,7 @@ int uvg_config_parse(uvg_config *cfg, const char *name, const char *value)
|
|||
{
|
||||
"medium",
|
||||
"rd", "0",
|
||||
"pu-depth-intra", "1-4",
|
||||
"pu-depth-intra", "1-3",
|
||||
"pu-depth-inter", "0-3",
|
||||
"me", "hexbs",
|
||||
"gop", "16",
|
||||
|
@ -725,7 +725,7 @@ int uvg_config_parse(uvg_config *cfg, const char *name, const char *value)
|
|||
{
|
||||
"slow",
|
||||
"rd", "1",
|
||||
"pu-depth-intra", "1-4",
|
||||
"pu-depth-intra", "1-3",
|
||||
"pu-depth-inter", "0-3",
|
||||
"me", "hexbs",
|
||||
"gop", "16",
|
||||
|
@ -751,7 +751,7 @@ int uvg_config_parse(uvg_config *cfg, const char *name, const char *value)
|
|||
{
|
||||
"slower",
|
||||
"rd", "2",
|
||||
"pu-depth-intra", "1-4",
|
||||
"pu-depth-intra", "1-3",
|
||||
"pu-depth-inter", "0-3",
|
||||
"me", "hexbs",
|
||||
"gop", "16",
|
||||
|
@ -777,7 +777,7 @@ int uvg_config_parse(uvg_config *cfg, const char *name, const char *value)
|
|||
{
|
||||
"veryslow",
|
||||
"rd", "2",
|
||||
"pu-depth-intra", "1-4",
|
||||
"pu-depth-intra", "1-3",
|
||||
"pu-depth-inter", "0-3",
|
||||
"me", "tz",
|
||||
"gop", "16",
|
||||
|
@ -803,7 +803,7 @@ int uvg_config_parse(uvg_config *cfg, const char *name, const char *value)
|
|||
{
|
||||
"placebo",
|
||||
"rd", "2",
|
||||
"pu-depth-intra", "1-4",
|
||||
"pu-depth-intra", "1-3",
|
||||
"pu-depth-inter", "0-3",
|
||||
"me", "tz",
|
||||
"gop", "16",
|
||||
|
|
|
@ -149,7 +149,7 @@ typedef int16_t mv_t;
|
|||
#define PU_DEPTH_INTER_MIN 0
|
||||
#define PU_DEPTH_INTER_MAX 3
|
||||
#define PU_DEPTH_INTRA_MIN 0
|
||||
#define PU_DEPTH_INTRA_MAX 4
|
||||
#define PU_DEPTH_INTRA_MAX 3
|
||||
|
||||
//! Maximum number of layers in GOP structure (for allocating structures)
|
||||
#define MAX_GOP_LAYERS 6
|
||||
|
|
|
@ -6,7 +6,7 @@ set -eu
|
|||
|
||||
. "${0%/*}/util.sh"
|
||||
|
||||
common_args='256x128 10 yuv420p -p1 --preset=ultrafast --threads=0 --no-wpp --no-tmvp --no-deblock --sao=0 --pu-depth-intra 0-4'
|
||||
common_args='256x128 10 yuv420p -p1 --preset=ultrafast --threads=0 --no-wpp --no-tmvp --no-deblock --sao=0 --pu-depth-intra 0-3'
|
||||
valgrind_test $common_args --rd=1
|
||||
valgrind_test $common_args --rd=2 --no-transform-skip --qp 37
|
||||
valgrind_test $common_args --rd=2 --no-transform-skip --qp 37 --signhide --rdoq
|
||||
|
|
|
@ -6,6 +6,6 @@ set -eu
|
|||
|
||||
. "${0%/*}/util.sh"
|
||||
|
||||
common_args='256x128 10 yuv420p -p1 --preset=ultrafast --threads=0 --no-wpp --no-tmvp --no-deblock --sao=0 --cpuid=0 --pu-depth-intra 0-4 --lmcs'
|
||||
common_args='256x128 10 yuv420p -p1 --preset=ultrafast --threads=0 --no-wpp --no-tmvp --no-deblock --sao=0 --cpuid=0 --pu-depth-intra 0-3 --lmcs'
|
||||
valgrind_test $common_args --deblock --sao=full --alf=full
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ set -eu
|
|||
|
||||
. "${0%/*}/util.sh"
|
||||
|
||||
common_args='256x128 10 gray --hash none --preset=ultrafast --input-format P400 --threads=0 --no-wpp --no-tmvp --no-deblock --sao=0 --cpuid=0 --pu-depth-intra 0-4'
|
||||
common_args='256x128 10 gray --hash none --preset=ultrafast --input-format P400 --threads=0 --no-wpp --no-tmvp --no-deblock --sao=0 --cpuid=0 --pu-depth-intra 0-3'
|
||||
valgrind_test $common_args --rd=1 -p1
|
||||
valgrind_test $common_args --rd=2 -p1
|
||||
valgrind_test $common_args --rd=2 -p1 --deblock 0:0
|
||||
|
|
Loading…
Reference in a new issue