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
Steve Lhomme
VLC
Commits
e33a897b
Commit
e33a897b
authored
May 20, 2005
by
Christophe Massiot
Browse files
* modules/codec/ffmpeg/encoder.c: If qmin == qmax, set CODEC_FLAG_QSCALE.
parent
3c01122e
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/codec/ffmpeg/encoder.c
View file @
e33a897b
...
...
@@ -419,6 +419,9 @@ int E_(OpenEncoder)( vlc_object_t *p_this )
if
(
p_sys
->
b_trellis
)
p_context
->
flags
|=
CODEC_FLAG_TRELLIS_QUANT
;
if
(
p_sys
->
i_qmin
==
p_sys
->
i_qmax
)
p_context
->
flags
|=
CODEC_FLAG_QSCALE
;
#if LIBAVCODEC_BUILD >= 4702
if
(
p_enc
->
i_threads
>=
1
)
p_context
->
thread_count
=
p_enc
->
i_threads
;
...
...
Write
Preview
Markdown
is supported
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