VLC  3.0.15
vlc_spu.h
Go to the documentation of this file.
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: 510ee151ec907da9fb6ac88b38cf7ef68a5c4af8 $
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  * \defgroup spu Sub-picture channels
37  * \ingroup video_output
38  * @{
39  * \file
40  */
41 
43 
44 /**
45  * Subpicture unit descriptor
46  */
47 struct spu_t
48 {
50 
52 };
53 
55 #define spu_Create(a,b) spu_Create(VLC_OBJECT(a),b)
56 VLC_API void spu_Destroy( spu_t * );
57 
58 /**
59  * This function sends a subpicture to the spu_t core.
60  *
61  * You cannot use the provided subpicture anymore. The spu_t core
62  * will destroy it at its convenience.
63  */
65 
66 /**
67  * This function will return an unique subpicture containing the OSD and
68  * subtitles visibles at the requested date.
69  *
70  * \param p_chroma_list is a list of supported chroma for the output (can be NULL)
71  * \param p_fmt_dst is the format of the picture on which the return subpicture will be rendered.
72  * \param p_fmt_src is the format of the original(source) video.
73  *
74  * The returned value if non NULL must be released by subpicture_Delete().
75  */
76 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 );
77 
78 /**
79  * It registers a new SPU channel.
80  */
82 
83 /**
84  * It clears all subpictures associated to a SPU channel.
85  */
86 VLC_API void spu_ClearChannel( spu_t *, int );
87 
88 /**
89  * It changes the sub sources list
90  */
91 VLC_API void spu_ChangeSources( spu_t *, const char * );
92 
93 /**
94  * It changes the sub filters list
95  */
96 VLC_API void spu_ChangeFilters( spu_t *, const char * );
97 
98 /** @}*/
99 
100 #ifdef __cplusplus
101 }
102 #endif
103 
104 #endif /* VLC_SPU_H */
105 
VLC_API
#define VLC_API
Definition: fourcc_gen.c:30
VLC_COMMON_MEMBERS
#define VLC_COMMON_MEMBERS
Backward compatibility macro.
Definition: vlc_common.h:453
vlc_common.h
spu_ClearChannel
void spu_ClearChannel(spu_t *, int)
It clears all subpictures associated to a SPU channel.
Definition: vout_subpictures.c:1641
spu_RegisterChannel
int spu_RegisterChannel(spu_t *)
It registers a new SPU channel.
Definition: vout_subpictures.c:1630
video_format_t
video format description
Definition: vlc_es.h:325
spu_ChangeFilters
void spu_ChangeFilters(spu_t *, const char *)
It changes the sub filters list.
Definition: vout_subpictures.c:1682
subpicture_t
Video subtitle.
Definition: vlc_subpicture.h:153
spu_t
Subpicture unit descriptor.
Definition: vlc_spu.h:47
spu_t::p
spu_private_t * p
Definition: vlc_spu.h:51
vlc_subpicture.h
vlc_object_t
The main vlc_object_t structure.
Definition: vlc_objects.h:39
spu_ChangeSources
void spu_ChangeSources(spu_t *, const char *)
It changes the sub sources list.
Definition: vout_subpictures.c:1663
spu_private_t
Definition: vout_subpictures.c:61
spu_Render
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)
This function will return an unique subpicture containing the OSD and subtitles visibles at the reque...
Definition: vout_subpictures.c:1515
spu_PutSubpicture
void spu_PutSubpicture(spu_t *, subpicture_t *)
This function sends a subpicture to the spu_t core.
Definition: vout_subpictures.c:1433
mtime_t
int64_t mtime_t
High precision date or time interval.
Definition: vlc_common.h:150
spu_Destroy
void spu_Destroy(spu_t *)
Destroy the subpicture unit.
Definition: vout_subpictures.c:1340
vout_thread_t
Video output thread descriptor.
Definition: vlc_vout.h:70
spu_Create
#define spu_Create(a, b)
Definition: vlc_spu.h:55
vlc_fourcc_t
uint32_t vlc_fourcc_t
Definition: fourcc_gen.c:32