]> git.sesse.net Git - vlc/blob - include/vlc_spu.h
Splitted out spu_t and related functions to its own header.
[vlc] / include / vlc_spu.h
1 /*****************************************************************************
2  * vlc_spu.h: spu_t definition and functions.
3  *****************************************************************************
4  * Copyright (C) 1999-2010 the VideoLAN team
5  * Copyright (C) 2010 Laurent Aimar
6  * $Id$
7  *
8  * Authors: Gildas Bazin <gbazin@videolan.org>
9  *          Laurent Aimar <fenrir _AT_ videolan _DOT_ org>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25
26 #ifndef VLC_SPU_H
27 #define VLC_SPU_H 1
28
29 #include <vlc_subpicture.h>
30
31 #ifdef __cplusplus
32 extern "C" {
33 #endif
34
35 /**********************************************************************
36  * Base SPU structures
37  **********************************************************************/
38 /**
39  * \defgroup spu Subpicture Unit
40  * This module describes the programming interface for the subpicture unit.
41  * It includes functions allowing to create/destroy an spu, and render
42  * subpictures.
43  * @{
44  */
45
46 typedef struct spu_private_t spu_private_t;
47
48 /* Default subpicture channel ID */
49 #define DEFAULT_CHAN           1
50
51 /**
52  * Subpicture unit descriptor
53  */
54 struct spu_t
55 {
56     VLC_COMMON_MEMBERS
57
58     int (*pf_control)( spu_t *, int, va_list );
59
60     spu_private_t *p;
61 };
62
63 enum spu_query_e
64 {
65     SPU_CHANNEL_REGISTER,         /* arg1= int *   res=    */
66     SPU_CHANNEL_CLEAR             /* arg1= int     res=    */
67 };
68
69 static inline int spu_vaControl( spu_t *p_spu, int i_query, va_list args )
70 {
71     if( p_spu->pf_control )
72         return p_spu->pf_control( p_spu, i_query, args );
73     else
74         return VLC_EGENERIC;
75 }
76
77 static inline int spu_Control( spu_t *p_spu, int i_query, ... )
78 {
79     va_list args;
80     int i_result;
81
82     va_start( args, i_query );
83     i_result = spu_vaControl( p_spu, i_query, args );
84     va_end( args );
85     return i_result;
86 }
87
88 VLC_EXPORT( spu_t *, spu_Create, ( vlc_object_t * ) );
89 #define spu_Create(a) spu_Create(VLC_OBJECT(a))
90 VLC_EXPORT( int, spu_Init, ( spu_t * ) );
91 VLC_EXPORT( void, spu_Destroy, ( spu_t * ) );
92 void spu_Attach( spu_t *, vlc_object_t *, bool );
93
94 /**
95  * This function sends a subpicture to the spu_t core.
96  * 
97  * You cannot use the provided subpicture anymore. The spu_t core
98  * will destroy it at its convenience.
99  */
100 VLC_EXPORT( void, spu_DisplaySubpicture, ( spu_t *, subpicture_t * ) );
101
102 /**
103  * This function asks the spu_t core a list of subpictures to display.
104  *
105  * The returned list can only be used by spu_RenderSubpictures.
106  */
107 VLC_EXPORT( subpicture_t *, spu_SortSubpictures, ( spu_t *, mtime_t render_subtitle_date, bool b_subtitle_only ) );
108
109 /**
110  * This function renders a list of subpicture_t on the provided picture.
111  *
112  * \param p_fmt_dst is the format of the destination picture.
113  * \param p_fmt_src is the format of the original(source) video.
114  */
115 VLC_EXPORT( void, spu_RenderSubpictures, ( spu_t *,  picture_t *, const video_format_t *p_fmt_dst, subpicture_t *p_list, const video_format_t *p_fmt_src, mtime_t render_subtitle_date ) );
116
117 /** @}*/
118
119 #ifdef __cplusplus
120 }
121 #endif
122
123 #endif /* VLC_SPU_H */
124