mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-23 18:14:06 +00:00
Update help message
Updates the default option values to match the medium preset.
This commit is contained in:
parent
2b4e22111a
commit
5c585c4fbc
12
README.md
12
README.md
|
@ -111,8 +111,8 @@ Video structure:
|
|||
--vps-period <integer> : How often the video parameter set is re-sent [0]
|
||||
- 0: Only send VPS with the first frame.
|
||||
- N: Send VPS with every Nth intra frame.
|
||||
-r, --ref <integer> : Number of reference frames, in range 1..15 [1]
|
||||
--gop <string> : GOP structure [lp-g4d3t1]
|
||||
-r, --ref <integer> : Number of reference frames, in range 1..15 [4]
|
||||
--gop <string> : GOP structure [8]
|
||||
- 0: Disabled
|
||||
- 8: B-frame pyramid of length 8
|
||||
- lp-<string>: Low-delay P-frame GOP
|
||||
|
@ -152,11 +152,11 @@ Compression tools:
|
|||
- edge: Edge offset only
|
||||
- full: Full SAO
|
||||
--(no-)rdoq : Rate-distortion optimized quantization [enabled]
|
||||
--(no-)rdoq-skip : Skip RDOQ for 4x4 blocks. [enabled]
|
||||
--(no-)rdoq-skip : Skip RDOQ for 4x4 blocks. [disabled]
|
||||
--(no-)signhide : Sign hiding [disabled]
|
||||
--(no-)smp : Symmetric motion partition [disabled]
|
||||
--(no-)amp : Asymmetric motion partition [disabled]
|
||||
--rd <integer> : Intra mode search complexity [1]
|
||||
--rd <integer> : Intra mode search complexity [0]
|
||||
- 0: Skip intra if inter is good enough.
|
||||
- 1: Rough intra mode search with SATD.
|
||||
- 2: Refine intra mode search with SSE.
|
||||
|
@ -181,9 +181,9 @@ Compression tools:
|
|||
- 2: + 1/2-pixel diagonal
|
||||
- 3: + 1/4-pixel horizontal and vertical
|
||||
- 4: + 1/4-pixel diagonal
|
||||
--pu-depth-inter <int>-<int> : Inter prediction units sizes [1-3]
|
||||
--pu-depth-inter <int>-<int> : Inter prediction units sizes [0-3]
|
||||
- 0, 1, 2, 3: from 64x64 to 8x8
|
||||
--pu-depth-intra <int>-<int> : Intra prediction units sizes [1-3]
|
||||
--pu-depth-intra <int>-<int> : Intra prediction units sizes [1-4]
|
||||
- 0, 1, 2, 3, 4: from 64x64 to 4x4
|
||||
--tr-depth-intra <int> : Transform split depth for intra blocks [0]
|
||||
--(no-)bipred : Bi-prediction [disabled]
|
||||
|
|
|
@ -112,10 +112,10 @@ How often the video parameter set is re\-sent [0]
|
|||
\- N: Send VPS with every Nth intra frame.
|
||||
.TP
|
||||
\fB\-r\fR, \fB\-\-ref <integer>
|
||||
Number of reference frames, in range 1..15 [1]
|
||||
Number of reference frames, in range 1..15 [4]
|
||||
.TP
|
||||
\fB\-\-gop <string>
|
||||
GOP structure [lp\-g4d3t1]
|
||||
GOP structure [8]
|
||||
\- 0: Disabled
|
||||
\- 8: B\-frame pyramid of length 8
|
||||
\- lp\-<string>: Low\-delay P\-frame GOP
|
||||
|
@ -181,7 +181,7 @@ Sample Adaptive Offset [full]
|
|||
Rate\-distortion optimized quantization [enabled]
|
||||
.TP
|
||||
\fB\-\-(no\-)rdoq\-skip
|
||||
Skip RDOQ for 4x4 blocks. [enabled]
|
||||
Skip RDOQ for 4x4 blocks. [disabled]
|
||||
.TP
|
||||
\fB\-\-(no\-)signhide
|
||||
Sign hiding [disabled]
|
||||
|
@ -193,7 +193,7 @@ Symmetric motion partition [disabled]
|
|||
Asymmetric motion partition [disabled]
|
||||
.TP
|
||||
\fB\-\-rd <integer>
|
||||
Intra mode search complexity [1]
|
||||
Intra mode search complexity [0]
|
||||
\- 0: Skip intra if inter is good enough.
|
||||
\- 1: Rough intra mode search with SATD.
|
||||
\- 2: Refine intra mode search with SSE.
|
||||
|
@ -232,11 +232,11 @@ Fractional pixel motion estimation level [4]
|
|||
\- 4: + 1/4\-pixel diagonal
|
||||
.TP
|
||||
\fB\-\-pu\-depth\-inter <int>\-<int>
|
||||
Inter prediction units sizes [1\-3]
|
||||
Inter prediction units sizes [0\-3]
|
||||
\- 0, 1, 2, 3: from 64x64 to 8x8
|
||||
.TP
|
||||
\fB\-\-pu\-depth\-intra <int>\-<int>
|
||||
Intra prediction units sizes [1\-3]
|
||||
Intra prediction units sizes [1\-4]
|
||||
\- 0, 1, 2, 3, 4: from 64x64 to 4x4
|
||||
.TP
|
||||
\fB\-\-tr\-depth\-intra <int>
|
||||
|
|
12
src/cli.c
12
src/cli.c
|
@ -385,8 +385,8 @@ void print_help(void)
|
|||
" --vps-period <integer> : How often the video parameter set is re-sent [0]\n"
|
||||
" - 0: Only send VPS with the first frame.\n"
|
||||
" - N: Send VPS with every Nth intra frame.\n"
|
||||
" -r, --ref <integer> : Number of reference frames, in range 1..15 [1]\n"
|
||||
" --gop <string> : GOP structure [lp-g4d3t1]\n"
|
||||
" -r, --ref <integer> : Number of reference frames, in range 1..15 [4]\n"
|
||||
" --gop <string> : GOP structure [8]\n"
|
||||
" - 0: Disabled\n"
|
||||
" - 8: B-frame pyramid of length 8\n"
|
||||
" - lp-<string>: Low-delay P-frame GOP\n"
|
||||
|
@ -427,11 +427,11 @@ void print_help(void)
|
|||
" - edge: Edge offset only\n"
|
||||
" - full: Full SAO\n"
|
||||
" --(no-)rdoq : Rate-distortion optimized quantization [enabled]\n"
|
||||
" --(no-)rdoq-skip : Skip RDOQ for 4x4 blocks. [enabled]\n"
|
||||
" --(no-)rdoq-skip : Skip RDOQ for 4x4 blocks. [disabled]\n"
|
||||
" --(no-)signhide : Sign hiding [disabled]\n"
|
||||
" --(no-)smp : Symmetric motion partition [disabled]\n"
|
||||
" --(no-)amp : Asymmetric motion partition [disabled]\n"
|
||||
" --rd <integer> : Intra mode search complexity [1]\n"
|
||||
" --rd <integer> : Intra mode search complexity [0]\n"
|
||||
" - 0: Skip intra if inter is good enough.\n"
|
||||
" - 1: Rough intra mode search with SATD.\n"
|
||||
" - 2: Refine intra mode search with SSE.\n"
|
||||
|
@ -456,9 +456,9 @@ void print_help(void)
|
|||
" - 2: + 1/2-pixel diagonal\n"
|
||||
" - 3: + 1/4-pixel horizontal and vertical\n"
|
||||
" - 4: + 1/4-pixel diagonal\n"
|
||||
" --pu-depth-inter <int>-<int> : Inter prediction units sizes [1-3]\n"
|
||||
" --pu-depth-inter <int>-<int> : Inter prediction units sizes [0-3]\n"
|
||||
" - 0, 1, 2, 3: from 64x64 to 8x8\n"
|
||||
" --pu-depth-intra <int>-<int> : Intra prediction units sizes [1-3]\n"
|
||||
" --pu-depth-intra <int>-<int> : Intra prediction units sizes [1-4]\n"
|
||||
" - 0, 1, 2, 3, 4: from 64x64 to 4x4\n"
|
||||
" --tr-depth-intra <int> : Transform split depth for intra blocks [0]\n"
|
||||
" --(no-)bipred : Bi-prediction [disabled]\n"
|
||||
|
|
Loading…
Reference in a new issue