Mercurial > mplayer.hg
annotate libass/ass.h @ 36782:06344efeded3
configure: improve FFmpeg check.
If internal FFmpeg is not available we should fall back to
external automatically instead of trying to build without
(which is currently broken it seems).
Also we can compile without internal copy as long as the
necessary headers can be found.
Two are required that FFmpeg does not install:
libavformat/internal.h
libavutil/x86/asm.h
author | reimar |
---|---|
date | Mon, 17 Feb 2014 23:25:32 +0000 |
parents | c3aaaf17c721 |
children |
rev | line source |
---|---|
20008
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19652
diff
changeset
|
1 /* |
26723 | 2 * Copyright (C) 2006 Evgeniy Stepanov <eugeni.stepanov@gmail.com> |
3 * | |
26738
588ce97b44f2
Speak of libass instead of MPlayer in the libass license headers.
diego
parents:
26723
diff
changeset
|
4 * This file is part of libass. |
26723 | 5 * |
34011 | 6 * Permission to use, copy, modify, and distribute this software for any |
7 * purpose with or without fee is hereby granted, provided that the above | |
8 * copyright notice and this permission notice appear in all copies. | |
26723 | 9 * |
34011 | 10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | |
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | |
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | |
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | |
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | |
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | |
26723 | 17 */ |
20008
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19652
diff
changeset
|
18 |
25897
aaebaf255b23
Consistently give all libass multiple inclusion guards a LIBASS_ prefix.
diego
parents:
25613
diff
changeset
|
19 #ifndef LIBASS_ASS_H |
aaebaf255b23
Consistently give all libass multiple inclusion guards a LIBASS_ prefix.
diego
parents:
25613
diff
changeset
|
20 #define LIBASS_ASS_H |
18937 | 21 |
26138
74055622161d
Add missing header #includes to fix 'make checkheaders'.
diego
parents:
25897
diff
changeset
|
22 #include <stdio.h> |
30200 | 23 #include <stdarg.h> |
18937 | 24 #include "ass_types.h" |
25 | |
36363 | 26 #define LIBASS_VERSION 0x01020000 |
30200 | 27 |
28 /* | |
29 * A linked list of images produced by an ass renderer. | |
30 * | |
31 * These images have to be rendered in-order for the correct screen | |
32 * composition. The libass renderer clips these bitmaps to the frame size. | |
33 * w/h can be zero, in this case the bitmap should not be rendered at all. | |
34 * The last bitmap row is not guaranteed to be padded up to stride size, | |
35 * e.g. in the worst case a bitmap has the size stride * (h - 1) + w. | |
36 */ | |
37 typedef struct ass_image { | |
38 int w, h; // Bitmap width/height | |
39 int stride; // Bitmap stride | |
40 unsigned char *bitmap; // 1bpp stride*h alpha buffer | |
41 // Note: the last row may not be padded to | |
42 // bitmap stride! | |
43 uint32_t color; // Bitmap color and alpha, RGBA | |
44 int dst_x, dst_y; // Bitmap placement inside the video frame | |
45 | |
46 struct ass_image *next; // Next image, or NULL | |
36363 | 47 |
48 enum { | |
49 IMAGE_TYPE_CHARACTER, | |
50 IMAGE_TYPE_OUTLINE, | |
51 IMAGE_TYPE_SHADOW | |
52 } type; | |
53 | |
30200 | 54 } ASS_Image; |
18937 | 55 |
30200 | 56 /* |
57 * Hinting type. (see ass_set_hinting below) | |
58 * | |
59 * FreeType's native hinter is still buggy sometimes and it is recommended | |
60 * to use the light autohinter, ASS_HINTING_LIGHT, instead. For best | |
61 * compatibility with problematic fonts, disable hinting. | |
62 */ | |
63 typedef enum { | |
64 ASS_HINTING_NONE = 0, | |
65 ASS_HINTING_LIGHT, | |
66 ASS_HINTING_NORMAL, | |
67 ASS_HINTING_NATIVE | |
68 } ASS_Hinting; | |
18937 | 69 |
30200 | 70 /** |
34295 | 71 * \brief Text shaping levels. |
72 * | |
73 * SIMPLE is a fast, font-agnostic shaper that can do only substitutions. | |
74 * COMPLEX is a slower shaper using OpenType for substitutions and positioning. | |
75 * | |
76 * libass uses the best shaper available by default. | |
77 */ | |
78 typedef enum { | |
79 ASS_SHAPING_SIMPLE = 0, | |
80 ASS_SHAPING_COMPLEX | |
81 } ASS_ShapingLevel; | |
82 | |
83 /** | |
30200 | 84 * \brief Initialize the library. |
85 * \return library handle or NULL if failed | |
86 */ | |
87 ASS_Library *ass_library_init(void); | |
18937 | 88 |
30200 | 89 /** |
90 * \brief Finalize the library | |
91 * \param priv library handle | |
92 */ | |
93 void ass_library_done(ASS_Library *priv); | |
23134
1de2a46a0987
Add -ass-hinting option for setting font hinting method.
eugeni
parents:
21506
diff
changeset
|
94 |
18937 | 95 /** |
31853 | 96 * \brief Set additional fonts directory. |
97 * Optional directory that will be scanned for fonts recursively. The fonts | |
98 * found are used for font lookup. | |
99 * NOTE: A valid font directory is not needed to support embedded fonts. | |
30200 | 100 * |
101 * \param priv library handle | |
31853 | 102 * \param fonts_dir directory with additional fonts |
18937 | 103 */ |
30200 | 104 void ass_set_fonts_dir(ASS_Library *priv, const char *fonts_dir); |
18937 | 105 |
106 /** | |
30200 | 107 * \brief Whether fonts should be extracted from track data. |
18937 | 108 * \param priv library handle |
30200 | 109 * \param extract whether to extract fonts |
18937 | 110 */ |
30200 | 111 void ass_set_extract_fonts(ASS_Library *priv, int extract); |
20477 | 112 |
113 /** | |
30200 | 114 * \brief Register style overrides with a library instance. |
115 * The overrides should have the form [Style.]Param=Value, e.g. | |
116 * SomeStyle.Font=Arial | |
117 * ScaledBorderAndShadow=yes | |
118 * | |
119 * \param priv library handle | |
120 * \param list NULL-terminated list of strings | |
20477 | 121 */ |
30200 | 122 void ass_set_style_overrides(ASS_Library *priv, char **list); |
20477 | 123 |
30200 | 124 /** |
125 * \brief Explicitly process style overrides for a track. | |
126 * \param track track handle | |
127 */ | |
128 void ass_process_force_style(ASS_Track *track); | |
18937 | 129 |
20477 | 130 /** |
30200 | 131 * \brief Register a callback for debug/info messages. |
132 * If a callback is registered, it is called for every message emitted by | |
133 * libass. The callback receives a format string and a list of arguments, | |
134 * to be used for the printf family of functions. Additionally, a log level | |
135 * from 0 (FATAL errors) to 7 (verbose DEBUG) is passed. Usually, level 5 | |
136 * should be used by applications. | |
137 * If no callback is set, all messages level < 5 are printed to stderr, | |
138 * prefixed with [ass]. | |
139 * | |
140 * \param priv library handle | |
141 * \param msg_cb pointer to callback function | |
142 * \param data additional data, will be passed to callback | |
143 */ | |
144 void ass_set_message_cb(ASS_Library *priv, void (*msg_cb) | |
145 (int level, const char *fmt, va_list args, void *data), | |
146 void *data); | |
147 | |
148 /** | |
149 * \brief Initialize the renderer. | |
20477 | 150 * \param priv library handle |
151 * \return renderer handle or NULL if failed | |
152 */ | |
30200 | 153 ASS_Renderer *ass_renderer_init(ASS_Library *); |
20477 | 154 |
155 /** | |
30200 | 156 * \brief Finalize the renderer. |
20477 | 157 * \param priv renderer handle |
158 */ | |
30200 | 159 void ass_renderer_done(ASS_Renderer *priv); |
160 | |
161 /** | |
162 * \brief Set the frame size in pixels, including margins. | |
36363 | 163 * The renderer will never return images that are outside of the frame area. |
164 * The value set with this function can influence the pixel aspect ratio used | |
165 * for rendering. If the frame size doesn't equal to the video size, you may | |
166 * have to use ass_set_pixel_aspect(). | |
167 * @see ass_set_pixel_aspect() | |
168 * @see ass_set_margins() | |
30200 | 169 * \param priv renderer handle |
170 * \param w width | |
171 * \param h height | |
172 */ | |
173 void ass_set_frame_size(ASS_Renderer *priv, int w, int h); | |
20477 | 174 |
30200 | 175 /** |
36363 | 176 * \brief Set the source image size in pixels. |
177 * This is used to calculate the source aspect ratio and the blur scale. | |
178 * The source image size can be reset to default by setting w and h to 0. | |
179 * The value set with this function can influence the pixel aspect ratio used | |
180 * for rendering. | |
181 * @see ass_set_pixel_aspect() | |
182 * \param priv renderer handle | |
183 * \param w width | |
184 * \param h height | |
185 */ | |
186 void ass_set_storage_size(ASS_Renderer *priv, int w, int h); | |
187 | |
188 /** | |
34295 | 189 * \brief Set shaping level. This is merely a hint, the renderer will use |
190 * whatever is available if the request cannot be fulfilled. | |
191 * \param level shaping level | |
192 */ | |
193 void ass_set_shaper(ASS_Renderer *priv, ASS_ShapingLevel level); | |
194 | |
195 /** | |
30200 | 196 * \brief Set frame margins. These values may be negative if pan-and-scan |
36363 | 197 * is used. The margins are in pixels. Each value specifies the distance from |
198 * the video rectangle to the renderer frame. If a given margin value is | |
199 * positive, there will be free space between renderer frame and video area. | |
200 * If a given margin value is negative, the frame is inside the video, i.e. | |
201 * the video has been cropped. | |
202 * | |
203 * The renderer will try to keep subtitles inside the frame area. If possible, | |
204 * text is layout so that it is inside the cropped area. Subtitle events | |
205 * that can't be moved are cropped against the frame area. | |
206 * | |
207 * ass_set_use_margins() can be used to allow libass to render subtitles into | |
208 * the empty areas if margins are positive, i.e. the video area is smaller than | |
209 * the frame. (Traditionally, this has been used to show subtitles in | |
210 * the bottom "black bar" between video bottom screen border when playing 16:9 | |
211 * video on a 4:3 screen.) | |
212 * | |
213 * When using this function, it is recommended to calculate and set your own | |
214 * aspect ratio with ass_set_pixel_aspect(), as the defaults won't make any | |
215 * sense. | |
216 * @see ass_set_pixel_aspect() | |
30200 | 217 * \param priv renderer handle |
218 * \param t top margin | |
219 * \param b bottom margin | |
220 * \param l left margin | |
221 * \param r right margin | |
222 */ | |
223 void ass_set_margins(ASS_Renderer *priv, int t, int b, int l, int r); | |
20477 | 224 |
225 /** | |
30200 | 226 * \brief Whether margins should be used for placing regular events. |
227 * \param priv renderer handle | |
228 * \param use whether to use the margins | |
229 */ | |
230 void ass_set_use_margins(ASS_Renderer *priv, int use); | |
231 | |
232 /** | |
36363 | 233 * \brief Set pixel aspect ratio correction. |
234 * This is the ratio of pixel width to pixel height. | |
235 * | |
236 * Generally, this is (s_w / s_h) / (d_w / d_h), where s_w and s_h is the | |
237 * video storage size, and d_w and d_h is the video display size. (Display | |
238 * and storage size can be different for anamorphic video, such as DVDs.) | |
239 * | |
240 * If the pixel aspect ratio is 0, or if the aspect ratio has never been set | |
241 * by calling this function, libass will calculate a default pixel aspect ratio | |
242 * out of values set with ass_set_frame_size() and ass_set_storage_size(). Note | |
243 * that this is useful only if the frame size corresponds to the video display | |
244 * size. Keep in mind that the margins set with ass_set_margins() are ignored | |
245 * for aspect ratio calculations as well. | |
246 * If the storage size has not been set, a pixel aspect ratio of 1 is assumed. | |
247 * \param priv renderer handle | |
248 * \param par pixel aspect ratio (1.0 means square pixels, 0 means default) | |
249 */ | |
250 void ass_set_pixel_aspect(ASS_Renderer *priv, double par); | |
251 | |
252 /** | |
30200 | 253 * \brief Set aspect ratio parameters. |
36363 | 254 * This calls ass_set_pixel_aspect(priv, dar / sar). |
255 * @deprecated New code should use ass_set_pixel_aspect(). | |
30200 | 256 * \param priv renderer handle |
257 * \param dar display aspect ratio (DAR), prescaled for output PAR | |
258 * \param sar storage aspect ratio (SAR) | |
20477 | 259 */ |
30200 | 260 void ass_set_aspect_ratio(ASS_Renderer *priv, double dar, double sar); |
261 | |
262 /** | |
263 * \brief Set a fixed font scaling factor. | |
264 * \param priv renderer handle | |
265 * \param font_scale scaling factor, default is 1.0 | |
266 */ | |
267 void ass_set_font_scale(ASS_Renderer *priv, double font_scale); | |
268 | |
269 /** | |
270 * \brief Set font hinting method. | |
271 * \param priv renderer handle | |
272 * \param ht hinting method | |
273 */ | |
274 void ass_set_hinting(ASS_Renderer *priv, ASS_Hinting ht); | |
275 | |
276 /** | |
277 * \brief Set line spacing. Will not be scaled with frame size. | |
278 * \param priv renderer handle | |
279 * \param line_spacing line spacing in pixels | |
280 */ | |
281 void ass_set_line_spacing(ASS_Renderer *priv, double line_spacing); | |
18937 | 282 |
283 /** | |
35262 | 284 * \brief Set vertical line position. |
285 * \param priv renderer handle | |
286 * \param line_position vertical line position of subtitles in percent | |
287 * (0-100: 0 = on the bottom (default), 100 = on top) | |
288 */ | |
289 void ass_set_line_position(ASS_Renderer *priv, double line_position); | |
290 | |
291 /** | |
30200 | 292 * \brief Set font lookup defaults. |
293 * \param default_font path to default font to use. Must be supplied if | |
294 * fontconfig is disabled or unavailable. | |
295 * \param default_family fallback font family for fontconfig, or NULL | |
296 * \param fc whether to use fontconfig | |
297 * \param config path to fontconfig configuration file, or NULL. Only relevant | |
298 * if fontconfig is used. | |
299 * \param update whether fontconfig cache should be built/updated now. Only | |
300 * relevant if fontconfig is used. | |
31853 | 301 * |
302 * NOTE: font lookup must be configured before an ASS_Renderer can be used. | |
26582
62ac4f8062ee
Remove libass dependency on global font_fontconfig variable.
eugeni
parents:
26138
diff
changeset
|
303 */ |
30200 | 304 void ass_set_fonts(ASS_Renderer *priv, const char *default_font, |
305 const char *default_family, int fc, const char *config, | |
306 int update); | |
26582
62ac4f8062ee
Remove libass dependency on global font_fontconfig variable.
eugeni
parents:
26138
diff
changeset
|
307 |
62ac4f8062ee
Remove libass dependency on global font_fontconfig variable.
eugeni
parents:
26138
diff
changeset
|
308 /** |
30200 | 309 * \brief Update/build font cache. This needs to be called if it was |
310 * disabled when ass_set_fonts was set. | |
311 * | |
312 * \param priv renderer handle | |
313 * \return success | |
314 */ | |
315 int ass_fonts_update(ASS_Renderer *priv); | |
316 | |
317 /** | |
318 * \brief Set hard cache limits. Do not set, or set to zero, for reasonable | |
319 * defaults. | |
320 * | |
321 * \param priv renderer handle | |
322 * \param glyph_max maximum number of cached glyphs | |
323 * \param bitmap_max_size maximum bitmap cache size (in MB) | |
324 */ | |
325 void ass_set_cache_limits(ASS_Renderer *priv, int glyph_max, | |
326 int bitmap_max_size); | |
327 | |
328 /** | |
329 * \brief Render a frame, producing a list of ASS_Image. | |
330 * \param priv renderer handle | |
18937 | 331 * \param track subtitle track |
332 * \param now video timestamp in milliseconds | |
30200 | 333 * \param detect_change will be set to 1 if a change occured compared |
334 * to the last invocation | |
18937 | 335 */ |
30200 | 336 ASS_Image *ass_render_frame(ASS_Renderer *priv, ASS_Track *track, |
337 long long now, int *detect_change); | |
18937 | 338 |
339 | |
30200 | 340 /* |
341 * The following functions operate on track objects and do not need | |
342 * an ass_renderer | |
343 */ | |
18937 | 344 |
345 /** | |
30200 | 346 * \brief Allocate a new empty track object. |
347 * \param library handle | |
18937 | 348 * \return pointer to empty track |
349 */ | |
30200 | 350 ASS_Track *ass_new_track(ASS_Library *); |
18937 | 351 |
352 /** | |
30200 | 353 * \brief Deallocate track and all its child objects (styles and events). |
18937 | 354 * \param track track to deallocate |
355 */ | |
30200 | 356 void ass_free_track(ASS_Track *track); |
18937 | 357 |
358 /** | |
30200 | 359 * \brief Allocate new style. |
18937 | 360 * \param track track |
361 * \return newly allocated style id | |
362 */ | |
30200 | 363 int ass_alloc_style(ASS_Track *track); |
18937 | 364 |
365 /** | |
30200 | 366 * \brief Allocate new event. |
18937 | 367 * \param track track |
368 * \return newly allocated event id | |
369 */ | |
30200 | 370 int ass_alloc_event(ASS_Track *track); |
18937 | 371 |
372 /** | |
30200 | 373 * \brief Delete a style. |
19474
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
18937
diff
changeset
|
374 * \param track track |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
18937
diff
changeset
|
375 * \param sid style id |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
18937
diff
changeset
|
376 * Deallocates style data. Does not modify track->n_styles. |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
18937
diff
changeset
|
377 */ |
30200 | 378 void ass_free_style(ASS_Track *track, int sid); |
19474
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
18937
diff
changeset
|
379 |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
18937
diff
changeset
|
380 /** |
30200 | 381 * \brief Delete an event. |
19474
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
18937
diff
changeset
|
382 * \param track track |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
18937
diff
changeset
|
383 * \param eid event id |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
18937
diff
changeset
|
384 * Deallocates event data. Does not modify track->n_events. |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
18937
diff
changeset
|
385 */ |
30200 | 386 void ass_free_event(ASS_Track *track, int eid); |
19474
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
18937
diff
changeset
|
387 |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
18937
diff
changeset
|
388 /** |
27498
d895515b366d
libass: add a new ass_process_data() to process demuxed subtitle packets
aurel
parents:
26738
diff
changeset
|
389 * \brief Parse a chunk of subtitle stream data. |
d895515b366d
libass: add a new ass_process_data() to process demuxed subtitle packets
aurel
parents:
26738
diff
changeset
|
390 * \param track track |
d895515b366d
libass: add a new ass_process_data() to process demuxed subtitle packets
aurel
parents:
26738
diff
changeset
|
391 * \param data string to parse |
d895515b366d
libass: add a new ass_process_data() to process demuxed subtitle packets
aurel
parents:
26738
diff
changeset
|
392 * \param size length of data |
d895515b366d
libass: add a new ass_process_data() to process demuxed subtitle packets
aurel
parents:
26738
diff
changeset
|
393 */ |
30200 | 394 void ass_process_data(ASS_Track *track, char *data, int size); |
27498
d895515b366d
libass: add a new ass_process_data() to process demuxed subtitle packets
aurel
parents:
26738
diff
changeset
|
395 |
d895515b366d
libass: add a new ass_process_data() to process demuxed subtitle packets
aurel
parents:
26738
diff
changeset
|
396 /** |
31853 | 397 * \brief Parse Codec Private section of the subtitle stream, in Matroska |
398 * format. See the Matroska specification for details. | |
18937 | 399 * \param track target track |
400 * \param data string to parse | |
401 * \param size length of data | |
402 */ | |
30200 | 403 void ass_process_codec_private(ASS_Track *track, char *data, int size); |
18937 | 404 |
405 /** | |
31853 | 406 * \brief Parse a chunk of subtitle stream data. A chunk contains exactly one |
407 * event in Matroska format. See the Matroska specification for details. | |
18937 | 408 * \param track track |
409 * \param data string to parse | |
410 * \param size length of data | |
411 * \param timecode starting time of the event (milliseconds) | |
412 * \param duration duration of the event (milliseconds) | |
30200 | 413 */ |
414 void ass_process_chunk(ASS_Track *track, char *data, int size, | |
415 long long timecode, long long duration); | |
23424
7286d245bf33
Move code for reading a file and recoding it to utf-8 to a separate function.
eugeni
parents:
23134
diff
changeset
|
416 |
18937 | 417 /** |
31227
ee7beb1a3a6e
backport ass_flush_events() from upstream libass and make use of it
aurel
parents:
30200
diff
changeset
|
418 * \brief Flush buffered events. |
ee7beb1a3a6e
backport ass_flush_events() from upstream libass and make use of it
aurel
parents:
30200
diff
changeset
|
419 * \param track track |
ee7beb1a3a6e
backport ass_flush_events() from upstream libass and make use of it
aurel
parents:
30200
diff
changeset
|
420 */ |
ee7beb1a3a6e
backport ass_flush_events() from upstream libass and make use of it
aurel
parents:
30200
diff
changeset
|
421 void ass_flush_events(ASS_Track *track); |
ee7beb1a3a6e
backport ass_flush_events() from upstream libass and make use of it
aurel
parents:
30200
diff
changeset
|
422 |
ee7beb1a3a6e
backport ass_flush_events() from upstream libass and make use of it
aurel
parents:
30200
diff
changeset
|
423 /** |
18937 | 424 * \brief Read subtitles from file. |
30200 | 425 * \param library library handle |
18937 | 426 * \param fname file name |
30200 | 427 * \param codepage encoding (iconv format) |
18937 | 428 * \return newly allocated track |
429 */ | |
30200 | 430 ASS_Track *ass_read_file(ASS_Library *library, char *fname, |
431 char *codepage); | |
18937 | 432 |
433 /** | |
20603 | 434 * \brief Read subtitles from memory. |
30200 | 435 * \param library library handle |
20603 | 436 * \param buf pointer to subtitles text |
437 * \param bufsize size of buffer | |
30200 | 438 * \param codepage encoding (iconv format) |
20603 | 439 * \return newly allocated track |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27499
diff
changeset
|
440 */ |
30200 | 441 ASS_Track *ass_read_memory(ASS_Library *library, char *buf, |
442 size_t bufsize, char *codepage); | |
20603 | 443 /** |
30200 | 444 * \brief Read styles from file into already initialized track. |
445 * \param fname file name | |
446 * \param codepage encoding (iconv format) | |
19652
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19638
diff
changeset
|
447 * \return 0 on success |
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19638
diff
changeset
|
448 */ |
30200 | 449 int ass_read_styles(ASS_Track *track, char *fname, char *codepage); |
19652
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19638
diff
changeset
|
450 |
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19638
diff
changeset
|
451 /** |
21455 | 452 * \brief Add a memory font. |
30200 | 453 * \param library library handle |
18937 | 454 * \param name attachment name |
455 * \param data binary font data | |
456 * \param data_size data size | |
457 */ | |
30200 | 458 void ass_add_font(ASS_Library *library, char *name, char *data, |
459 int data_size); | |
18937 | 460 |
461 /** | |
30200 | 462 * \brief Remove all fonts stored in an ass_library object. |
463 * \param library library handle | |
25613
f00333e3facf
Copy font data to ass_library instead of referencing demuxer-owned memory.
eugeni
parents:
25535
diff
changeset
|
464 */ |
30200 | 465 void ass_clear_fonts(ASS_Library *library); |
25613
f00333e3facf
Copy font data to ass_library instead of referencing demuxer-owned memory.
eugeni
parents:
25535
diff
changeset
|
466 |
f00333e3facf
Copy font data to ass_library instead of referencing demuxer-owned memory.
eugeni
parents:
25535
diff
changeset
|
467 /** |
30200 | 468 * \brief Calculates timeshift from now to the start of some other subtitle |
469 * event, depending on movement parameter. | |
18937 | 470 * \param track subtitle track |
30200 | 471 * \param now current time in milliseconds |
18937 | 472 * \param movement how many events to skip from the one currently displayed |
473 * +2 means "the one after the next", -1 means "previous" | |
30200 | 474 * \return timeshift in milliseconds |
18937 | 475 */ |
30200 | 476 long long ass_step_sub(ASS_Track *track, long long now, int movement); |
18937 | 477 |
25897
aaebaf255b23
Consistently give all libass multiple inclusion guards a LIBASS_ prefix.
diego
parents:
25613
diff
changeset
|
478 #endif /* LIBASS_ASS_H */ |