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
GSoC
GSoC2018
macOS
vlc
Commits
02a7f81f
Commit
02a7f81f
authored
Jun 05, 2010
by
Ilkka Ollakka
Browse files
avcodec: fix typo
parent
292351be
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/codec/avcodec/encoder.c
View file @
02a7f81f
...
...
@@ -608,13 +608,13 @@ int OpenEncoder( vlc_object_t *p_this )
/* Check that we don't overrun users qmin/qmax values */
if
(
!
var_GetInteger
(
p_enc
,
ENC_CFG_PREFIX
"qmin"
)
)
{
p_context
->
mb_qmin
=
p_context
->
qmin
=
10
*
FF_QP2LAMBDA
;
p_context
->
mb_qmin
=
p_context
->
qmin
=
10
;
p_context
->
mb_lmin
=
p_context
->
lmin
=
10
*
FF_QP2LAMBDA
;
}
if
(
!
var_GetInteger
(
p_enc
,
ENC_CFG_PREFIX
"qmax"
)
)
{
p_context
->
mb_qmax
=
p_context
->
qmax
=
42
*
FF_QP2LAMBDA
;
p_context
->
mb_qmax
=
p_context
->
qmax
=
42
;
p_context
->
mb_lmax
=
p_context
->
lmax
=
42
*
FF_QP2LAMBDA
;
}
...
...
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