[vlc-devel] commit: module: Define module_GetMainModule and module_IsMainModule. ( Pierre d'Herbemont )

git version control git at videolan.org
Sat Jul 5 17:31:37 CEST 2008


vlc | branch: master | Pierre d'Herbemont <pdherbemont at videolan.org> | Sat Jul  5 16:54:31 2008 +0200| [1468c26bba992693155aa7ea88cca07a4c9b8d5f]

module: Define module_GetMainModule and module_IsMainModule.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=1468c26bba992693155aa7ea88cca07a4c9b8d5f
---

 include/vlc_modules.h |   32 +++++++++++++++++++++++++++++++-
 1 files changed, 31 insertions(+), 1 deletions(-)

diff --git a/include/vlc_modules.h b/include/vlc_modules.h
index c1d3703..0f5abce 100644
--- a/include/vlc_modules.h
+++ b/include/vlc_modules.h
@@ -24,6 +24,7 @@
 /*****************************************************************************
  * Exported functions.
  *****************************************************************************/
+
 #define module_Need(a,b,c,d) __module_Need(VLC_OBJECT(a),b,c,d)
 VLC_EXPORT( module_t *, __module_Need, ( vlc_object_t *, const char *, const char *, bool ) );
 #define module_Unneed(a,b) __module_Unneed(VLC_OBJECT(a),b)
@@ -38,7 +39,6 @@ VLC_EXPORT( void, module_Put, ( module_t *module ) );
 VLC_EXPORT( module_config_t *, module_GetConfig, ( const module_t *, unsigned * ) );
 VLC_EXPORT( void, module_PutConfig, ( module_config_t * ) );
 
-
 /* Return a NULL terminated array with the names of the modules that have a
  * certain capability.
  * Free after uses both the string and the table. */
@@ -53,3 +53,33 @@ VLC_EXPORT( const char *, module_GetObjName, ( const module_t *m ) );
 VLC_EXPORT( const char *, module_GetName, ( const module_t *m, bool long_name ) );
 #define module_GetLongName( m ) module_GetName( m, true )
 VLC_EXPORT( const char *, module_GetHelp, ( const module_t *m ) );
+
+
+#define module_GetMainModule(a) __module_GetMainModule(VLC_OBJECT(a))
+static inline module_t * __module_GetMainModule( vlc_object_t * p_this )
+{
+    module_t * p_module;
+    module_t * p_main_module = NULL;
+    vlc_list_t *p_list = vlc_list_find( p_this, VLC_OBJECT_MODULE,
+                                        FIND_ANYWHERE );
+    if( !p_list ) return NULL;
+
+    /* Find the main module */
+    for( int i = 0; i < p_list->i_count; i++ )
+    {
+        p_module = (module_t *)p_list->p_values[i].p_object;
+        if( strcmp( module_GetObjName( p_module ), "main" ) == 0 )
+        {
+            p_main_module = p_module;
+            vlc_object_yield( (vlc_object_t*)p_main_module );
+            break;
+        }
+    }
+    vlc_list_release( p_list );
+    return p_main_module;
+}
+
+static inline bool module_IsMainModule( module_t * p_module )
+{
+    return !strcmp( module_GetObjName( p_module ), "main" );
+}




More information about the vlc-devel mailing list