Difference between revisions of "Documentation:VLC Modules Loading"
Jump to navigation
Jump to search
Line 3: | Line 3: | ||
== How does VLC load modules? == | == How does VLC load modules? == | ||
− | === Introduction about Modules === | + | === Introduction about Modules === |
− | VLC has a core and a lot of modules (between 200 and 400 depending on the build). | + | VLC has a core and a lot of modules (between 200 and 400 depending on the build). |
− | VLC cannot do much without modules, since modules are providing most of the functionnalities we expect. See the "Major Capabilites" sections. | + | VLC cannot do much without modules, since modules are providing most of the functionnalities we expect. See the "Major Capabilites" sections. |
+ | A VLC module has 2 major properties: | ||
+ | *the capability, VLC_MODULE_CAPABILITY, that describes the category of the module | ||
+ | *the score, VLC_MODULE_SCORE, that holds the priority of the module | ||
== Major Capabilities == | == Major Capabilities == |
Revision as of 17:05, 30 October 2010
Contents
VLC modules loading
How does VLC load modules?
Introduction about Modules
VLC has a core and a lot of modules (between 200 and 400 depending on the build).
VLC cannot do much without modules, since modules are providing most of the functionnalities we expect. See the "Major Capabilites" sections.
A VLC module has 2 major properties:
- the capability, VLC_MODULE_CAPABILITY, that describes the category of the module
- the score, VLC_MODULE_SCORE, that holds the priority of the module