Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
0f6a7eb8
Commit
0f6a7eb8
authored
Sep 22, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove some useful stuff / misleading comments
parent
07a682d7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
12 deletions
+0
-12
src/modules/modules.c
src/modules/modules.c
+0
-12
No files found.
src/modules/modules.c
View file @
0f6a7eb8
...
...
@@ -486,28 +486,16 @@ module_t * __module_need( vlc_object_t *p_this, const char *psz_capability,
/* Test that this module can do what we need */
if
(
!
module_provides
(
p_module
,
psz_capability
)
)
{
/* Don't recurse through the sub-modules because vlc_list_find()
* will list them anyway. */
continue
;
}
/* Test if we have the required CPU */
if
(
(
p_module
->
i_cpu
&
i_cpu
)
!=
p_module
->
i_cpu
)
{
continue
;
}
/* If we required a shortcut, check this plugin provides it. */
if
(
i_shortcuts
>
0
)
{
bool
b_trash
;
const
char
*
psz_name
=
psz_shortcuts
;
/* Let's drop modules with a <= 0 score (unless they are
* explicitly requested) */
b_trash
=
p_module
->
i_score
<=
0
;
for
(
unsigned
i_short
=
i_shortcuts
;
i_short
>
0
;
i_short
--
)
{
for
(
unsigned
i
=
0
;
p_module
->
pp_shortcuts
[
i
];
i
++
)
...
...
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