QVisu
Qt-based visualization for smart homes
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
vlc_spu.h
1 /*****************************************************************************
2  * vlc_spu.h: spu_t definition and functions.
3  *****************************************************************************
4  * Copyright (C) 1999-2010 VLC authors and VideoLAN
5  * Copyright (C) 2010 Laurent Aimar
6  * $Id: d448d06f8c9f9c91d70239ff0d07cb5ceac06423 $
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 it
12  * under the terms of the GNU Lesser General Public License as published by
13  * the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
20  *
21  * You should have received a copy of the GNU Lesser General Public License
22  * along with this program; if not, write to the Free Software Foundation,
23  * 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  **********************************************************************/
46 typedef struct spu_private_t spu_private_t;
47 
48 /* Default subpicture channel ID */
49 #define SPU_DEFAULT_CHANNEL (1)
50 
54 struct spu_t
55 {
56  VLC_COMMON_MEMBERS
57 
58  spu_private_t *p;
59 };
60 
61 VLC_API spu_t * spu_Create( vlc_object_t * );
62 #define spu_Create(a) spu_Create(VLC_OBJECT(a))
63 VLC_API void spu_Destroy( spu_t * );
64 
71 VLC_API void spu_PutSubpicture( spu_t *, subpicture_t * );
72 
83 VLC_API subpicture_t * spu_Render( spu_t *, const vlc_fourcc_t *p_chroma_list, const video_format_t *p_fmt_dst, const video_format_t *p_fmt_src, mtime_t render_subtitle_date, mtime_t render_osd_date, bool ignore_osd );
84 
88 VLC_API int spu_RegisterChannel( spu_t * );
89 
93 VLC_API void spu_ClearChannel( spu_t *, int );
94 
98 VLC_API void spu_ChangeSources( spu_t *, const char * );
99 
103 VLC_API void spu_ChangeFilters( spu_t *, const char * );
104 
107 #ifdef __cplusplus
108 }
109 #endif
110 
111 #endif /* VLC_SPU_H */
112 
VLC_API subpicture_t * spu_Render(spu_t *, const vlc_fourcc_t *p_chroma_list, const video_format_t *p_fmt_dst, const video_format_t *p_fmt_src, mtime_t render_subtitle_date, mtime_t render_osd_date, bool ignore_osd)
Definition: vlc_subpicture.h:136
VLC_API void spu_ClearChannel(spu_t *, int)
VLC_API int spu_RegisterChannel(spu_t *)
Definition: vlc_es.h:180
VLC_API void spu_ChangeFilters(spu_t *, const char *)
Definition: vlc_spu.h:54
int64_t mtime_t
Definition: vlc_common.h:153
uint32_t vlc_fourcc_t
Definition: vlc_common.h:160
VLC_API void spu_ChangeSources(spu_t *, const char *)
Definition: vlc_objects.h:42
VLC_API void spu_PutSubpicture(spu_t *, subpicture_t *)