]> git.sesse.net Git - vlc/blob - include/plugins_export.h
. suppression du d�codeur de r�f�rence qui de toute fa�on ne marcherait
[vlc] / include / plugins_export.h
1 /*****************************************************************************
2  * plugins_export.h : exporting plugins structure
3  *****************************************************************************
4  * Copyright (C) 1999, 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  * Prototypes
25  *****************************************************************************/
26
27 /* audio output */
28 int     aout_SysOpen         ( aout_thread_t *p_aout );
29 int     aout_SysReset        ( aout_thread_t *p_aout );
30 int     aout_SysSetFormat    ( aout_thread_t *p_aout );
31 int     aout_SysSetChannels  ( aout_thread_t *p_aout );
32 int     aout_SysSetRate      ( aout_thread_t *p_aout );
33 long    aout_SysGetBufInfo   ( aout_thread_t *p_aout, long l_buffer_info );
34 void    aout_SysPlaySamples  ( aout_thread_t *p_aout, byte_t *buffer,
35                                int i_size );
36 void    aout_SysClose        ( aout_thread_t *p_aout );
37
38 /* video output */
39 int     vout_SysCreate       ( vout_thread_t *p_vout, char *psz_display,
40                                int i_root_window, void *p_data );
41 int     vout_SysInit         ( p_vout_thread_t p_vout );
42 void    vout_SysEnd          ( p_vout_thread_t p_vout );
43 void    vout_SysDestroy      ( p_vout_thread_t p_vout );
44 int     vout_SysManage       ( p_vout_thread_t p_vout );
45 void    vout_SysDisplay      ( p_vout_thread_t p_vout );
46 void    vout_SetPalette      ( p_vout_thread_t p_vout,
47                                u16 *red, u16 *green, u16 *blue, u16 *transp );
48
49 /* interface */
50 int     intf_SysCreate       ( p_intf_thread_t p_intf );
51 void    intf_SysDestroy      ( p_intf_thread_t p_intf );
52 void    intf_SysManage       ( p_intf_thread_t p_intf );
53
54 /* YUV transformations */
55 int     yuv_SysInit          ( p_vout_thread_t p_vout );
56 int     yuv_SysReset         ( p_vout_thread_t p_vout );
57 void    yuv_SysEnd           ( p_vout_thread_t p_vout );
58