Mercurial > mplayer.hg
annotate libass/ass.c @ 23464:1b1fdac4a68c
Align output pointer so that we can use movaps instead of movups in dct64_sse;
1.5% faster decode.
author | zuxy |
---|---|
date | Wed, 06 Jun 2007 05:13:13 +0000 |
parents | 7286d245bf33 |
children | 790efaddf175 |
rev | line source |
---|---|
20008
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19905
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:
19905
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:
19905
diff
changeset
|
3 /* |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19905
diff
changeset
|
4 Copyright (C) 2006 Evgeniy Stepanov <eugeni.stepanov@gmail.com> |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19905
diff
changeset
|
5 |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19905
diff
changeset
|
6 This program is free software; you can redistribute it and/or modify |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19905
diff
changeset
|
7 it under the terms of the GNU General Public License as published by |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19905
diff
changeset
|
8 the Free Software Foundation; either version 2 of the License, or |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19905
diff
changeset
|
9 (at your option) any later version. |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19905
diff
changeset
|
10 |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19905
diff
changeset
|
11 This program is distributed in the hope that it will be useful, |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19905
diff
changeset
|
12 but WITHOUT ANY WARRANTY; without even the implied warranty of |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19905
diff
changeset
|
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19905
diff
changeset
|
14 GNU General Public License for more details. |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19905
diff
changeset
|
15 |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19905
diff
changeset
|
16 You should have received a copy of the GNU General Public License |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19905
diff
changeset
|
17 along with this program; if not, write to the Free Software |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19905
diff
changeset
|
18 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19905
diff
changeset
|
19 */ |
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19905
diff
changeset
|
20 |
18937 | 21 #include "config.h" |
22 | |
23 #include <stdio.h> | |
24 #include <stdlib.h> | |
25 #include <string.h> | |
26 #include <assert.h> | |
27 #include <errno.h> | |
28 #include <sys/types.h> | |
29 #include <sys/stat.h> | |
30 #include <unistd.h> | |
19374 | 31 #include <inttypes.h> |
18937 | 32 |
33 #ifdef USE_ICONV | |
34 #include <iconv.h> | |
35 #endif | |
36 | |
37 #include "ass.h" | |
38 #include "ass_utils.h" | |
20477 | 39 #include "ass_library.h" |
21026
d138463e820b
Collect all includes of mplayer headers in libass in a single file (mputils.h).
eugeni
parents:
20698
diff
changeset
|
40 #include "mputils.h" |
18937 | 41 |
19652
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19639
diff
changeset
|
42 typedef enum {PST_UNKNOWN = 0, PST_INFO, PST_STYLES, PST_EVENTS, PST_FONTS} parser_state_t; |
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19639
diff
changeset
|
43 |
19492 | 44 struct parser_priv_s { |
19652
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19639
diff
changeset
|
45 parser_state_t state; |
19492 | 46 char* fontname; |
47 char* fontdata; | |
48 int fontdata_size; | |
49 int fontdata_used; | |
50 }; | |
51 | |
18937 | 52 #define ASS_STYLES_ALLOC 20 |
53 #define ASS_EVENTS_ALLOC 200 | |
54 | |
55 void ass_free_track(ass_track_t* track) { | |
56 int i; | |
57 | |
19492 | 58 if (track->parser_priv) { |
59 if (track->parser_priv->fontname) | |
60 free(track->parser_priv->fontname); | |
61 if (track->parser_priv->fontdata) | |
62 free(track->parser_priv->fontdata); | |
63 free(track->parser_priv); | |
64 } | |
18937 | 65 if (track->style_format) |
66 free(track->style_format); | |
67 if (track->event_format) | |
68 free(track->event_format); | |
69 if (track->styles) { | |
19474
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
19405
diff
changeset
|
70 for (i = 0; i < track->n_styles; ++i) |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
19405
diff
changeset
|
71 ass_free_style(track, i); |
18937 | 72 free(track->styles); |
73 } | |
74 if (track->events) { | |
19474
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
19405
diff
changeset
|
75 for (i = 0; i < track->n_events; ++i) |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
19405
diff
changeset
|
76 ass_free_event(track, i); |
18937 | 77 free(track->events); |
78 } | |
79 } | |
80 | |
81 /// \brief Allocate a new style struct | |
82 /// \param track track | |
83 /// \return style id | |
84 int ass_alloc_style(ass_track_t* track) { | |
85 int sid; | |
86 | |
87 assert(track->n_styles <= track->max_styles); | |
88 | |
89 if (track->n_styles == track->max_styles) { | |
90 track->max_styles += ASS_STYLES_ALLOC; | |
91 track->styles = (ass_style_t*)realloc(track->styles, sizeof(ass_style_t)*track->max_styles); | |
92 } | |
93 | |
94 sid = track->n_styles++; | |
95 memset(track->styles + sid, 0, sizeof(ass_style_t)); | |
96 return sid; | |
97 } | |
98 | |
99 /// \brief Allocate a new event struct | |
100 /// \param track track | |
101 /// \return event id | |
102 int ass_alloc_event(ass_track_t* track) { | |
103 int eid; | |
104 | |
105 assert(track->n_events <= track->max_events); | |
106 | |
107 if (track->n_events == track->max_events) { | |
108 track->max_events += ASS_EVENTS_ALLOC; | |
109 track->events = (ass_event_t*)realloc(track->events, sizeof(ass_event_t)*track->max_events); | |
110 } | |
111 | |
112 eid = track->n_events++; | |
113 memset(track->events + eid, 0, sizeof(ass_event_t)); | |
114 return eid; | |
115 } | |
116 | |
19474
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
19405
diff
changeset
|
117 void ass_free_event(ass_track_t* track, int eid) { |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
19405
diff
changeset
|
118 ass_event_t* event = track->events + eid; |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
19405
diff
changeset
|
119 if (event->Name) |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
19405
diff
changeset
|
120 free(event->Name); |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
19405
diff
changeset
|
121 if (event->Effect) |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
19405
diff
changeset
|
122 free(event->Effect); |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
19405
diff
changeset
|
123 if (event->Text) |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
19405
diff
changeset
|
124 free(event->Text); |
19638
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19635
diff
changeset
|
125 if (event->render_priv) |
a3473d990fed
Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents:
19635
diff
changeset
|
126 free(event->render_priv); |
19474
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
19405
diff
changeset
|
127 } |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
19405
diff
changeset
|
128 |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
19405
diff
changeset
|
129 void ass_free_style(ass_track_t* track, int sid) { |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
19405
diff
changeset
|
130 ass_style_t* style = track->styles + sid; |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
19405
diff
changeset
|
131 if (style->Name) |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
19405
diff
changeset
|
132 free(style->Name); |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
19405
diff
changeset
|
133 if (style->FontName) |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
19405
diff
changeset
|
134 free(style->FontName); |
18937 | 135 } |
136 | |
137 // ============================================================================================== | |
138 | |
139 static void skip_spaces(char** str) { | |
140 char* p = *str; | |
141 while ((*p==' ') || (*p=='\t')) | |
142 ++p; | |
143 *str = p; | |
144 } | |
145 | |
146 static void rskip_spaces(char** str, char* limit) { | |
147 char* p = *str; | |
148 while ((p >= limit) && ((*p==' ') || (*p=='\t'))) | |
149 --p; | |
150 *str = p; | |
151 } | |
152 | |
153 /** | |
154 * \brief find style by name | |
155 * \param track track | |
156 * \param name style name | |
157 * \return index in track->styles | |
158 * Returnes 0 if no styles found => expects at least 1 style. | |
159 * Parsing code always adds "Default" style in the end. | |
160 */ | |
161 static int lookup_style(ass_track_t* track, char* name) { | |
162 int i; | |
19567 | 163 if (*name == '*') ++name; // FIXME: what does '*' really mean ? |
18937 | 164 for (i=0; i<track->n_styles; ++i) { |
165 // FIXME: mb strcasecmp ? | |
166 if (strcmp(track->styles[i].Name, name) == 0) | |
167 return i; | |
168 } | |
169 i = track->default_style; | |
21066 | 170 mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_NoStyleNamedXFoundUsingY, track, name, track->styles[i].Name); |
18937 | 171 return i; // use the first style |
172 } | |
173 | |
174 static uint32_t string2color(char* p) { | |
175 uint32_t tmp; | |
176 (void)strtocolor(&p, &tmp); | |
177 return tmp; | |
178 } | |
179 | |
180 static long long string2timecode(char* p) { | |
181 unsigned h, m, s, ms; | |
182 long long tm; | |
183 int res = sscanf(p, "%1d:%2d:%2d.%2d", &h, &m, &s, &ms); | |
184 if (res < 4) { | |
21066 | 185 mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_BadTimestamp); |
18937 | 186 return 0; |
187 } | |
188 tm = ((h * 60 + m) * 60 + s) * 1000 + ms * 10; | |
189 return tm; | |
190 } | |
191 | |
192 /** | |
193 * \brief converts numpad-style align to align. | |
194 */ | |
195 static int numpad2align(int val) { | |
196 int res, v; | |
197 v = (val - 1) / 3; // 0, 1 or 2 for vertical alignment | |
198 if (v != 0) v = 3 - v; | |
199 res = ((val - 1) % 3) + 1; // horizontal alignment | |
200 res += v*4; | |
201 return res; | |
202 } | |
203 | |
204 #define NEXT(str,token) \ | |
205 token = next_token(&str); \ | |
206 if (!token) break; | |
207 | |
208 #define ANYVAL(name,func) \ | |
209 } else if (strcasecmp(tname, #name) == 0) { \ | |
210 target->name = func(token); \ | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20603
diff
changeset
|
211 mp_msg(MSGT_ASS, MSGL_DBG2, "%s = %s\n", #name, token); |
19495 | 212 |
213 #define STRVAL(name) \ | |
214 } else if (strcasecmp(tname, #name) == 0) { \ | |
215 if (target->name != NULL) free(target->name); \ | |
216 target->name = strdup(token); \ | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20603
diff
changeset
|
217 mp_msg(MSGT_ASS, MSGL_DBG2, "%s = %s\n", #name, token); |
19495 | 218 |
18937 | 219 #define COLORVAL(name) ANYVAL(name,string2color) |
220 #define INTVAL(name) ANYVAL(name,atoi) | |
221 #define FPVAL(name) ANYVAL(name,atof) | |
222 #define TIMEVAL(name) ANYVAL(name,string2timecode) | |
223 #define STYLEVAL(name) \ | |
224 } else if (strcasecmp(tname, #name) == 0) { \ | |
225 target->name = lookup_style(track, token); \ | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20603
diff
changeset
|
226 mp_msg(MSGT_ASS, MSGL_DBG2, "%s = %s\n", #name, token); |
18937 | 227 |
228 #define ALIAS(alias,name) \ | |
229 if (strcasecmp(tname, #alias) == 0) {tname = #name;} | |
230 | |
231 static char* next_token(char** str) { | |
232 char* p = *str; | |
233 char* start; | |
234 skip_spaces(&p); | |
235 if (*p == '\0') { | |
236 *str = p; | |
237 return 0; | |
238 } | |
239 start = p; // start of the token | |
240 for (; (*p != '\0') && (*p != ','); ++p) {} | |
241 if (*p == '\0') { | |
242 *str = p; // eos found, str will point to '\0' at exit | |
243 } else { | |
244 *p = '\0'; | |
245 *str = p + 1; // ',' found, str will point to the next char (beginning of the next token) | |
246 } | |
247 --p; // end of current token | |
248 rskip_spaces(&p, start); | |
249 if (p < start) | |
250 p = start; // empty token | |
251 else | |
252 ++p; // the first space character, or '\0' | |
253 *p = '\0'; | |
254 return start; | |
255 } | |
256 /** | |
257 * \brief Parse the tail of Dialogue line | |
258 * \param track track | |
259 * \param event parsed data goes here | |
260 * \param str string to parse, zero-terminated | |
261 * \param n_ignored number of format options to skip at the beginning | |
262 */ | |
263 static int process_event_tail(ass_track_t* track, ass_event_t* event, char* str, int n_ignored) | |
264 { | |
265 char* token; | |
266 char* tname; | |
267 char* p = str; | |
268 int i; | |
269 ass_event_t* target = event; | |
270 | |
271 char* format = strdup(track->event_format); | |
272 char* q = format; // format scanning pointer | |
273 | |
274 for (i = 0; i < n_ignored; ++i) { | |
275 NEXT(q, tname); | |
276 } | |
277 | |
278 while (1) { | |
279 NEXT(q, tname); | |
280 if (strcasecmp(tname, "Text") == 0) { | |
281 char* last; | |
282 event->Text = strdup(p); | |
19612 | 283 if (*event->Text != 0) { |
284 last = event->Text + strlen(event->Text) - 1; | |
285 if (last >= event->Text && *last == '\r') | |
286 *last = 0; | |
287 } | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20603
diff
changeset
|
288 mp_msg(MSGT_ASS, MSGL_DBG2, "Text = %s\n", event->Text); |
18937 | 289 event->Duration -= event->Start; |
290 free(format); | |
291 return 0; // "Text" is always the last | |
292 } | |
293 NEXT(p, token); | |
294 | |
295 ALIAS(End,Duration) // temporarily store end timecode in event->Duration | |
296 if (0) { // cool ;) | |
19635 | 297 INTVAL(Layer) |
18937 | 298 STYLEVAL(Style) |
299 STRVAL(Name) | |
300 STRVAL(Effect) | |
301 INTVAL(MarginL) | |
302 INTVAL(MarginR) | |
303 INTVAL(MarginV) | |
304 TIMEVAL(Start) | |
305 TIMEVAL(Duration) | |
306 } | |
307 } | |
308 free(format); | |
309 return 1; | |
310 } | |
311 | |
312 /** | |
19495 | 313 * \brief Parse command line style overrides (--ass-force-style option) |
314 * \param track track to apply overrides to | |
315 * The format for overrides is [StyleName.]Field=Value | |
316 */ | |
19584
586e7d259d05
Apply -ass-force-style also to tracks generated from subdata.
eugeni
parents:
19567
diff
changeset
|
317 void process_force_style(ass_track_t* track) { |
19495 | 318 char **fs, *eq, *dt, *style, *tname, *token; |
319 ass_style_t* target; | |
320 int sid; | |
20477 | 321 char** list = track->library->style_overrides; |
19495 | 322 |
20477 | 323 if (!list) return; |
19495 | 324 |
20477 | 325 for (fs = list; *fs; ++fs) { |
19495 | 326 eq = strchr(*fs, '='); |
327 if (!eq) | |
328 continue; | |
329 *eq = '\0'; | |
330 token = eq + 1; | |
331 | |
332 dt = strchr(*fs, '.'); | |
333 if (dt) { | |
334 *dt = '\0'; | |
335 style = *fs; | |
336 tname = dt + 1; | |
337 } else { | |
338 style = NULL; | |
339 tname = *fs; | |
340 } | |
341 for (sid = 0; sid < track->n_styles; ++sid) { | |
342 if (style == NULL || strcasecmp(track->styles[sid].Name, style) == 0) { | |
343 target = track->styles + sid; | |
344 if (0) { | |
345 STRVAL(FontName) | |
346 COLORVAL(PrimaryColour) | |
347 COLORVAL(SecondaryColour) | |
348 COLORVAL(OutlineColour) | |
349 COLORVAL(BackColour) | |
23300 | 350 FPVAL(FontSize) |
19495 | 351 INTVAL(Bold) |
352 INTVAL(Italic) | |
353 INTVAL(Underline) | |
354 INTVAL(StrikeOut) | |
22259 | 355 FPVAL(Spacing) |
19495 | 356 INTVAL(Angle) |
357 INTVAL(BorderStyle) | |
358 INTVAL(Alignment) | |
359 INTVAL(MarginL) | |
360 INTVAL(MarginR) | |
361 INTVAL(MarginV) | |
362 INTVAL(Encoding) | |
363 FPVAL(ScaleX) | |
364 FPVAL(ScaleY) | |
365 FPVAL(Outline) | |
366 FPVAL(Shadow) | |
367 } | |
368 } | |
369 } | |
370 *eq = '='; | |
371 if (dt) *dt = '.'; | |
372 } | |
373 } | |
374 | |
375 /** | |
18937 | 376 * \brief Parse the Style line |
377 * \param track track | |
378 * \param str string to parse, zero-terminated | |
379 * Allocates a new style struct. | |
380 */ | |
381 static int process_style(ass_track_t* track, char *str) | |
382 { | |
383 | |
384 char* token; | |
385 char* tname; | |
386 char* p = str; | |
387 char* format; | |
388 char* q; // format scanning pointer | |
389 int sid; | |
390 ass_style_t* style; | |
391 ass_style_t* target; | |
392 | |
393 if (!track->style_format) { | |
394 // no style format header | |
395 // probably an ancient script version | |
396 if (track->track_type == TRACK_TYPE_SSA) | |
397 track->style_format = strdup("Name, Fontname, Fontsize, PrimaryColour, SecondaryColour," | |
398 "TertiaryColour, BackColour, Bold, Italic, BorderStyle, Outline," | |
399 "Shadow, Alignment, MarginL, MarginR, MarginV, AlphaLevel, Encoding"); | |
400 else | |
401 track->style_format = strdup("Name, Fontname, Fontsize, PrimaryColour, SecondaryColour," | |
402 "OutlineColour, BackColour, Bold, Italic, Underline, StrikeOut," | |
403 "ScaleX, ScaleY, Spacing, Angle, BorderStyle, Outline, Shadow," | |
404 "Alignment, MarginL, MarginR, MarginV, Encoding"); | |
405 } | |
406 | |
407 q = format = strdup(track->style_format); | |
408 | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20603
diff
changeset
|
409 mp_msg(MSGT_ASS, MSGL_V, "[%p] Style: %s\n", track, str); |
18937 | 410 |
411 sid = ass_alloc_style(track); | |
412 | |
413 style = track->styles + sid; | |
414 target = style; | |
415 // fill style with some default values | |
416 style->ScaleX = 100.; | |
417 style->ScaleY = 100.; | |
418 | |
419 while (1) { | |
420 NEXT(q, tname); | |
421 NEXT(p, token); | |
422 | |
423 // ALIAS(TertiaryColour,OutlineColour) // ignore TertiaryColour; it appears only in SSA, and is overridden by BackColour | |
424 | |
425 if (0) { // cool ;) | |
426 STRVAL(Name) | |
427 if ((strcmp(target->Name, "Default")==0) || (strcmp(target->Name, "*Default")==0)) | |
428 track->default_style = sid; | |
429 STRVAL(FontName) | |
430 COLORVAL(PrimaryColour) | |
431 COLORVAL(SecondaryColour) | |
432 COLORVAL(OutlineColour) // TertiaryColor | |
433 COLORVAL(BackColour) | |
434 // SSA uses BackColour for both outline and shadow | |
435 // this will destroy SSA's TertiaryColour, but i'm not going to use it anyway | |
436 if (track->track_type == TRACK_TYPE_SSA) | |
437 target->OutlineColour = target->BackColour; | |
23300 | 438 FPVAL(FontSize) |
18937 | 439 INTVAL(Bold) |
440 INTVAL(Italic) | |
441 INTVAL(Underline) | |
442 INTVAL(StrikeOut) | |
22259 | 443 FPVAL(Spacing) |
18937 | 444 INTVAL(Angle) |
445 INTVAL(BorderStyle) | |
446 INTVAL(Alignment) | |
447 if (track->track_type == TRACK_TYPE_ASS) | |
448 target->Alignment = numpad2align(target->Alignment); | |
449 INTVAL(MarginL) | |
450 INTVAL(MarginR) | |
451 INTVAL(MarginV) | |
452 INTVAL(Encoding) | |
453 FPVAL(ScaleX) | |
454 FPVAL(ScaleY) | |
455 FPVAL(Outline) | |
456 FPVAL(Shadow) | |
457 } | |
458 } | |
459 style->ScaleX /= 100.; | |
460 style->ScaleY /= 100.; | |
22263 | 461 style->Bold = !!style->Bold; |
462 style->Italic = !!style->Italic; | |
463 style->Underline = !!style->Underline; | |
18937 | 464 if (!style->Name) |
465 style->Name = strdup("Default"); | |
466 if (!style->FontName) | |
467 style->FontName = strdup("Arial"); | |
468 free(format); | |
469 return 0; | |
470 | |
471 } | |
472 | |
19492 | 473 static int process_styles_line(ass_track_t* track, char *str) |
474 { | |
475 if (!strncmp(str,"Format:", 7)) { | |
476 char* p = str + 7; | |
477 skip_spaces(&p); | |
478 track->style_format = strdup(p); | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20603
diff
changeset
|
479 mp_msg(MSGT_ASS, MSGL_DBG2, "Style format: %s\n", track->style_format); |
19492 | 480 } else if (!strncmp(str,"Style:", 6)) { |
481 char* p = str + 6; | |
482 skip_spaces(&p); | |
483 process_style(track, p); | |
484 } | |
485 return 0; | |
486 } | |
487 | |
488 static int process_info_line(ass_track_t* track, char *str) | |
489 { | |
490 if (!strncmp(str, "PlayResX:", 9)) { | |
491 track->PlayResX = atoi(str + 9); | |
492 } else if (!strncmp(str,"PlayResY:", 9)) { | |
493 track->PlayResY = atoi(str + 9); | |
494 } else if (!strncmp(str,"Timer:", 6)) { | |
495 track->Timer = atof(str + 6); | |
496 } else if (!strncmp(str,"WrapStyle:", 10)) { | |
497 track->WrapStyle = atoi(str + 10); | |
498 } | |
499 return 0; | |
500 } | |
501 | |
502 static int process_events_line(ass_track_t* track, char *str) | |
503 { | |
504 if (!strncmp(str, "Format:", 7)) { | |
505 char* p = str + 7; | |
506 skip_spaces(&p); | |
507 track->event_format = strdup(p); | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20603
diff
changeset
|
508 mp_msg(MSGT_ASS, MSGL_DBG2, "Event format: %s\n", track->event_format); |
19492 | 509 } else if (!strncmp(str, "Dialogue:", 9)) { |
510 // This should never be reached for embedded subtitles. | |
511 // They have slightly different format and are parsed in ass_process_chunk, | |
512 // called directly from demuxer | |
513 int eid; | |
514 ass_event_t* event; | |
515 | |
516 str += 9; | |
517 skip_spaces(&str); | |
518 | |
519 eid = ass_alloc_event(track); | |
520 event = track->events + eid; | |
521 | |
522 process_event_tail(track, event, str, 0); | |
523 } else { | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20603
diff
changeset
|
524 mp_msg(MSGT_ASS, MSGL_V, "Not understood: %s \n", str); |
19492 | 525 } |
526 return 0; | |
527 } | |
528 | |
529 // Copied from mkvtoolnix | |
530 static unsigned char* decode_chars(unsigned char c1, unsigned char c2, | |
531 unsigned char c3, unsigned char c4, unsigned char* dst, int cnt) | |
532 { | |
533 uint32_t value; | |
534 unsigned char bytes[3]; | |
535 int i; | |
536 | |
537 value = ((c1 - 33) << 18) + ((c2 - 33) << 12) + ((c3 - 33) << 6) + (c4 - 33); | |
538 bytes[2] = value & 0xff; | |
539 bytes[1] = (value & 0xff00) >> 8; | |
540 bytes[0] = (value & 0xff0000) >> 16; | |
541 | |
542 for (i = 0; i < cnt; ++i) | |
543 *dst++ = bytes[i]; | |
544 return dst; | |
545 } | |
546 | |
547 static int decode_font(ass_track_t* track) | |
548 { | |
549 unsigned char* p; | |
550 unsigned char* q; | |
551 int i; | |
552 int size; // original size | |
553 int dsize; // decoded size | |
554 unsigned char* buf = 0; | |
555 | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20603
diff
changeset
|
556 mp_msg(MSGT_ASS, MSGL_V, "font: %d bytes encoded data \n", track->parser_priv->fontdata_used); |
19492 | 557 size = track->parser_priv->fontdata_used; |
558 if (size % 4 == 1) { | |
21066 | 559 mp_msg(MSGT_ASS, MSGL_ERR, MSGTR_LIBASS_BadEncodedDataSize); |
19492 | 560 goto error_decode_font; |
561 } | |
562 buf = malloc(size / 4 * 3 + 2); | |
563 q = buf; | |
564 for (i = 0, p = (unsigned char*)track->parser_priv->fontdata; i < size / 4; i++, p+=4) { | |
565 q = decode_chars(p[0], p[1], p[2], p[3], q, 3); | |
566 } | |
567 if (size % 4 == 2) { | |
568 q = decode_chars(p[0], p[1], 0, 0, q, 1); | |
569 } else if (size % 4 == 3) { | |
570 q = decode_chars(p[0], p[1], p[2], 0, q, 2); | |
571 } | |
572 dsize = q - buf; | |
573 assert(dsize <= size / 4 * 3 + 2); | |
574 | |
23264
dc12bca7d4b5
Don't deallocate font data if it will be used later.
eugeni
parents:
22263
diff
changeset
|
575 if (track->library->extract_fonts) { |
21455 | 576 ass_add_font(track->library, track->parser_priv->fontname, (char*)buf, dsize); |
23264
dc12bca7d4b5
Don't deallocate font data if it will be used later.
eugeni
parents:
22263
diff
changeset
|
577 buf = 0; |
dc12bca7d4b5
Don't deallocate font data if it will be used later.
eugeni
parents:
22263
diff
changeset
|
578 } |
19492 | 579 |
580 error_decode_font: | |
581 if (buf) free(buf); | |
582 free(track->parser_priv->fontname); | |
583 free(track->parser_priv->fontdata); | |
584 track->parser_priv->fontname = 0; | |
585 track->parser_priv->fontdata = 0; | |
586 track->parser_priv->fontdata_size = 0; | |
587 track->parser_priv->fontdata_used = 0; | |
588 return 0; | |
589 } | |
590 | |
591 static int process_fonts_line(ass_track_t* track, char *str) | |
592 { | |
593 int len; | |
594 | |
595 if (!strncmp(str, "fontname:", 9)) { | |
596 char* p = str + 9; | |
597 skip_spaces(&p); | |
598 if (track->parser_priv->fontname) { | |
599 decode_font(track); | |
600 } | |
21453
9dd976e14792
Avoid calling validate_fname() twice for one string.
eugeni
parents:
21066
diff
changeset
|
601 track->parser_priv->fontname = strdup(p); |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20603
diff
changeset
|
602 mp_msg(MSGT_ASS, MSGL_V, "fontname: %s\n", track->parser_priv->fontname); |
19492 | 603 return 0; |
604 } | |
605 | |
606 if (!track->parser_priv->fontname) { | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20603
diff
changeset
|
607 mp_msg(MSGT_ASS, MSGL_V, "Not understood: %s \n", str); |
19492 | 608 return 0; |
609 } | |
610 | |
611 len = strlen(str); | |
612 if (len > 80) { | |
21066 | 613 mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_FontLineTooLong, len, str); |
19492 | 614 return 0; |
615 } | |
616 if (track->parser_priv->fontdata_used + len > track->parser_priv->fontdata_size) { | |
617 track->parser_priv->fontdata_size += 100 * 1024; | |
618 track->parser_priv->fontdata = realloc(track->parser_priv->fontdata, track->parser_priv->fontdata_size); | |
619 } | |
620 memcpy(track->parser_priv->fontdata + track->parser_priv->fontdata_used, str, len); | |
621 track->parser_priv->fontdata_used += len; | |
622 | |
623 return 0; | |
624 } | |
625 | |
18937 | 626 /** |
627 * \brief Parse a header line | |
628 * \param track track | |
629 * \param str string to parse, zero-terminated | |
630 */ | |
19492 | 631 static int process_line(ass_track_t* track, char *str) |
18937 | 632 { |
19492 | 633 if (strstr(str, "[Script Info]")) { // FIXME: strstr to skip possible BOM at the beginning of the script |
634 track->parser_priv->state = PST_INFO; | |
635 } else if (!strncmp(str, "[V4 Styles]", 11)) { | |
636 track->parser_priv->state = PST_STYLES; | |
637 track->track_type = TRACK_TYPE_SSA; | |
638 } else if (!strncmp(str, "[V4+ Styles]", 12)) { | |
639 track->parser_priv->state = PST_STYLES; | |
640 track->track_type = TRACK_TYPE_ASS; | |
641 } else if (!strncmp(str, "[Events]", 8)) { | |
642 track->parser_priv->state = PST_EVENTS; | |
643 } else if (!strncmp(str, "[Fonts]", 7)) { | |
644 track->parser_priv->state = PST_FONTS; | |
645 } else { | |
646 switch (track->parser_priv->state) { | |
647 case PST_INFO: | |
648 process_info_line(track, str); | |
649 break; | |
650 case PST_STYLES: | |
651 process_styles_line(track, str); | |
652 break; | |
653 case PST_EVENTS: | |
654 process_events_line(track, str); | |
655 break; | |
656 case PST_FONTS: | |
657 process_fonts_line(track, str); | |
658 break; | |
659 default: | |
660 break; | |
18937 | 661 } |
19492 | 662 } |
663 | |
664 // there is no explicit end-of-font marker in ssa/ass | |
665 if ((track->parser_priv->state != PST_FONTS) && (track->parser_priv->fontname)) | |
666 decode_font(track); | |
667 | |
668 return 0; | |
669 } | |
670 | |
671 static int process_text(ass_track_t* track, char* str) | |
672 { | |
673 char* p = str; | |
674 while(1) { | |
675 char* q; | |
676 for (;((*p=='\r')||(*p=='\n'));++p) {} | |
677 for (q=p; ((*q!='\0')&&(*q!='\r')&&(*q!='\n')); ++q) {}; | |
678 if (q==p) | |
679 break; | |
680 if (*q != '\0') | |
681 *(q++) = '\0'; | |
682 process_line(track, p); | |
683 if (*q == '\0') | |
684 break; | |
685 p = q; | |
18937 | 686 } |
687 return 0; | |
688 } | |
689 | |
690 /** | |
691 * \brief Process CodecPrivate section of subtitle stream | |
692 * \param track track | |
693 * \param data string to parse | |
694 * \param size length of data | |
19492 | 695 CodecPrivate section contains [Stream Info] and [V4+ Styles] ([V4 Styles] for SSA) sections |
18937 | 696 */ |
19492 | 697 void ass_process_codec_private(ass_track_t* track, char *data, int size) |
18937 | 698 { |
699 char* str = malloc(size + 1); | |
700 int sid; | |
701 | |
702 memcpy(str, data, size); | |
703 str[size] = '\0'; | |
704 | |
19492 | 705 process_text(track, str); |
18937 | 706 free(str); |
707 | |
708 // add "Default" style to the end | |
709 // will be used if track does not contain a default style (or even does not contain styles at all) | |
710 sid = ass_alloc_style(track); | |
711 track->styles[sid].Name = strdup("Default"); | |
712 track->styles[sid].FontName = strdup("Arial"); | |
713 | |
714 if (!track->event_format) { | |
715 // probably an mkv produced by ancient mkvtoolnix | |
716 // such files don't have [Events] and Format: headers | |
19492 | 717 track->parser_priv->state = PST_EVENTS; |
18937 | 718 if (track->track_type == TRACK_TYPE_SSA) |
719 track->event_format = strdup("Format: Marked, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text"); | |
720 else | |
721 track->event_format = strdup("Format: Layer, Start, End, Style, Actor, MarginL, MarginR, MarginV, Effect, Text"); | |
722 } | |
19495 | 723 |
724 process_force_style(track); | |
18937 | 725 } |
726 | |
727 static int check_duplicate_event(ass_track_t* track, int ReadOrder) | |
728 { | |
729 int i; | |
730 for (i = 0; i<track->n_events - 1; ++i) // ignoring last event, it is the one we are comparing with | |
731 if (track->events[i].ReadOrder == ReadOrder) | |
732 return 1; | |
733 return 0; | |
734 } | |
735 | |
736 /** | |
737 * \brief Process a chunk of subtitle stream data. In matroska, this containes exactly 1 event (or a commentary) | |
738 * \param track track | |
739 * \param data string to parse | |
740 * \param size length of data | |
741 * \param timecode starting time of the event (milliseconds) | |
742 * \param duration duration of the event (milliseconds) | |
743 */ | |
19492 | 744 void ass_process_chunk(ass_track_t* track, char *data, int size, long long timecode, long long duration) |
18937 | 745 { |
746 char* str; | |
747 int eid; | |
748 char* p; | |
749 char* token; | |
750 ass_event_t* event; | |
751 | |
752 if (!track->event_format) { | |
21066 | 753 mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_EventFormatHeaderMissing); |
18937 | 754 return; |
755 } | |
756 | |
757 str = malloc(size + 1); | |
758 memcpy(str, data, size); | |
759 str[size] = '\0'; | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20603
diff
changeset
|
760 mp_msg(MSGT_ASS, MSGL_V, "event at %" PRId64 ", +%" PRId64 ": %s \n", (int64_t)timecode, (int64_t)duration, str); |
18937 | 761 |
762 eid = ass_alloc_event(track); | |
763 event = track->events + eid; | |
764 | |
765 p = str; | |
766 | |
767 do { | |
768 NEXT(p, token); | |
769 event->ReadOrder = atoi(token); | |
770 if (check_duplicate_event(track, event->ReadOrder)) | |
771 break; | |
772 | |
773 NEXT(p, token); | |
774 event->Layer = atoi(token); | |
775 | |
776 process_event_tail(track, event, p, 3); | |
777 | |
778 event->Start = timecode; | |
779 event->Duration = duration; | |
780 | |
781 free(str); | |
782 return; | |
783 // dump_events(tid); | |
784 } while (0); | |
785 // some error | |
19474
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
19405
diff
changeset
|
786 ass_free_event(track, eid); |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
19405
diff
changeset
|
787 track->n_events--; |
18937 | 788 free(str); |
789 } | |
790 | |
791 #ifdef USE_ICONV | |
792 /** \brief recode buffer to utf-8 | |
20477 | 793 * constraint: codepage != 0 |
18937 | 794 * \param data pointer to text buffer |
795 * \param size buffer size | |
796 * \return a pointer to recoded buffer, caller is responsible for freeing it | |
797 **/ | |
20477 | 798 static char* sub_recode(char* data, size_t size, char* codepage) |
18937 | 799 { |
800 static iconv_t icdsc = (iconv_t)(-1); | |
801 char* tocp = "UTF-8"; | |
802 char* outbuf; | |
20477 | 803 assert(codepage); |
18937 | 804 |
805 { | |
20602
f672f6921ced
Bugfix: sub_recode could deallocate global sub_cp under some circumstances.
eugeni
parents:
20503
diff
changeset
|
806 char* cp_tmp = codepage ? strdup(codepage) : 0; |
18937 | 807 #ifdef HAVE_ENCA |
808 char enca_lang[3], enca_fallback[100]; | |
20477 | 809 if (sscanf(codepage, "enca:%2s:%99s", enca_lang, enca_fallback) == 2 |
810 || sscanf(codepage, "ENCA:%2s:%99s", enca_lang, enca_fallback) == 2) { | |
20503 | 811 cp_tmp = guess_buffer_cp((unsigned char*)data, size, enca_lang, enca_fallback); |
18937 | 812 } |
813 #endif | |
814 if ((icdsc = iconv_open (tocp, cp_tmp)) != (iconv_t)(-1)){ | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20603
diff
changeset
|
815 mp_msg(MSGT_ASS,MSGL_V,"LIBSUB: opened iconv descriptor.\n"); |
18937 | 816 } else |
21066 | 817 mp_msg(MSGT_ASS,MSGL_ERR,MSGTR_LIBASS_ErrorOpeningIconvDescriptor); |
18937 | 818 #ifdef HAVE_ENCA |
819 if (cp_tmp) free(cp_tmp); | |
820 #endif | |
821 } | |
822 | |
823 { | |
824 size_t osize = size; | |
825 size_t ileft = size; | |
826 size_t oleft = size - 1; | |
827 char* ip; | |
828 char* op; | |
829 size_t rc; | |
830 | |
831 outbuf = malloc(size); | |
832 ip = data; | |
833 op = outbuf; | |
834 | |
835 while (ileft) { | |
836 rc = iconv(icdsc, &ip, &ileft, &op, &oleft); | |
837 if (rc == (size_t)(-1)) { | |
838 if (errno == E2BIG) { | |
839 int offset = op - outbuf; | |
840 outbuf = (char*)realloc(outbuf, osize + size); | |
841 op = outbuf + offset; | |
842 osize += size; | |
843 oleft += size; | |
844 } else { | |
21066 | 845 mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_ErrorRecodingFile); |
18937 | 846 return NULL; |
847 } | |
848 } | |
849 } | |
850 outbuf[osize - oleft - 1] = 0; | |
851 } | |
852 | |
853 if (icdsc != (iconv_t)(-1)) { | |
854 (void)iconv_close(icdsc); | |
855 icdsc = (iconv_t)(-1); | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20603
diff
changeset
|
856 mp_msg(MSGT_ASS,MSGL_V,"LIBSUB: closed iconv descriptor.\n"); |
18937 | 857 } |
858 | |
859 return outbuf; | |
860 } | |
861 #endif // ICONV | |
862 | |
863 /** | |
20603 | 864 * \brief read file contents into newly allocated buffer |
865 * \param fname file name | |
866 * \param bufsize out: file size | |
867 * \return pointer to file contents. Caller is responsible for its deallocation. | |
19652
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19639
diff
changeset
|
868 */ |
20603 | 869 static char* read_file(char* fname, size_t *bufsize) |
18937 | 870 { |
871 int res; | |
872 long sz; | |
873 long bytes_read; | |
874 char* buf; | |
19652
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19639
diff
changeset
|
875 |
18937 | 876 FILE* fp = fopen(fname, "rb"); |
877 if (!fp) { | |
21066 | 878 mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_FopenFailed, fname); |
18937 | 879 return 0; |
880 } | |
881 res = fseek(fp, 0, SEEK_END); | |
882 if (res == -1) { | |
21066 | 883 mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_FseekFailed, fname); |
18937 | 884 fclose(fp); |
885 return 0; | |
886 } | |
887 | |
888 sz = ftell(fp); | |
889 rewind(fp); | |
890 | |
891 if (sz > 10*1024*1024) { | |
21066 | 892 mp_msg(MSGT_ASS, MSGL_INFO, MSGTR_LIBASS_RefusingToLoadSubtitlesLargerThan10M, fname); |
18937 | 893 fclose(fp); |
894 return 0; | |
895 } | |
896 | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20603
diff
changeset
|
897 mp_msg(MSGT_ASS, MSGL_V, "file size: %ld\n", sz); |
18937 | 898 |
899 buf = malloc(sz + 1); | |
900 assert(buf); | |
901 bytes_read = 0; | |
902 do { | |
903 res = fread(buf + bytes_read, 1, sz - bytes_read, fp); | |
904 if (res <= 0) { | |
21066 | 905 mp_msg(MSGT_ASS, MSGL_INFO, MSGTR_LIBASS_ReadFailed, errno, strerror(errno)); |
18937 | 906 fclose(fp); |
907 free(buf); | |
908 return 0; | |
909 } | |
910 bytes_read += res; | |
911 } while (sz - bytes_read > 0); | |
912 buf[sz] = '\0'; | |
913 fclose(fp); | |
914 | |
20603 | 915 if (bufsize) |
916 *bufsize = sz; | |
19652
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19639
diff
changeset
|
917 return buf; |
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19639
diff
changeset
|
918 } |
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19639
diff
changeset
|
919 |
20603 | 920 /* |
921 * \param buf pointer to subtitle text in utf-8 | |
922 */ | |
923 static ass_track_t* parse_memory(ass_library_t* library, char* buf) | |
19652
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19639
diff
changeset
|
924 { |
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19639
diff
changeset
|
925 ass_track_t* track; |
19905 | 926 int i; |
19652
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19639
diff
changeset
|
927 |
20477 | 928 track = ass_new_track(library); |
18937 | 929 |
930 // process header | |
19492 | 931 process_text(track, buf); |
932 | |
19905 | 933 // external SSA/ASS subs does not have ReadOrder field |
934 for (i = 0; i < track->n_events; ++i) | |
935 track->events[i].ReadOrder = i; | |
936 | |
19492 | 937 // there is no explicit end-of-font marker in ssa/ass |
938 if (track->parser_priv->fontname) | |
939 decode_font(track); | |
940 | |
941 if (track->track_type == TRACK_TYPE_UNKNOWN) { | |
18937 | 942 ass_free_track(track); |
943 return 0; | |
944 } | |
945 | |
19495 | 946 process_force_style(track); |
947 | |
20603 | 948 return track; |
949 } | |
950 | |
951 /** | |
952 * \brief Read subtitles from memory. | |
953 * \param library libass library object | |
954 * \param buf pointer to subtitles text | |
955 * \param bufsize size of buffer | |
956 * \param codepage recode buffer contents from given codepage | |
957 * \return newly allocated track | |
958 */ | |
959 ass_track_t* ass_read_memory(ass_library_t* library, char* buf, size_t bufsize, char* codepage) | |
960 { | |
961 ass_track_t* track; | |
962 int need_free = 0; | |
963 | |
964 if (!buf) | |
965 return 0; | |
966 | |
967 #ifdef USE_ICONV | |
968 if (codepage) | |
969 buf = sub_recode(buf, bufsize, codepage); | |
970 if (!buf) | |
971 return 0; | |
972 else | |
973 need_free = 1; | |
974 #endif | |
975 track = parse_memory(library, buf); | |
976 if (need_free) | |
977 free(buf); | |
978 if (!track) | |
979 return 0; | |
980 | |
21066 | 981 mp_msg(MSGT_ASS, MSGL_INFO, MSGTR_LIBASS_AddedSubtitleFileMemory, track->n_styles, track->n_events); |
20603 | 982 return track; |
983 } | |
984 | |
23424
7286d245bf33
Move code for reading a file and recoding it to utf-8 to a separate function.
eugeni
parents:
23300
diff
changeset
|
985 char* read_file_recode(char* fname, char* codepage, int* size) |
20603 | 986 { |
987 char* buf; | |
988 size_t bufsize; | |
989 | |
990 buf = read_file(fname, &bufsize); | |
991 if (!buf) | |
992 return 0; | |
993 #ifdef USE_ICONV | |
994 if (codepage) { | |
995 char* tmpbuf = sub_recode(buf, bufsize, codepage); | |
996 free(buf); | |
997 buf = tmpbuf; | |
998 } | |
999 if (!buf) | |
1000 return 0; | |
1001 #endif | |
23424
7286d245bf33
Move code for reading a file and recoding it to utf-8 to a separate function.
eugeni
parents:
23300
diff
changeset
|
1002 *size = bufsize; |
7286d245bf33
Move code for reading a file and recoding it to utf-8 to a separate function.
eugeni
parents:
23300
diff
changeset
|
1003 return buf; |
7286d245bf33
Move code for reading a file and recoding it to utf-8 to a separate function.
eugeni
parents:
23300
diff
changeset
|
1004 } |
7286d245bf33
Move code for reading a file and recoding it to utf-8 to a separate function.
eugeni
parents:
23300
diff
changeset
|
1005 |
7286d245bf33
Move code for reading a file and recoding it to utf-8 to a separate function.
eugeni
parents:
23300
diff
changeset
|
1006 /** |
7286d245bf33
Move code for reading a file and recoding it to utf-8 to a separate function.
eugeni
parents:
23300
diff
changeset
|
1007 * \brief Read subtitles from file. |
7286d245bf33
Move code for reading a file and recoding it to utf-8 to a separate function.
eugeni
parents:
23300
diff
changeset
|
1008 * \param library libass library object |
7286d245bf33
Move code for reading a file and recoding it to utf-8 to a separate function.
eugeni
parents:
23300
diff
changeset
|
1009 * \param fname file name |
7286d245bf33
Move code for reading a file and recoding it to utf-8 to a separate function.
eugeni
parents:
23300
diff
changeset
|
1010 * \param codepage recode buffer contents from given codepage |
7286d245bf33
Move code for reading a file and recoding it to utf-8 to a separate function.
eugeni
parents:
23300
diff
changeset
|
1011 * \return newly allocated track |
7286d245bf33
Move code for reading a file and recoding it to utf-8 to a separate function.
eugeni
parents:
23300
diff
changeset
|
1012 */ |
7286d245bf33
Move code for reading a file and recoding it to utf-8 to a separate function.
eugeni
parents:
23300
diff
changeset
|
1013 ass_track_t* ass_read_file(ass_library_t* library, char* fname, char* codepage) |
7286d245bf33
Move code for reading a file and recoding it to utf-8 to a separate function.
eugeni
parents:
23300
diff
changeset
|
1014 { |
7286d245bf33
Move code for reading a file and recoding it to utf-8 to a separate function.
eugeni
parents:
23300
diff
changeset
|
1015 char* buf; |
7286d245bf33
Move code for reading a file and recoding it to utf-8 to a separate function.
eugeni
parents:
23300
diff
changeset
|
1016 ass_track_t* track; |
7286d245bf33
Move code for reading a file and recoding it to utf-8 to a separate function.
eugeni
parents:
23300
diff
changeset
|
1017 size_t bufsize; |
7286d245bf33
Move code for reading a file and recoding it to utf-8 to a separate function.
eugeni
parents:
23300
diff
changeset
|
1018 |
7286d245bf33
Move code for reading a file and recoding it to utf-8 to a separate function.
eugeni
parents:
23300
diff
changeset
|
1019 buf = read_file_recode(fname, codepage, &bufsize); |
7286d245bf33
Move code for reading a file and recoding it to utf-8 to a separate function.
eugeni
parents:
23300
diff
changeset
|
1020 if (!buf) |
7286d245bf33
Move code for reading a file and recoding it to utf-8 to a separate function.
eugeni
parents:
23300
diff
changeset
|
1021 return 0; |
20603 | 1022 track = parse_memory(library, buf); |
1023 free(buf); | |
1024 if (!track) | |
1025 return 0; | |
1026 | |
1027 track->name = strdup(fname); | |
1028 | |
21066 | 1029 mp_msg(MSGT_ASS, MSGL_INFO, MSGTR_LIBASS_AddedSubtitleFileFname, fname, track->n_styles, track->n_events); |
18937 | 1030 |
1031 // dump_events(forced_tid); | |
1032 return track; | |
1033 } | |
1034 | |
19652
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19639
diff
changeset
|
1035 /** |
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19639
diff
changeset
|
1036 * \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:
19639
diff
changeset
|
1037 */ |
20477 | 1038 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:
19639
diff
changeset
|
1039 { |
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19639
diff
changeset
|
1040 char* buf; |
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19639
diff
changeset
|
1041 parser_state_t old_state; |
20603 | 1042 size_t sz; |
19652
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19639
diff
changeset
|
1043 |
20603 | 1044 buf = read_file(fname, &sz); |
19652
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19639
diff
changeset
|
1045 if (!buf) |
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19639
diff
changeset
|
1046 return 1; |
20603 | 1047 #ifdef USE_ICONV |
1048 if (codepage) { | |
20698 | 1049 char* tmpbuf; |
20603 | 1050 tmpbuf = sub_recode(buf, sz, codepage); |
1051 free(buf); | |
1052 buf = tmpbuf; | |
1053 } | |
1054 if (!buf) | |
1055 return 0; | |
1056 #endif | |
19652
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19639
diff
changeset
|
1057 |
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19639
diff
changeset
|
1058 old_state = track->parser_priv->state; |
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19639
diff
changeset
|
1059 track->parser_priv->state = PST_STYLES; |
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19639
diff
changeset
|
1060 process_text(track, buf); |
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19639
diff
changeset
|
1061 track->parser_priv->state = old_state; |
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19639
diff
changeset
|
1062 |
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19639
diff
changeset
|
1063 return 0; |
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19639
diff
changeset
|
1064 } |
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19639
diff
changeset
|
1065 |
18937 | 1066 long long ass_step_sub(ass_track_t* track, long long now, int movement) { |
1067 int i; | |
1068 | |
1069 if (movement == 0) return 0; | |
1070 if (track->n_events == 0) return 0; | |
1071 | |
1072 if (movement < 0) | |
1073 for (i = 0; (i < track->n_events) && ((long long)(track->events[i].Start + track->events[i].Duration) <= now); ++i) {} | |
1074 else | |
1075 for (i = track->n_events - 1; (i >= 0) && ((long long)(track->events[i].Start) > now); --i) {} | |
1076 | |
1077 // -1 and n_events are ok | |
1078 assert(i >= -1); assert(i <= track->n_events); | |
1079 i += movement; | |
1080 if (i < 0) i = 0; | |
1081 if (i >= track->n_events) i = track->n_events - 1; | |
1082 return ((long long)track->events[i].Start) - now; | |
1083 } | |
1084 | |
20477 | 1085 ass_track_t* ass_new_track(ass_library_t* library) { |
18937 | 1086 ass_track_t* track = calloc(1, sizeof(ass_track_t)); |
20477 | 1087 track->library = library; |
19492 | 1088 track->parser_priv = calloc(1, sizeof(parser_priv_t)); |
18937 | 1089 return track; |
1090 } | |
1091 |