]> git.sesse.net Git - vlc/blobdiff - plugins/ggi/ggi.c
* Fixed the BeOS compile typo.
[vlc] / plugins / ggi / ggi.c
index 2ff0e107feb58022afcaa0679283253b53db7ae9..894bab53260f5538b2df564ac5739ec0c41c5046 100644 (file)
@@ -1,10 +1,11 @@
 /*****************************************************************************
  * ggi.c : GGI plugin for vlc
  *****************************************************************************
- * Copyright (C) 2000 VideoLAN
- *
- * Authors:
+ * Copyright (C) 2000, 2001 VideoLAN
+ * $Id: ggi.c,v 1.7 2001/05/30 17:03:12 sam Exp $
  *
+ * Authors: Samuel Hocevar <sam@zoy.org>
+ *      
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation; either version 2 of the License, or
@@ -20,6 +21,9 @@
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  *****************************************************************************/
 
+#define MODULE_NAME ggi
+#include "modules_inner.h"
+
 /*****************************************************************************
  * Preamble
  *****************************************************************************/
 #include "common.h"                                     /* boolean_t, byte_t */
 #include "threads.h"
 #include "mtime.h"
-#include "plugins.h"
 
-#include "interface.h"
-#include "audio_output.h"
 #include "video.h"
 #include "video_output.h"
 
-#include "plugins_export.h"
-
-/*****************************************************************************
- * Exported prototypes
- *****************************************************************************/
-void vout_GetPlugin( p_vout_thread_t p_vout );
-void intf_GetPlugin( p_intf_thread_t p_intf );
+#include "modules.h"
+#include "modules_export.h"
 
 /*****************************************************************************
- * GetConfig: get the plugin structure and configuration
+ * Capabilities defined in the other files.
  *****************************************************************************/
-plugin_info_t * GetConfig( void )
-{
-    plugin_info_t * p_info = (plugin_info_t *) malloc( sizeof(plugin_info_t) );
-
-    p_info->psz_name    = "GGI";
-    p_info->psz_version = VERSION;
-    p_info->psz_author  = "the VideoLAN team <vlc@videolan.org>";
-
-    p_info->aout_GetPlugin = NULL;
-    p_info->vout_GetPlugin = vout_GetPlugin;
-    p_info->intf_GetPlugin = intf_GetPlugin;
-    p_info->yuv_GetPlugin  = NULL;
-
-    return( p_info );
-}
+void _M( vout_getfunctions )( function_list_t * p_function_list );
 
 /*****************************************************************************
- * Test: tests if the plugin can be launched
+ * Building configuration tree
  *****************************************************************************/
-int Test( void )
-{
-    /* TODO: detect GGI_DISPLAY or whatever */
-    return( 1 );
-}
+MODULE_CONFIG_START
+ADD_WINDOW( "Configuration for GGI module" )
+    ADD_COMMENT( "For now, the GGI module cannot be configured" )
+MODULE_CONFIG_STOP
 
-/*****************************************************************************
- * Following functions are only called through the p_info structure
- *****************************************************************************/
+MODULE_INIT_START
+    p_module->i_capabilities = MODULE_CAPABILITY_NULL
+                                | MODULE_CAPABILITY_VOUT;
+    p_module->psz_longname = "General Graphics Interface module";
+MODULE_INIT_STOP
 
-void vout_GetPlugin( p_vout_thread_t p_vout )
-{
-    p_vout->p_sys_create  = vout_SysCreate;
-    p_vout->p_sys_init    = vout_SysInit;
-    p_vout->p_sys_end     = vout_SysEnd;
-    p_vout->p_sys_destroy = vout_SysDestroy;
-    p_vout->p_sys_manage  = vout_SysManage;
-    p_vout->p_sys_display = vout_SysDisplay;
-}
+MODULE_ACTIVATE_START
+    _M( vout_getfunctions )( &p_module->p_functions->vout );
+MODULE_ACTIVATE_STOP
 
-void intf_GetPlugin( p_intf_thread_t p_intf )
-{
-    p_intf->p_sys_create  = intf_SysCreate;
-    p_intf->p_sys_destroy = intf_SysDestroy;
-    p_intf->p_sys_manage  = intf_SysManage;
-}
+MODULE_DEACTIVATE_START
+MODULE_DEACTIVATE_STOP