]> git.sesse.net Git - vlc/blobdiff - src/modules/modules.h
Remove CPU capability from modules
[vlc] / src / modules / modules.h
index a1955f42ac60ab2c55da35b1e435db8c3dd110ef..c4a5eeebd7f92a3d988c1daf7f89d27d44d23b26 100644 (file)
@@ -28,6 +28,7 @@
 #ifndef __LIBVLC_MODULES_H
 # define __LIBVLC_MODULES_H 1
 
+
 /* Number of tries before we unload an unused module */
 #define MODULE_HIDE_DELAY 50
 
@@ -67,8 +68,8 @@ struct module_cache_t
     bool b_junk;
 
     /* Optional extra data */
-    module_t *p_module;
     bool b_used;
+    module_t *p_module;
 };
 
 
@@ -115,10 +116,8 @@ struct module_t
 
     char    *psz_capability;                                 /**< Capability */
     int      i_score;                          /**< Score for the capability */
-    uint32_t i_cpu;                           /**< Required CPU capabilities */
 
     bool b_unloadable;                        /**< Can we be dlclosed? */
-    bool b_reentrant;                           /**< Are we reentrant? */
     bool b_submodule;                        /**< Is this a submodule? */
 
     /* Callbacks */