Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
9efe5bff
Commit
9efe5bff
authored
May 29, 2010
by
Ilkka Ollakka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec: blacklist WMV2 also, missed that codec previously
See #3613
parent
0c180b06
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
modules/codec/avcodec/encoder.c
modules/codec/avcodec/encoder.c
+3
-1
No files found.
modules/codec/avcodec/encoder.c
View file @
9efe5bff
...
...
@@ -500,7 +500,8 @@ int OpenEncoder( vlc_object_t *p_this )
if
(
p_sys
->
i_qmin
>
0
&&
p_sys
->
i_qmin
==
p_sys
->
i_qmax
)
p_context
->
flags
|=
CODEC_FLAG_QSCALE
;
/* These codecs cause libavcodec to exit if thread_count is > 1.
See libavcodec/mpegvideo_enc.c:MPV_encode_init
See libavcodec/mpegvideo_enc.c:MPV_encode_init and
libavcodec/svq3.c , WMV2 calls MPV_encode_init also.
*/
if
(
i_codec_id
==
CODEC_ID_FLV1
||
i_codec_id
==
CODEC_ID_H261
||
...
...
@@ -512,6 +513,7 @@ int OpenEncoder( vlc_object_t *p_this )
i_codec_id
==
CODEC_ID_MSMPEG4V2
||
i_codec_id
==
CODEC_ID_MSMPEG4V3
||
i_codec_id
==
CODEC_ID_WMV1
||
i_codec_id
==
CODEC_ID_WMV2
||
i_codec_id
==
CODEC_ID_RV10
||
i_codec_id
==
CODEC_ID_RV20
||
i_codec_id
==
CODEC_ID_SVQ3
)
...
...
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