Mercurial > mplayer.hg
annotate libass/ass.h @ 31685:31b6397e3b28
Another try at fixing swscale on win64, as per r31153.
Don't change paramater passing, but instead use casts.
Shouldn't affect asm output on anything other than win64.
libswscale should work on win64 now.
The rest of ffmpeg still isn't win64 compatible due to the issue of xmm
clobbers, but swscale doesn't use any SSE.
Patch by Anton Mitrofanov <BugMaster AT narod DOT ru>.
author | darkshikari |
---|---|
date | Sun, 18 Jul 2010 21:39:57 +0000 |
parents | 1f4cf4c05e83 |
children | e64df5862cea |
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 * |
26738
588ce97b44f2
Speak of libass instead of MPlayer in the libass license headers.
diego
parents:
26723
diff
changeset
|
6 * libass is free software; you can redistribute it and/or modify |
26723 | 7 * it under the terms of the GNU General Public License as published by |
8 * the Free Software Foundation; either version 2 of the License, or | |
9 * (at your option) any later version. | |
10 * | |
26738
588ce97b44f2
Speak of libass instead of MPlayer in the libass license headers.
diego
parents:
26723
diff
changeset
|
11 * libass is distributed in the hope that it will be useful, |
26723 | 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 * GNU General Public License for more details. | |
15 * | |
16 * You should have received a copy of the GNU General Public License along | |
26738
588ce97b44f2
Speak of libass instead of MPlayer in the libass license headers.
diego
parents:
26723
diff
changeset
|
17 * with libass; if not, write to the Free Software Foundation, Inc., |
26723 | 18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
19 */ | |
20008
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19652
diff
changeset
|
20 |
25897
aaebaf255b23
Consistently give all libass multiple inclusion guards a LIBASS_ prefix.
diego
parents:
25613
diff
changeset
|
21 #ifndef LIBASS_ASS_H |
aaebaf255b23
Consistently give all libass multiple inclusion guards a LIBASS_ prefix.
diego
parents:
25613
diff
changeset
|
22 #define LIBASS_ASS_H |
18937 | 23 |
26138
74055622161d
Add missing header #includes to fix 'make checkheaders'.
diego
parents:
25897
diff
changeset
|
24 #include <stdio.h> |
30200 | 25 #include <stdarg.h> |
18937 | 26 #include "ass_types.h" |
27 | |
31242 | 28 #define LIBASS_VERSION 0x00910000 |
30200 | 29 |
30 /* | |
31 * A linked list of images produced by an ass renderer. | |
32 * | |
33 * These images have to be rendered in-order for the correct screen | |
34 * composition. The libass renderer clips these bitmaps to the frame size. | |
35 * w/h can be zero, in this case the bitmap should not be rendered at all. | |
36 * The last bitmap row is not guaranteed to be padded up to stride size, | |
37 * e.g. in the worst case a bitmap has the size stride * (h - 1) + w. | |
38 */ | |
39 typedef struct ass_image { | |
40 int w, h; // Bitmap width/height | |
41 int stride; // Bitmap stride | |
42 unsigned char *bitmap; // 1bpp stride*h alpha buffer | |
43 // Note: the last row may not be padded to | |
44 // bitmap stride! | |
45 uint32_t color; // Bitmap color and alpha, RGBA | |
46 int dst_x, dst_y; // Bitmap placement inside the video frame | |
47 | |
48 struct ass_image *next; // Next image, or NULL | |
49 } ASS_Image; | |
18937 | 50 |
30200 | 51 /* |
52 * Hinting type. (see ass_set_hinting below) | |
53 * | |
54 * FreeType's native hinter is still buggy sometimes and it is recommended | |
55 * to use the light autohinter, ASS_HINTING_LIGHT, instead. For best | |
56 * compatibility with problematic fonts, disable hinting. | |
57 */ | |
58 typedef enum { | |
59 ASS_HINTING_NONE = 0, | |
60 ASS_HINTING_LIGHT, | |
61 ASS_HINTING_NORMAL, | |
62 ASS_HINTING_NATIVE | |
63 } ASS_Hinting; | |
18937 | 64 |
30200 | 65 /** |
66 * \brief Initialize the library. | |
67 * \return library handle or NULL if failed | |
68 */ | |
69 ASS_Library *ass_library_init(void); | |
18937 | 70 |
30200 | 71 /** |
72 * \brief Finalize the library | |
73 * \param priv library handle | |
74 */ | |
75 void ass_library_done(ASS_Library *priv); | |
23134
1de2a46a0987
Add -ass-hinting option for setting font hinting method.
eugeni
parents:
21506
diff
changeset
|
76 |
18937 | 77 /** |
30200 | 78 * \brief Set private font directory. |
79 * It is used for saving embedded fonts and also in font lookup. | |
80 * | |
81 * \param priv library handle | |
82 * \param fonts_dir private directory for font extraction | |
18937 | 83 */ |
30200 | 84 void ass_set_fonts_dir(ASS_Library *priv, const char *fonts_dir); |
18937 | 85 |
86 /** | |
30200 | 87 * \brief Whether fonts should be extracted from track data. |
18937 | 88 * \param priv library handle |
30200 | 89 * \param extract whether to extract fonts |
18937 | 90 */ |
30200 | 91 void ass_set_extract_fonts(ASS_Library *priv, int extract); |
20477 | 92 |
93 /** | |
30200 | 94 * \brief Register style overrides with a library instance. |
95 * The overrides should have the form [Style.]Param=Value, e.g. | |
96 * SomeStyle.Font=Arial | |
97 * ScaledBorderAndShadow=yes | |
98 * | |
99 * \param priv library handle | |
100 * \param list NULL-terminated list of strings | |
20477 | 101 */ |
30200 | 102 void ass_set_style_overrides(ASS_Library *priv, char **list); |
20477 | 103 |
30200 | 104 /** |
105 * \brief Explicitly process style overrides for a track. | |
106 * \param track track handle | |
107 */ | |
108 void ass_process_force_style(ASS_Track *track); | |
18937 | 109 |
20477 | 110 /** |
30200 | 111 * \brief Register a callback for debug/info messages. |
112 * If a callback is registered, it is called for every message emitted by | |
113 * libass. The callback receives a format string and a list of arguments, | |
114 * to be used for the printf family of functions. Additionally, a log level | |
115 * from 0 (FATAL errors) to 7 (verbose DEBUG) is passed. Usually, level 5 | |
116 * should be used by applications. | |
117 * If no callback is set, all messages level < 5 are printed to stderr, | |
118 * prefixed with [ass]. | |
119 * | |
120 * \param priv library handle | |
121 * \param msg_cb pointer to callback function | |
122 * \param data additional data, will be passed to callback | |
123 */ | |
124 void ass_set_message_cb(ASS_Library *priv, void (*msg_cb) | |
125 (int level, const char *fmt, va_list args, void *data), | |
126 void *data); | |
127 | |
128 /** | |
129 * \brief Initialize the renderer. | |
20477 | 130 * \param priv library handle |
131 * \return renderer handle or NULL if failed | |
132 */ | |
30200 | 133 ASS_Renderer *ass_renderer_init(ASS_Library *); |
20477 | 134 |
135 /** | |
30200 | 136 * \brief Finalize the renderer. |
20477 | 137 * \param priv renderer handle |
138 */ | |
30200 | 139 void ass_renderer_done(ASS_Renderer *priv); |
140 | |
141 /** | |
142 * \brief Set the frame size in pixels, including margins. | |
143 * \param priv renderer handle | |
144 * \param w width | |
145 * \param h height | |
146 */ | |
147 void ass_set_frame_size(ASS_Renderer *priv, int w, int h); | |
20477 | 148 |
30200 | 149 /** |
150 * \brief Set frame margins. These values may be negative if pan-and-scan | |
151 * is used. | |
152 * \param priv renderer handle | |
153 * \param t top margin | |
154 * \param b bottom margin | |
155 * \param l left margin | |
156 * \param r right margin | |
157 */ | |
158 void ass_set_margins(ASS_Renderer *priv, int t, int b, int l, int r); | |
20477 | 159 |
160 /** | |
30200 | 161 * \brief Whether margins should be used for placing regular events. |
162 * \param priv renderer handle | |
163 * \param use whether to use the margins | |
164 */ | |
165 void ass_set_use_margins(ASS_Renderer *priv, int use); | |
166 | |
167 /** | |
168 * \brief Set aspect ratio parameters. | |
169 * \param priv renderer handle | |
170 * \param dar display aspect ratio (DAR), prescaled for output PAR | |
171 * \param sar storage aspect ratio (SAR) | |
20477 | 172 */ |
30200 | 173 void ass_set_aspect_ratio(ASS_Renderer *priv, double dar, double sar); |
174 | |
175 /** | |
176 * \brief Set a fixed font scaling factor. | |
177 * \param priv renderer handle | |
178 * \param font_scale scaling factor, default is 1.0 | |
179 */ | |
180 void ass_set_font_scale(ASS_Renderer *priv, double font_scale); | |
181 | |
182 /** | |
183 * \brief Set font hinting method. | |
184 * \param priv renderer handle | |
185 * \param ht hinting method | |
186 */ | |
187 void ass_set_hinting(ASS_Renderer *priv, ASS_Hinting ht); | |
188 | |
189 /** | |
190 * \brief Set line spacing. Will not be scaled with frame size. | |
191 * \param priv renderer handle | |
192 * \param line_spacing line spacing in pixels | |
193 */ | |
194 void ass_set_line_spacing(ASS_Renderer *priv, double line_spacing); | |
18937 | 195 |
196 /** | |
30200 | 197 * \brief Set font lookup defaults. |
198 * \param default_font path to default font to use. Must be supplied if | |
199 * fontconfig is disabled or unavailable. | |
200 * \param default_family fallback font family for fontconfig, or NULL | |
201 * \param fc whether to use fontconfig | |
202 * \param config path to fontconfig configuration file, or NULL. Only relevant | |
203 * if fontconfig is used. | |
204 * \param update whether fontconfig cache should be built/updated now. Only | |
205 * relevant if fontconfig is used. | |
26582
62ac4f8062ee
Remove libass dependency on global font_fontconfig variable.
eugeni
parents:
26138
diff
changeset
|
206 */ |
30200 | 207 void ass_set_fonts(ASS_Renderer *priv, const char *default_font, |
208 const char *default_family, int fc, const char *config, | |
209 int update); | |
26582
62ac4f8062ee
Remove libass dependency on global font_fontconfig variable.
eugeni
parents:
26138
diff
changeset
|
210 |
62ac4f8062ee
Remove libass dependency on global font_fontconfig variable.
eugeni
parents:
26138
diff
changeset
|
211 /** |
30200 | 212 * \brief Update/build font cache. This needs to be called if it was |
213 * disabled when ass_set_fonts was set. | |
214 * | |
215 * \param priv renderer handle | |
216 * \return success | |
217 */ | |
218 int ass_fonts_update(ASS_Renderer *priv); | |
219 | |
220 /** | |
221 * \brief Set hard cache limits. Do not set, or set to zero, for reasonable | |
222 * defaults. | |
223 * | |
224 * \param priv renderer handle | |
225 * \param glyph_max maximum number of cached glyphs | |
226 * \param bitmap_max_size maximum bitmap cache size (in MB) | |
227 */ | |
228 void ass_set_cache_limits(ASS_Renderer *priv, int glyph_max, | |
229 int bitmap_max_size); | |
230 | |
231 /** | |
232 * \brief Render a frame, producing a list of ASS_Image. | |
233 * \param priv renderer handle | |
18937 | 234 * \param track subtitle track |
235 * \param now video timestamp in milliseconds | |
30200 | 236 * \param detect_change will be set to 1 if a change occured compared |
237 * to the last invocation | |
18937 | 238 */ |
30200 | 239 ASS_Image *ass_render_frame(ASS_Renderer *priv, ASS_Track *track, |
240 long long now, int *detect_change); | |
18937 | 241 |
242 | |
30200 | 243 /* |
244 * The following functions operate on track objects and do not need | |
245 * an ass_renderer | |
246 */ | |
18937 | 247 |
248 /** | |
30200 | 249 * \brief Allocate a new empty track object. |
250 * \param library handle | |
18937 | 251 * \return pointer to empty track |
252 */ | |
30200 | 253 ASS_Track *ass_new_track(ASS_Library *); |
18937 | 254 |
255 /** | |
30200 | 256 * \brief Deallocate track and all its child objects (styles and events). |
18937 | 257 * \param track track to deallocate |
258 */ | |
30200 | 259 void ass_free_track(ASS_Track *track); |
18937 | 260 |
261 /** | |
30200 | 262 * \brief Allocate new style. |
18937 | 263 * \param track track |
264 * \return newly allocated style id | |
265 */ | |
30200 | 266 int ass_alloc_style(ASS_Track *track); |
18937 | 267 |
268 /** | |
30200 | 269 * \brief Allocate new event. |
18937 | 270 * \param track track |
271 * \return newly allocated event id | |
272 */ | |
30200 | 273 int ass_alloc_event(ASS_Track *track); |
18937 | 274 |
275 /** | |
30200 | 276 * \brief Delete a style. |
19474
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
18937
diff
changeset
|
277 * \param track track |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
18937
diff
changeset
|
278 * \param sid style id |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
18937
diff
changeset
|
279 * Deallocates style data. Does not modify track->n_styles. |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
18937
diff
changeset
|
280 */ |
30200 | 281 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
|
282 |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
18937
diff
changeset
|
283 /** |
30200 | 284 * \brief Delete an event. |
19474
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
18937
diff
changeset
|
285 * \param track track |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
18937
diff
changeset
|
286 * \param eid event id |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
18937
diff
changeset
|
287 * Deallocates event data. Does not modify track->n_events. |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
18937
diff
changeset
|
288 */ |
30200 | 289 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
|
290 |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
18937
diff
changeset
|
291 /** |
27498
d895515b366d
libass: add a new ass_process_data() to process demuxed subtitle packets
aurel
parents:
26738
diff
changeset
|
292 * \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
|
293 * \param track track |
d895515b366d
libass: add a new ass_process_data() to process demuxed subtitle packets
aurel
parents:
26738
diff
changeset
|
294 * \param data string to parse |
d895515b366d
libass: add a new ass_process_data() to process demuxed subtitle packets
aurel
parents:
26738
diff
changeset
|
295 * \param size length of data |
d895515b366d
libass: add a new ass_process_data() to process demuxed subtitle packets
aurel
parents:
26738
diff
changeset
|
296 */ |
30200 | 297 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
|
298 |
d895515b366d
libass: add a new ass_process_data() to process demuxed subtitle packets
aurel
parents:
26738
diff
changeset
|
299 /** |
30200 | 300 * \brief Parse Codec Private section of subtitle stream. |
18937 | 301 * \param track target track |
302 * \param data string to parse | |
303 * \param size length of data | |
304 */ | |
30200 | 305 void ass_process_codec_private(ASS_Track *track, char *data, int size); |
18937 | 306 |
307 /** | |
30200 | 308 * \brief Parse a chunk of subtitle stream data. In Matroska, |
309 * this contains exactly 1 event (or a commentary). | |
18937 | 310 * \param track track |
311 * \param data string to parse | |
312 * \param size length of data | |
313 * \param timecode starting time of the event (milliseconds) | |
314 * \param duration duration of the event (milliseconds) | |
30200 | 315 */ |
316 void ass_process_chunk(ASS_Track *track, char *data, int size, | |
317 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
|
318 |
18937 | 319 /** |
31227
ee7beb1a3a6e
backport ass_flush_events() from upstream libass and make use of it
aurel
parents:
30200
diff
changeset
|
320 * \brief Flush buffered events. |
ee7beb1a3a6e
backport ass_flush_events() from upstream libass and make use of it
aurel
parents:
30200
diff
changeset
|
321 * \param track track |
ee7beb1a3a6e
backport ass_flush_events() from upstream libass and make use of it
aurel
parents:
30200
diff
changeset
|
322 */ |
ee7beb1a3a6e
backport ass_flush_events() from upstream libass and make use of it
aurel
parents:
30200
diff
changeset
|
323 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
|
324 |
ee7beb1a3a6e
backport ass_flush_events() from upstream libass and make use of it
aurel
parents:
30200
diff
changeset
|
325 /** |
18937 | 326 * \brief Read subtitles from file. |
30200 | 327 * \param library library handle |
18937 | 328 * \param fname file name |
30200 | 329 * \param codepage encoding (iconv format) |
18937 | 330 * \return newly allocated track |
331 */ | |
30200 | 332 ASS_Track *ass_read_file(ASS_Library *library, char *fname, |
333 char *codepage); | |
18937 | 334 |
335 /** | |
20603 | 336 * \brief Read subtitles from memory. |
30200 | 337 * \param library library handle |
20603 | 338 * \param buf pointer to subtitles text |
339 * \param bufsize size of buffer | |
30200 | 340 * \param codepage encoding (iconv format) |
20603 | 341 * \return newly allocated track |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27499
diff
changeset
|
342 */ |
30200 | 343 ASS_Track *ass_read_memory(ASS_Library *library, char *buf, |
344 size_t bufsize, char *codepage); | |
20603 | 345 /** |
30200 | 346 * \brief Read styles from file into already initialized track. |
347 * \param fname file name | |
348 * \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
|
349 * \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
|
350 */ |
30200 | 351 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
|
352 |
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19638
diff
changeset
|
353 /** |
21455 | 354 * \brief Add a memory font. |
30200 | 355 * \param library library handle |
18937 | 356 * \param name attachment name |
357 * \param data binary font data | |
358 * \param data_size data size | |
359 */ | |
30200 | 360 void ass_add_font(ASS_Library *library, char *name, char *data, |
361 int data_size); | |
18937 | 362 |
363 /** | |
30200 | 364 * \brief Remove all fonts stored in an ass_library object. |
365 * \param library library handle | |
25613
f00333e3facf
Copy font data to ass_library instead of referencing demuxer-owned memory.
eugeni
parents:
25535
diff
changeset
|
366 */ |
30200 | 367 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
|
368 |
f00333e3facf
Copy font data to ass_library instead of referencing demuxer-owned memory.
eugeni
parents:
25535
diff
changeset
|
369 /** |
30200 | 370 * \brief Calculates timeshift from now to the start of some other subtitle |
371 * event, depending on movement parameter. | |
18937 | 372 * \param track subtitle track |
30200 | 373 * \param now current time in milliseconds |
18937 | 374 * \param movement how many events to skip from the one currently displayed |
375 * +2 means "the one after the next", -1 means "previous" | |
30200 | 376 * \return timeshift in milliseconds |
18937 | 377 */ |
30200 | 378 long long ass_step_sub(ASS_Track *track, long long now, int movement); |
18937 | 379 |
25897
aaebaf255b23
Consistently give all libass multiple inclusion guards a LIBASS_ prefix.
diego
parents:
25613
diff
changeset
|
380 #endif /* LIBASS_ASS_H */ |