VLC 4.0.0-dev
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
vlc_subpicture.h
Go to the documentation of this file.
1/*****************************************************************************
2 * vlc_subpicture.h: subpicture definitions
3 *****************************************************************************
4 * Copyright (C) 1999 - 2009 VLC authors and VideoLAN
5 *
6 * Authors: Vincent Seguin <seguin@via.ecp.fr>
7 * Samuel Hocevar <sam@via.ecp.fr>
8 * Olivier Aubert <oaubert 47 videolan d07 org>
9 *
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU Lesser General Public License as published by
12 * the Free Software Foundation; either version 2.1 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License for more details.
19 *
20 * You should have received a copy of the GNU Lesser General Public License
21 * along with this program; if not, write to the Free Software Foundation,
22 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23 *****************************************************************************/
24
25#ifndef VLC_SUBPICTURE_H
26#define VLC_SUBPICTURE_H 1
27
28/**
29 */
30
31#include <vlc_picture.h>
32#include <vlc_text_style.h>
33#include <vlc_list.h>
34#include <vlc_vector.h>
35#include <vlc_vout_display.h>
36
37/**
38 * \defgroup subpicture Video sub-pictures
39 * \ingroup video_output
40 * Subpictures are pictures that should be displayed on top of the video, like
41 * subtitles and OSD
42 * @{
43 * \file
44 * Subpictures functions
45 */
46
47/**
48 * Video subtitle region spu core private
49 */
51typedef struct filter_t vlc_blender_t;
53/**< render background under text only */
54#define VLC_SUBPIC_TEXT_FLAG_NO_REGION_BG (1 << 4)
55/** if the decoder sends row/cols based output */
56#define VLC_SUBPIC_TEXT_FLAG_GRID_MODE (1 << 5)
57/** don't try to balance wrapped text lines */
58#define VLC_SUBPIC_TEXT_FLAG_TEXT_NOT_BALANCED (1 << 6)
59/** mark the subpicture region as a text flag */
60#define VLC_SUBPIC_TEXT_FLAG_IS_TEXT (1 << 7)
62/**
63 * Video subtitle region
64 *
65 * A subtitle region is defined by a picture (graphic) and its rendering
66 * coordinates.
67 * Subtitles contain a list of regions.
68 */
71 video_format_t fmt; /**< format of the picture */
72 picture_t *p_picture; /**< picture comprising this region */
74 bool b_absolute; /**< position is absolute in the movie */
75 bool b_in_window; /**< position the region in window */
76 int i_x; /**< position of region, relative to alignment */
77 int i_y; /**< position of region, relative to alignment */
78 int i_align; /**< alignment flags SUBPICTURE_ALIGN_xxx */
79 int i_alpha; /**< transparency */
81 /* Parameters for text regions (p_picture to be rendered) */
82 text_segment_t *p_text; /**< subtitle text, made of a list of segments */
83 int text_flags; /**< VLC_SUBPIC_TEXT_FLAG_xxx and SUBPICTURE_ALIGN_xxx */
84 int i_max_width; /** horizontal rendering/cropping target/limit */
85 int i_max_height; /** vertical rendering/cropping target/limit */
87 struct vlc_list node; /**< for inclusion in a vlc_spu_regions */
88};
89
90typedef struct vlc_list vlc_spu_regions;
92#define vlc_spu_regions_init(p_rs) \
93 vlc_list_init((p_rs))
94#define vlc_spu_regions_push(p_rs,reg) \
95 vlc_list_append(&(reg)->node, (p_rs))
96#define vlc_spu_regions_foreach(reg,p_rs) \
97 vlc_list_foreach(reg, (p_rs), node)
98#define vlc_spu_regions_foreach_const(reg,p_rs) \
99 vlc_list_foreach_const(reg, (p_rs), node)
100#define vlc_spu_regions_is_empty(p_rs) \
101 vlc_list_is_empty((p_rs))
102#define vlc_spu_regions_first_or_null(p_rs) \
103 vlc_list_first_entry_or_null((p_rs), subpicture_region_t, node)
104#define vlc_spu_regions_remove(p_rs, reg) \
105 vlc_list_remove(&(reg)->node)
106
116/* Subpicture region position flags */
117#define SUBPICTURE_ALIGN_LEFT 0x1
118#define SUBPICTURE_ALIGN_RIGHT 0x2
119#define SUBPICTURE_ALIGN_TOP 0x4
120#define SUBPICTURE_ALIGN_BOTTOM 0x8
121#define SUBPICTURE_ALIGN_MASK ( SUBPICTURE_ALIGN_LEFT|SUBPICTURE_ALIGN_RIGHT| \
122 SUBPICTURE_ALIGN_TOP |SUBPICTURE_ALIGN_BOTTOM )
123/**
124 * This function will create a new subpicture region.
125 *
126 * You must use subpicture_region_Delete to destroy it.
127 *
128 * \note use subpicture_region_NewText() to create a text region
129 */
131
132/**
133 * This function will create a new text subpicture region.
134 *
135 * You must use subpicture_region_Delete to destroy it.
136 */
138
139/**
140 * Create a subpicture region containing the picture.
141 *
142 * A reference will be added to the picture on success.
143 *
144 * You must use subpicture_region_Delete to destroy it.
145 *
146 * The chroma of the format must match the one of the picture.
147 * The dimensions of the format should not exceed the ones of the picture. This
148 * is not checked explicitly in the function.
149 *
150 * \param p_fmt format for the subpicture cropping/SAR (may be NULL)
151 *
152 * \note if p_fmt is NULL, the format of the picture will be used.
153 */
155
156/**
157 * This function will destroy a subpicture region allocated by
158 * subpicture_region_New.
159 *
160 * You may give it NULL.
161 */
163
164/**
165 * This function will clear a list of subpicture regions allocated by
166 * subpicture_region_New.
167 *
168 * Provided for convenience.
169 */
171
174 // source video format of the video under the SPU
176 // scaled video format of the video under the SPU
181 // source video format of the previous vlc_spu_updater_ops.update call
183 // scaled video format of the previous vlc_spu_updater_ops.update call
186 // timestamp when the SPU will be displayed, between i_start and i_stop
187 // for subtitles
190
191/**
192 * Subpicture updater operation virtual table.
193 *
194 * This structure gathers the operations that are implemented by a
195 * subpicture_updater_t instance. */
198 /** Mandatory callback called after pf_validate and doing
199 * the main job of creating the subpicture regions for the
200 * current video_format */
201 void (*update)(subpicture_t *,
203
204 /** Optional callback for subpicture private data cleanup */
205 void (*destroy)(subpicture_t *);
207
208/**
209 * Tells if the region is a text-based region.
210 */
211#define subpicture_region_IsText(r) \
212 (((r)->text_flags & VLC_SUBPIC_TEXT_FLAG_IS_TEXT) != 0)
213
214/**
215 *
216 */
217typedef struct
219 void *sys;
220 const struct vlc_spu_updater_ops *ops;
222
227 picture_t *p_picture; /**< picture comprising this region */
228 vout_display_place_t place; /**< visible area in display coordinates */
229 int i_alpha; /**< transparency */
231
234 struct VLC_VECTOR(struct subpicture_region_rendered *) regions; /**< list of regions to render */
235 int64_t i_order; /** an increasing unique number */
237
240/**
241 * Video subtitle
242 *
243 * Any subtitle destined to be displayed by a video output thread should
244 * be stored in this structure from it's creation to it's effective display.
245 * Subtitle type and flags should only be modified by the output thread. Note
246 * that an empty subtitle MUST have its flags set to 0.
247 */
248struct subpicture_t
250 /** \name Channel ID */
251 /**@{*/
252 ssize_t i_channel; /**< subpicture channel ID */
253 /**@}*/
254
255 /** \name Type and flags
256 Should NOT be modified except by the vout thread */
257 /**@{*/
258 int64_t i_order; /** an increasing unique number */
259 subpicture_t * p_next; /**< next subtitle to be displayed */
260 /**@}*/
261
262 vlc_spu_regions regions; /**< region list composing this subtitle */
264 /** \name Date properties */
265 /**@{*/
266 vlc_tick_t i_start; /**< beginning of display date */
267 vlc_tick_t i_stop; /**< end of display date. Will be
268 considered invalid if set to TICK_INVALID
269 or less than i_start. See b_ephemer */
270 bool b_ephemer; /**< If this flag is set to true the subtitle
271 will be displayed until the next one appears
272 or if i_stop is reached when it is valid */
273 bool b_fade; /**< enable fading */
274 bool b_subtitle; /**< subtitle with timestamps relative to
275 the video */
276 /**@}*/
277
278 /** \name Display properties
279 * These properties are only indicative and may be
280 * changed by the video output thread, or simply ignored depending of the
281 * subtitle type. */
282 /**@{*/
283 unsigned i_original_picture_width; /**< original width of the movie */
284 unsigned i_original_picture_height;/**< original height of the movie */
285 int i_alpha; /**< transparency */
286 /**@}*/
287
290 subpicture_private_t *p_private; /* Reserved to the core */
292
293/**
294 * This function create a new empty subpicture.
295 *
296 * You must use subpicture_Delete to destroy it.
297 */
299
300/**
301 * This function delete a subpicture created by subpicture_New.
302 * You may give it NULL.
303 */
304VLC_API void subpicture_Delete( subpicture_t *p_subpic );
305
306/**
307 * This function will create a subpicture having one region in the requested
308 * chroma showing the given picture.
309 *
310 * The picture_t given is not released nor used inside the
311 * returned subpicture_t.
312 */
314
315/**
316 * This function will update the content of a subpicture created with
317 * a non NULL subpicture_updater_t.
318 */
320 unsigned display_width, unsigned display_height, vlc_tick_t );
321
322/**
323 * This function will blend a given subpicture onto a picture.
324 *
325 * The subpicture and all its region must:
326 * - be absolute.
327 * - not be ephemere.
328 * - not have the fade flag.
329 * - contains only picture (no text rendering).
330 * \return the number of region(s) successfully blent
331 */
333
334/**
335 * Create a vlc_render_subpicture.
336 *
337 * It should be released with \ref vlc_render_subpicture_Delete.
338 */
340
341/**
342 * Destroy a vlc_render_subpicture.
343 */
345
346/**@}*/
347
348#endif /* _VLC_SUBPICTURE_H */
#define VLC_API
Definition fourcc_gen.c:31
uint32_t vlc_fourcc_t
Definition fourcc_gen.c:33
vlc_render_subpicture * vlc_render_subpicture_New(void)
Create a vlc_render_subpicture.
Definition subpicture.c:100
void vlc_render_subpicture_Delete(vlc_render_subpicture *)
Destroy a vlc_render_subpicture.
Definition subpicture.c:109
subpicture_region_t * subpicture_region_New(const video_format_t *p_fmt)
This function will create a new subpicture region.
Definition subpicture.c:264
void subpicture_Update(subpicture_t *, const video_format_t *src, const video_format_t *, unsigned display_width, unsigned display_height, vlc_tick_t)
This function will update the content of a subpicture created with a non NULL subpicture_updater_t.
Definition subpicture.c:175
void subpicture_Delete(subpicture_t *p_subpic)
This function delete a subpicture created by subpicture_New.
Definition subpicture.c:80
void vlc_spu_regions_Clear(vlc_spu_regions *)
This function will clear a list of subpicture regions allocated by subpicture_region_New.
Definition subpicture.c:371
unsigned picture_BlendSubpicture(picture_t *, vlc_blender_t *, vlc_render_subpicture *)
This function will blend a given subpicture onto a picture.
Definition subpicture.c:383
void subpicture_region_Delete(subpicture_region_t *p_region)
This function will destroy a subpicture region allocated by subpicture_region_New.
Definition subpicture.c:354
subpicture_region_t * subpicture_region_NewText(void)
This function will create a new text subpicture region.
Definition subpicture.c:303
subpicture_region_t * subpicture_region_ForPicture(const video_format_t *p_fmt, picture_t *pic)
Create a subpicture region containing the picture.
Definition subpicture.c:316
subpicture_t * subpicture_New(const subpicture_updater_t *)
This function create a new empty subpicture.
Definition subpicture.c:45
subpicture_t * subpicture_NewFromPicture(vlc_object_t *, picture_t *, vlc_fourcc_t i_chroma)
This function will create a subpicture having one region in the requested chroma showing the given pi...
Definition subpicture.c:121
#define VLC_VECTOR(type)
Vector struct body.
Definition vlc_vector.h:66
Structure describing a filter.
Definition vlc_filter.h:213
Video picture.
Definition vlc_picture.h:130
Definition subpicture.c:40
Definition vlc_subpicture.h:227
picture_t * p_picture
picture comprising this region
Definition vlc_subpicture.h:228
int i_alpha
transparency
Definition vlc_subpicture.h:230
vout_display_place_t place
visible area in display coordinates
Definition vlc_subpicture.h:229
Video subtitle region.
Definition vlc_subpicture.h:71
int i_y
position of region, relative to alignment
Definition vlc_subpicture.h:78
int i_align
alignment flags SUBPICTURE_ALIGN_xxx
Definition vlc_subpicture.h:79
int i_x
position of region, relative to alignment
Definition vlc_subpicture.h:77
bool b_in_window
position the region in window
Definition vlc_subpicture.h:76
video_format_t fmt
format of the picture
Definition vlc_subpicture.h:72
picture_t * p_picture
picture comprising this region
Definition vlc_subpicture.h:73
int i_max_width
Definition vlc_subpicture.h:85
struct vlc_list node
vertical rendering/cropping target/limit
Definition vlc_subpicture.h:88
int i_alpha
transparency
Definition vlc_subpicture.h:80
int i_max_height
horizontal rendering/cropping target/limit
Definition vlc_subpicture.h:86
int text_flags
VLC_SUBPIC_TEXT_FLAG_xxx and SUBPICTURE_ALIGN_xxx.
Definition vlc_subpicture.h:84
text_segment_t * p_text
subtitle text, made of a list of segments
Definition vlc_subpicture.h:83
bool b_absolute
position is absolute in the movie
Definition vlc_subpicture.h:75
Video subtitle.
Definition vlc_subpicture.h:250
vlc_tick_t i_start
beginning of display date
Definition vlc_subpicture.h:267
subpicture_t * p_next
an increasing unique number
Definition vlc_subpicture.h:260
bool b_ephemer
If this flag is set to true the subtitle will be displayed until the next one appears or if i_stop is...
Definition vlc_subpicture.h:271
unsigned i_original_picture_height
original height of the movie
Definition vlc_subpicture.h:285
bool b_fade
enable fading
Definition vlc_subpicture.h:274
unsigned i_original_picture_width
original width of the movie
Definition vlc_subpicture.h:284
subpicture_private_t * p_private
Definition vlc_subpicture.h:291
int i_alpha
transparency
Definition vlc_subpicture.h:286
bool b_subtitle
subtitle with timestamps relative to the video
Definition vlc_subpicture.h:275
int64_t i_order
Definition vlc_subpicture.h:259
vlc_spu_regions regions
region list composing this subtitle
Definition vlc_subpicture.h:263
ssize_t i_channel
subpicture channel ID
Definition vlc_subpicture.h:253
vlc_tick_t i_stop
end of display date.
Definition vlc_subpicture.h:268
subpicture_updater_t updater
Definition vlc_subpicture.h:289
Definition vlc_subpicture.h:219
const struct vlc_spu_updater_ops * ops
Definition vlc_subpicture.h:221
void * sys
Definition vlc_subpicture.h:220
Text segment for subtitles.
Definition vlc_text_style.h:139
video format description
Definition vlc_es.h:337
Definition vlc_es.h:46
Doubly-linked list node.
Definition vlc_list.h:44
VLC object common members.
Definition vlc_objects.h:53
Definition vlc_subpicture.h:234
struct vlc_render_subpicture::@285 regions
list of regions to render
int64_t i_order
Definition vlc_subpicture.h:236
Definition vlc_subpicture.h:109
video_palette_t palette
Definition vlc_subpicture.h:114
int x_start
Definition vlc_subpicture.h:110
int y_end
Definition vlc_subpicture.h:113
int x_end
Definition vlc_subpicture.h:111
int y_start
Definition vlc_subpicture.h:112
Definition vlc_subpicture.h:174
const video_format_t * video_src
Definition vlc_subpicture.h:176
const video_format_t * prev_src
Definition vlc_subpicture.h:183
unsigned display_width
Definition vlc_subpicture.h:179
unsigned display_height
Definition vlc_subpicture.h:180
const video_format_t * video_dst
Definition vlc_subpicture.h:178
const video_format_t * prev_dst
Definition vlc_subpicture.h:185
vlc_tick_t pts
Definition vlc_subpicture.h:189
Subpicture updater operation virtual table.
Definition vlc_subpicture.h:198
void(* destroy)(subpicture_t *)
Optional callback for subpicture private data cleanup.
Definition vlc_subpicture.h:206
void(* update)(subpicture_t *, const struct vlc_spu_updater_configuration *)
Mandatory callback called after pf_validate and doing the main job of creating the subpicture regions...
Definition vlc_subpicture.h:202
Video placement.
Definition vlc_vout_display.h:361
This file is a collection of common definitions and types.
This provides convenience helpers for linked lists.
This file defines picture structures and functions in vlc.
int64_t vlc_tick_t
High precision date or time interval.
Definition vlc_tick.h:48
This provides convenience helpers for vectors.
Video output display modules interface.