Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
VideoLAN
x264
Commits
0e6425e0
Commit
0e6425e0
authored
Feb 19, 2018
by
Anton Mitrofanov
Committed by
Henrik Gramner
May 27, 2018
Browse files
Fix --qpmax default value in fullhelp
parent
5f7f950c
Changes
1
Show whitespace changes
Inline
Side-by-side
x264.c
View file @
0e6425e0
...
@@ -731,7 +731,7 @@ static void help( x264_param_t *defaults, int longhelp )
...
@@ -731,7 +731,7 @@ static void help( x264_param_t *defaults, int longhelp )
H2
(
" --crf-max <float> With CRF+VBV, limit RF to this value
\n
"
H2
(
" --crf-max <float> With CRF+VBV, limit RF to this value
\n
"
" May cause VBV underflows!
\n
"
);
" May cause VBV underflows!
\n
"
);
H2
(
" --qpmin <integer> Set min QP [%d]
\n
"
,
defaults
->
rc
.
i_qp_min
);
H2
(
" --qpmin <integer> Set min QP [%d]
\n
"
,
defaults
->
rc
.
i_qp_min
);
H2
(
" --qpmax <integer> Set max QP [%d]
\n
"
,
defaults
->
rc
.
i_qp_max
);
H2
(
" --qpmax <integer> Set max QP [%d]
\n
"
,
X264_MIN
(
defaults
->
rc
.
i_qp_max
,
QP_MAX
)
);
H2
(
" --qpstep <integer> Set max QP step [%d]
\n
"
,
defaults
->
rc
.
i_qp_step
);
H2
(
" --qpstep <integer> Set max QP step [%d]
\n
"
,
defaults
->
rc
.
i_qp_step
);
H2
(
" --ratetol <float> Tolerance of ABR ratecontrol and VBV [%.1f]
\n
"
,
defaults
->
rc
.
f_rate_tolerance
);
H2
(
" --ratetol <float> Tolerance of ABR ratecontrol and VBV [%.1f]
\n
"
,
defaults
->
rc
.
f_rate_tolerance
);
H2
(
" --ipratio <float> QP factor between I and P [%.2f]
\n
"
,
defaults
->
rc
.
f_ip_factor
);
H2
(
" --ipratio <float> QP factor between I and P [%.2f]
\n
"
,
defaults
->
rc
.
f_ip_factor
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment