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