Mercurial > mplayer.hg
annotate libass/ass.h @ 28771:bd24ac0d9fd8
Make sure vo_x11_create_vo_window sets vo_dwidth and vo_dheight right
when we were in fullscreen mode and stay there.
author | reimar |
---|---|
date | Wed, 04 Mar 2009 08:37:54 +0000 |
parents | 1dfad1b382fa |
children | 0f1b5b68af32 |
rev | line source |
---|---|
20008
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19652
diff
changeset
|
1 // -*- c-basic-offset: 8; indent-tabs-mode: t -*- |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19652
diff
changeset
|
2 // vim:ts=8:sw=8:noet:ai: |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19652
diff
changeset
|
3 /* |
26723 | 4 * Copyright (C) 2006 Evgeniy Stepanov <eugeni.stepanov@gmail.com> |
5 * | |
26738
588ce97b44f2
Speak of libass instead of MPlayer in the libass license headers.
diego
parents:
26723
diff
changeset
|
6 * This file is part of libass. |
26723 | 7 * |
26738
588ce97b44f2
Speak of libass instead of MPlayer in the libass license headers.
diego
parents:
26723
diff
changeset
|
8 * libass is free software; you can redistribute it and/or modify |
26723 | 9 * it under the terms of the GNU General Public License as published by |
10 * the Free Software Foundation; either version 2 of the License, or | |
11 * (at your option) any later version. | |
12 * | |
26738
588ce97b44f2
Speak of libass instead of MPlayer in the libass license headers.
diego
parents:
26723
diff
changeset
|
13 * libass is distributed in the hope that it will be useful, |
26723 | 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 * GNU General Public License for more details. | |
17 * | |
18 * 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
|
19 * with libass; if not, write to the Free Software Foundation, Inc., |
26723 | 20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
21 */ | |
20008
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19652
diff
changeset
|
22 |
25897
aaebaf255b23
Consistently give all libass multiple inclusion guards a LIBASS_ prefix.
diego
parents:
25613
diff
changeset
|
23 #ifndef LIBASS_ASS_H |
aaebaf255b23
Consistently give all libass multiple inclusion guards a LIBASS_ prefix.
diego
parents:
25613
diff
changeset
|
24 #define LIBASS_ASS_H |
18937 | 25 |
26138
74055622161d
Add missing header #includes to fix 'make checkheaders'.
diego
parents:
25897
diff
changeset
|
26 #include <stdio.h> |
18937 | 27 #include "ass_types.h" |
28 | |
20477 | 29 /// Libass renderer object. Contents are private. |
30 typedef struct ass_renderer_s ass_renderer_t; | |
18937 | 31 |
32 /// a linked list of images produced by ass renderer | |
33 typedef struct ass_image_s { | |
34 int w, h; // bitmap width/height | |
35 int stride; // bitmap stride | |
36 unsigned char* bitmap; // 1bpp stride*h alpha buffer | |
37 uint32_t color; // RGBA | |
38 int dst_x, dst_y; // bitmap placement inside the video frame | |
39 | |
40 struct ass_image_s* next; // linked list | |
41 } ass_image_t; | |
42 | |
23134
1de2a46a0987
Add -ass-hinting option for setting font hinting method.
eugeni
parents:
21506
diff
changeset
|
43 /// Hinting type |
1de2a46a0987
Add -ass-hinting option for setting font hinting method.
eugeni
parents:
21506
diff
changeset
|
44 typedef enum {ASS_HINTING_NONE = 0, |
1de2a46a0987
Add -ass-hinting option for setting font hinting method.
eugeni
parents:
21506
diff
changeset
|
45 ASS_HINTING_LIGHT, |
1de2a46a0987
Add -ass-hinting option for setting font hinting method.
eugeni
parents:
21506
diff
changeset
|
46 ASS_HINTING_NORMAL, |
1de2a46a0987
Add -ass-hinting option for setting font hinting method.
eugeni
parents:
21506
diff
changeset
|
47 ASS_HINTING_NATIVE |
1de2a46a0987
Add -ass-hinting option for setting font hinting method.
eugeni
parents:
21506
diff
changeset
|
48 } ass_hinting_t; |
1de2a46a0987
Add -ass-hinting option for setting font hinting method.
eugeni
parents:
21506
diff
changeset
|
49 |
18937 | 50 /** |
51 * \brief initialize the library | |
52 * \return library handle or NULL if failed | |
53 */ | |
20477 | 54 ass_library_t* ass_library_init(void); |
18937 | 55 |
56 /** | |
57 * \brief finalize the library | |
58 * \param priv library handle | |
59 */ | |
20477 | 60 void ass_library_done(ass_library_t*); |
61 | |
62 /** | |
63 * \brief set private font directory | |
64 * It is used for saving embedded fonts and also in font lookup. | |
65 */ | |
66 void ass_set_fonts_dir(ass_library_t* priv, const char* fonts_dir); | |
67 | |
68 void ass_set_extract_fonts(ass_library_t* priv, int extract); | |
69 | |
70 void ass_set_style_overrides(ass_library_t* priv, char** list); | |
18937 | 71 |
20477 | 72 /** |
73 * \brief initialize the renderer | |
74 * \param priv library handle | |
75 * \return renderer handle or NULL if failed | |
76 */ | |
77 ass_renderer_t* ass_renderer_init(ass_library_t*); | |
78 | |
79 /** | |
80 * \brief finalize the renderer | |
81 * \param priv renderer handle | |
82 */ | |
83 void ass_renderer_done(ass_renderer_t* priv); | |
84 | |
85 void ass_set_frame_size(ass_renderer_t* priv, int w, int h); | |
86 void ass_set_margins(ass_renderer_t* priv, int t, int b, int l, int r); | |
87 void ass_set_use_margins(ass_renderer_t* priv, int use); | |
88 void ass_set_aspect_ratio(ass_renderer_t* priv, double ar); | |
89 void ass_set_font_scale(ass_renderer_t* priv, double font_scale); | |
23134
1de2a46a0987
Add -ass-hinting option for setting font hinting method.
eugeni
parents:
21506
diff
changeset
|
90 void ass_set_hinting(ass_renderer_t* priv, ass_hinting_t ht); |
24554 | 91 void ass_set_line_spacing(ass_renderer_t* priv, double line_spacing); |
20477 | 92 |
93 /** | |
94 * \brief set font lookup defaults | |
95 */ | |
96 int ass_set_fonts(ass_renderer_t* priv, const char* default_font, const char* default_family); | |
18937 | 97 |
98 /** | |
26582
62ac4f8062ee
Remove libass dependency on global font_fontconfig variable.
eugeni
parents:
26138
diff
changeset
|
99 * \brief set font lookup defaults, don't use fontconfig even if it is available |
62ac4f8062ee
Remove libass dependency on global font_fontconfig variable.
eugeni
parents:
26138
diff
changeset
|
100 */ |
62ac4f8062ee
Remove libass dependency on global font_fontconfig variable.
eugeni
parents:
26138
diff
changeset
|
101 int ass_set_fonts_nofc(ass_renderer_t* priv, const char* default_font, const char* default_family); |
62ac4f8062ee
Remove libass dependency on global font_fontconfig variable.
eugeni
parents:
26138
diff
changeset
|
102 |
62ac4f8062ee
Remove libass dependency on global font_fontconfig variable.
eugeni
parents:
26138
diff
changeset
|
103 /** |
18937 | 104 * \brief render a frame, producing a list of ass_image_t |
105 * \param priv library | |
106 * \param track subtitle track | |
107 * \param now video timestamp in milliseconds | |
108 */ | |
21506
8174acbf0633
Speed up ASS subtitles display by detecting changes between two consecutive
eugeni
parents:
21458
diff
changeset
|
109 ass_image_t* ass_render_frame(ass_renderer_t *priv, ass_track_t* track, long long now, int* detect_change); |
18937 | 110 |
111 | |
20477 | 112 // The following functions operate on track objects and do not need an ass_renderer // |
18937 | 113 |
114 /** | |
115 * \brief allocate a new empty track object | |
116 * \return pointer to empty track | |
117 */ | |
20477 | 118 ass_track_t* ass_new_track(ass_library_t*); |
18937 | 119 |
120 /** | |
121 * \brief deallocate track and all its child objects (styles and events) | |
122 * \param track track to deallocate | |
123 */ | |
124 void ass_free_track(ass_track_t* track); | |
125 | |
126 /** | |
127 * \brief allocate new style | |
128 * \param track track | |
129 * \return newly allocated style id | |
130 */ | |
131 int ass_alloc_style(ass_track_t* track); | |
132 | |
133 /** | |
134 * \brief allocate new event | |
135 * \param track track | |
136 * \return newly allocated event id | |
137 */ | |
138 int ass_alloc_event(ass_track_t* track); | |
139 | |
140 /** | |
19474
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
18937
diff
changeset
|
141 * \brief delete a style |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
18937
diff
changeset
|
142 * \param track track |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
18937
diff
changeset
|
143 * \param sid style id |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
18937
diff
changeset
|
144 * Deallocates style data. Does not modify track->n_styles. |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
18937
diff
changeset
|
145 */ |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
18937
diff
changeset
|
146 void ass_free_style(ass_track_t* track, int sid); |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
18937
diff
changeset
|
147 |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
18937
diff
changeset
|
148 /** |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
18937
diff
changeset
|
149 * \brief delete an event |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
18937
diff
changeset
|
150 * \param track track |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
18937
diff
changeset
|
151 * \param eid event id |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
18937
diff
changeset
|
152 * Deallocates event data. Does not modify track->n_events. |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
18937
diff
changeset
|
153 */ |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
18937
diff
changeset
|
154 void ass_free_event(ass_track_t* track, int eid); |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
18937
diff
changeset
|
155 |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
18937
diff
changeset
|
156 /** |
27498
d895515b366d
libass: add a new ass_process_data() to process demuxed subtitle packets
aurel
parents:
26738
diff
changeset
|
157 * \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
|
158 * \param track track |
d895515b366d
libass: add a new ass_process_data() to process demuxed subtitle packets
aurel
parents:
26738
diff
changeset
|
159 * \param data string to parse |
d895515b366d
libass: add a new ass_process_data() to process demuxed subtitle packets
aurel
parents:
26738
diff
changeset
|
160 * \param size length of data |
d895515b366d
libass: add a new ass_process_data() to process demuxed subtitle packets
aurel
parents:
26738
diff
changeset
|
161 */ |
d895515b366d
libass: add a new ass_process_data() to process demuxed subtitle packets
aurel
parents:
26738
diff
changeset
|
162 void ass_process_data(ass_track_t* track, char* data, int size); |
d895515b366d
libass: add a new ass_process_data() to process demuxed subtitle packets
aurel
parents:
26738
diff
changeset
|
163 |
d895515b366d
libass: add a new ass_process_data() to process demuxed subtitle packets
aurel
parents:
26738
diff
changeset
|
164 /** |
25514 | 165 * \brief Parse Codec Private section of subtitle stream |
18937 | 166 * \param track target track |
167 * \param data string to parse | |
168 * \param size length of data | |
169 */ | |
19492 | 170 void ass_process_codec_private(ass_track_t* track, char *data, int size); |
18937 | 171 |
172 /** | |
25515 | 173 * \brief Parse a chunk of subtitle stream data. In Matroska, this contains exactly 1 event (or a commentary). |
18937 | 174 * \param track track |
175 * \param data string to parse | |
176 * \param size length of data | |
177 * \param timecode starting time of the event (milliseconds) | |
178 * \param duration duration of the event (milliseconds) | |
179 */ | |
19492 | 180 void ass_process_chunk(ass_track_t* track, char *data, int size, long long timecode, long long duration); |
18937 | 181 |
27499
1dfad1b382fa
libass: fix type mismatch between size parameter and the way it's used
aurel
parents:
27498
diff
changeset
|
182 char* read_file_recode(char* fname, char* codepage, size_t* size); |
23424
7286d245bf33
Move code for reading a file and recoding it to utf-8 to a separate function.
eugeni
parents:
23134
diff
changeset
|
183 |
18937 | 184 /** |
185 * \brief Read subtitles from file. | |
186 * \param fname file name | |
187 * \return newly allocated track | |
188 */ | |
20477 | 189 ass_track_t* ass_read_file(ass_library_t* library, char* fname, char* codepage); |
18937 | 190 |
191 /** | |
20603 | 192 * \brief Read subtitles from memory. |
193 * \param library libass library object | |
194 * \param buf pointer to subtitles text | |
195 * \param bufsize size of buffer | |
196 * \param codepage recode buffer contents from given codepage | |
197 * \return newly allocated track | |
198 */ | |
199 ass_track_t* ass_read_memory(ass_library_t* library, char* buf, size_t bufsize, char* codepage); | |
200 /** | |
19652
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19638
diff
changeset
|
201 * \brief read styles from file into already initialized track |
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19638
diff
changeset
|
202 * \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
|
203 */ |
20477 | 204 int ass_read_styles(ass_track_t* 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
|
205 |
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19638
diff
changeset
|
206 /** |
21455 | 207 * \brief Add a memory font. |
18937 | 208 * \param name attachment name |
209 * \param data binary font data | |
210 * \param data_size data size | |
211 */ | |
21458
7af6c25a0cfc
Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents:
21455
diff
changeset
|
212 void ass_add_font(ass_library_t* library, char* name, char* data, int data_size); |
18937 | 213 |
214 /** | |
25613
f00333e3facf
Copy font data to ass_library instead of referencing demuxer-owned memory.
eugeni
parents:
25535
diff
changeset
|
215 * \brief Remove all fonts stored in ass_library object |
f00333e3facf
Copy font data to ass_library instead of referencing demuxer-owned memory.
eugeni
parents:
25535
diff
changeset
|
216 */ |
f00333e3facf
Copy font data to ass_library instead of referencing demuxer-owned memory.
eugeni
parents:
25535
diff
changeset
|
217 void ass_clear_fonts(ass_library_t* library); |
f00333e3facf
Copy font data to ass_library instead of referencing demuxer-owned memory.
eugeni
parents:
25535
diff
changeset
|
218 |
f00333e3facf
Copy font data to ass_library instead of referencing demuxer-owned memory.
eugeni
parents:
25535
diff
changeset
|
219 /** |
18937 | 220 * \brief Calculates timeshift from now to the start of some other subtitle event, depending on movement parameter |
221 * \param track subtitle track | |
222 * \param now current time, ms | |
223 * \param movement how many events to skip from the one currently displayed | |
224 * +2 means "the one after the next", -1 means "previous" | |
225 * \return timeshift, ms | |
226 */ | |
227 long long ass_step_sub(ass_track_t* track, long long now, int movement); | |
228 | |
25897
aaebaf255b23
Consistently give all libass multiple inclusion guards a LIBASS_ prefix.
diego
parents:
25613
diff
changeset
|
229 #endif /* LIBASS_ASS_H */ |