]> git.sesse.net Git - vlc/blob - plugins/ggi/ggi.c
Bon, puisque �a semble commiter sous BeOS, je commite.
[vlc] / plugins / ggi / ggi.c
1 /*****************************************************************************
2  * ggi.c : GGI plugin for vlc
3  *****************************************************************************
4  * Copyright (C) 2000 VideoLAN
5  *
6  * Authors:
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  * 
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
21  *****************************************************************************/
22
23 /*****************************************************************************
24  * Preamble
25  *****************************************************************************/
26 #include "defs.h"
27
28 #include <stdlib.h>                                      /* malloc(), free() */
29
30 #include "config.h"
31 #include "common.h"                                     /* boolean_t, byte_t */
32 #include "threads.h"
33 #include "mtime.h"
34 #include "plugins.h"
35
36 #include "interface.h"
37 #include "audio_output.h"
38 #include "video.h"
39 #include "video_output.h"
40
41 #include "plugins_export.h"
42
43 /*****************************************************************************
44  * Exported prototypes
45  *****************************************************************************/
46 void vout_GetPlugin( p_vout_thread_t p_vout );
47 void intf_GetPlugin( p_intf_thread_t p_intf );
48
49 /*****************************************************************************
50  * GetConfig: get the plugin structure and configuration
51  *****************************************************************************/
52 plugin_info_t * GetConfig( void )
53 {
54     plugin_info_t * p_info = (plugin_info_t *) malloc( sizeof(plugin_info_t) );
55
56     p_info->psz_name    = "GGI";
57     p_info->psz_version = VERSION;
58     p_info->psz_author  = "the VideoLAN team <vlc@videolan.org>";
59
60     p_info->aout_GetPlugin = NULL;
61     p_info->vout_GetPlugin = vout_GetPlugin;
62     p_info->intf_GetPlugin = intf_GetPlugin;
63     p_info->yuv_GetPlugin  = NULL;
64
65     return( p_info );
66 }
67
68 /*****************************************************************************
69  * Test: tests if the plugin can be launched
70  *****************************************************************************/
71 int Test( void )
72 {
73     /* TODO: detect GGI_DISPLAY or whatever */
74     return( 1 );
75 }
76
77 /*****************************************************************************
78  * Following functions are only called through the p_info structure
79  *****************************************************************************/
80
81 void vout_GetPlugin( p_vout_thread_t p_vout )
82 {
83     p_vout->p_sys_create  = vout_SysCreate;
84     p_vout->p_sys_init    = vout_SysInit;
85     p_vout->p_sys_end     = vout_SysEnd;
86     p_vout->p_sys_destroy = vout_SysDestroy;
87     p_vout->p_sys_manage  = vout_SysManage;
88     p_vout->p_sys_display = vout_SysDisplay;
89 }
90
91 void intf_GetPlugin( p_intf_thread_t p_intf )
92 {
93     p_intf->p_sys_create  = intf_SysCreate;
94     p_intf->p_sys_destroy = intf_SysDestroy;
95     p_intf->p_sys_manage  = intf_SysManage;
96 }
97