Mercurial > mplayer.hg
annotate libass/ass.c @ 26140:855d907d45fd
Yet another hdv fourcc
author | reimar |
---|---|
date | Wed, 05 Mar 2008 17:54:36 +0000 |
parents | 6b1d7568ae3d |
children | 75a108423c11 |
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 | |
23539
790efaddf175
Make sure there is at least one style in ass_track when parsing events.
eugeni
parents:
23424
diff
changeset
|
274 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
|
275 // 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
|
276 // 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
|
277 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
|
278 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
|
279 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
|
280 } |
790efaddf175
Make sure there is at least one style in ass_track when parsing events.
eugeni
parents:
23424
diff
changeset
|
281 |
18937 | 282 for (i = 0; i < n_ignored; ++i) { |
283 NEXT(q, tname); | |
284 } | |
285 | |
286 while (1) { | |
287 NEXT(q, tname); | |
288 if (strcasecmp(tname, "Text") == 0) { | |
289 char* last; | |
290 event->Text = strdup(p); | |
19612 | 291 if (*event->Text != 0) { |
292 last = event->Text + strlen(event->Text) - 1; | |
293 if (last >= event->Text && *last == '\r') | |
294 *last = 0; | |
295 } | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20603
diff
changeset
|
296 mp_msg(MSGT_ASS, MSGL_DBG2, "Text = %s\n", event->Text); |
18937 | 297 event->Duration -= event->Start; |
298 free(format); | |
299 return 0; // "Text" is always the last | |
300 } | |
301 NEXT(p, token); | |
302 | |
303 ALIAS(End,Duration) // temporarily store end timecode in event->Duration | |
304 if (0) { // cool ;) | |
19635 | 305 INTVAL(Layer) |
18937 | 306 STYLEVAL(Style) |
307 STRVAL(Name) | |
308 STRVAL(Effect) | |
309 INTVAL(MarginL) | |
310 INTVAL(MarginR) | |
311 INTVAL(MarginV) | |
312 TIMEVAL(Start) | |
313 TIMEVAL(Duration) | |
314 } | |
315 } | |
316 free(format); | |
317 return 1; | |
318 } | |
319 | |
320 /** | |
19495 | 321 * \brief Parse command line style overrides (--ass-force-style option) |
322 * \param track track to apply overrides to | |
323 * The format for overrides is [StyleName.]Field=Value | |
324 */ | |
19584
586e7d259d05
Apply -ass-force-style also to tracks generated from subdata.
eugeni
parents:
19567
diff
changeset
|
325 void process_force_style(ass_track_t* track) { |
19495 | 326 char **fs, *eq, *dt, *style, *tname, *token; |
327 ass_style_t* target; | |
328 int sid; | |
20477 | 329 char** list = track->library->style_overrides; |
19495 | 330 |
20477 | 331 if (!list) return; |
19495 | 332 |
20477 | 333 for (fs = list; *fs; ++fs) { |
23540
d655edc9d107
When parsing ass-force-style arguments, search for '=' and '.' characters with
eugeni
parents:
23539
diff
changeset
|
334 eq = strrchr(*fs, '='); |
19495 | 335 if (!eq) |
336 continue; | |
337 *eq = '\0'; | |
338 token = eq + 1; | |
339 | |
25582
6b1d7568ae3d
Allow overriding [Script Info] parameters with -ass-force-style option.
eugeni
parents:
25515
diff
changeset
|
340 if(!strcasecmp(*fs, "PlayResX")) |
6b1d7568ae3d
Allow overriding [Script Info] parameters with -ass-force-style option.
eugeni
parents:
25515
diff
changeset
|
341 track->PlayResX = atoi(token); |
6b1d7568ae3d
Allow overriding [Script Info] parameters with -ass-force-style option.
eugeni
parents:
25515
diff
changeset
|
342 else if(!strcasecmp(*fs, "PlayResY")) |
6b1d7568ae3d
Allow overriding [Script Info] parameters with -ass-force-style option.
eugeni
parents:
25515
diff
changeset
|
343 track->PlayResY = atoi(token); |
6b1d7568ae3d
Allow overriding [Script Info] parameters with -ass-force-style option.
eugeni
parents:
25515
diff
changeset
|
344 else if(!strcasecmp(*fs, "Timer")) |
6b1d7568ae3d
Allow overriding [Script Info] parameters with -ass-force-style option.
eugeni
parents:
25515
diff
changeset
|
345 track->Timer = atof(token); |
6b1d7568ae3d
Allow overriding [Script Info] parameters with -ass-force-style option.
eugeni
parents:
25515
diff
changeset
|
346 else if(!strcasecmp(*fs, "WrapStyle")) |
6b1d7568ae3d
Allow overriding [Script Info] parameters with -ass-force-style option.
eugeni
parents:
25515
diff
changeset
|
347 track->WrapStyle = atoi(token); |
6b1d7568ae3d
Allow overriding [Script Info] parameters with -ass-force-style option.
eugeni
parents:
25515
diff
changeset
|
348 |
23540
d655edc9d107
When parsing ass-force-style arguments, search for '=' and '.' characters with
eugeni
parents:
23539
diff
changeset
|
349 dt = strrchr(*fs, '.'); |
19495 | 350 if (dt) { |
351 *dt = '\0'; | |
352 style = *fs; | |
353 tname = dt + 1; | |
354 } else { | |
355 style = NULL; | |
356 tname = *fs; | |
357 } | |
358 for (sid = 0; sid < track->n_styles; ++sid) { | |
359 if (style == NULL || strcasecmp(track->styles[sid].Name, style) == 0) { | |
360 target = track->styles + sid; | |
361 if (0) { | |
362 STRVAL(FontName) | |
363 COLORVAL(PrimaryColour) | |
364 COLORVAL(SecondaryColour) | |
365 COLORVAL(OutlineColour) | |
366 COLORVAL(BackColour) | |
23300 | 367 FPVAL(FontSize) |
19495 | 368 INTVAL(Bold) |
369 INTVAL(Italic) | |
370 INTVAL(Underline) | |
371 INTVAL(StrikeOut) | |
22259 | 372 FPVAL(Spacing) |
19495 | 373 INTVAL(Angle) |
374 INTVAL(BorderStyle) | |
375 INTVAL(Alignment) | |
376 INTVAL(MarginL) | |
377 INTVAL(MarginR) | |
378 INTVAL(MarginV) | |
379 INTVAL(Encoding) | |
380 FPVAL(ScaleX) | |
381 FPVAL(ScaleY) | |
382 FPVAL(Outline) | |
383 FPVAL(Shadow) | |
384 } | |
385 } | |
386 } | |
387 *eq = '='; | |
388 if (dt) *dt = '.'; | |
389 } | |
390 } | |
391 | |
392 /** | |
18937 | 393 * \brief Parse the Style line |
394 * \param track track | |
395 * \param str string to parse, zero-terminated | |
396 * Allocates a new style struct. | |
397 */ | |
398 static int process_style(ass_track_t* track, char *str) | |
399 { | |
400 | |
401 char* token; | |
402 char* tname; | |
403 char* p = str; | |
404 char* format; | |
405 char* q; // format scanning pointer | |
406 int sid; | |
407 ass_style_t* style; | |
408 ass_style_t* target; | |
409 | |
410 if (!track->style_format) { | |
411 // no style format header | |
412 // probably an ancient script version | |
413 if (track->track_type == TRACK_TYPE_SSA) | |
414 track->style_format = strdup("Name, Fontname, Fontsize, PrimaryColour, SecondaryColour," | |
415 "TertiaryColour, BackColour, Bold, Italic, BorderStyle, Outline," | |
416 "Shadow, Alignment, MarginL, MarginR, MarginV, AlphaLevel, Encoding"); | |
417 else | |
418 track->style_format = strdup("Name, Fontname, Fontsize, PrimaryColour, SecondaryColour," | |
419 "OutlineColour, BackColour, Bold, Italic, Underline, StrikeOut," | |
420 "ScaleX, ScaleY, Spacing, Angle, BorderStyle, Outline, Shadow," | |
421 "Alignment, MarginL, MarginR, MarginV, Encoding"); | |
422 } | |
423 | |
424 q = format = strdup(track->style_format); | |
425 | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20603
diff
changeset
|
426 mp_msg(MSGT_ASS, MSGL_V, "[%p] Style: %s\n", track, str); |
18937 | 427 |
428 sid = ass_alloc_style(track); | |
429 | |
430 style = track->styles + sid; | |
431 target = style; | |
432 // fill style with some default values | |
433 style->ScaleX = 100.; | |
434 style->ScaleY = 100.; | |
435 | |
436 while (1) { | |
437 NEXT(q, tname); | |
438 NEXT(p, token); | |
439 | |
440 // ALIAS(TertiaryColour,OutlineColour) // ignore TertiaryColour; it appears only in SSA, and is overridden by BackColour | |
441 | |
442 if (0) { // cool ;) | |
443 STRVAL(Name) | |
444 if ((strcmp(target->Name, "Default")==0) || (strcmp(target->Name, "*Default")==0)) | |
445 track->default_style = sid; | |
446 STRVAL(FontName) | |
447 COLORVAL(PrimaryColour) | |
448 COLORVAL(SecondaryColour) | |
449 COLORVAL(OutlineColour) // TertiaryColor | |
450 COLORVAL(BackColour) | |
451 // SSA uses BackColour for both outline and shadow | |
452 // this will destroy SSA's TertiaryColour, but i'm not going to use it anyway | |
453 if (track->track_type == TRACK_TYPE_SSA) | |
454 target->OutlineColour = target->BackColour; | |
23300 | 455 FPVAL(FontSize) |
18937 | 456 INTVAL(Bold) |
457 INTVAL(Italic) | |
458 INTVAL(Underline) | |
459 INTVAL(StrikeOut) | |
22259 | 460 FPVAL(Spacing) |
18937 | 461 INTVAL(Angle) |
462 INTVAL(BorderStyle) | |
463 INTVAL(Alignment) | |
464 if (track->track_type == TRACK_TYPE_ASS) | |
465 target->Alignment = numpad2align(target->Alignment); | |
466 INTVAL(MarginL) | |
467 INTVAL(MarginR) | |
468 INTVAL(MarginV) | |
469 INTVAL(Encoding) | |
470 FPVAL(ScaleX) | |
471 FPVAL(ScaleY) | |
472 FPVAL(Outline) | |
473 FPVAL(Shadow) | |
474 } | |
475 } | |
476 style->ScaleX /= 100.; | |
477 style->ScaleY /= 100.; | |
22263 | 478 style->Bold = !!style->Bold; |
479 style->Italic = !!style->Italic; | |
480 style->Underline = !!style->Underline; | |
18937 | 481 if (!style->Name) |
482 style->Name = strdup("Default"); | |
483 if (!style->FontName) | |
484 style->FontName = strdup("Arial"); | |
485 free(format); | |
486 return 0; | |
487 | |
488 } | |
489 | |
19492 | 490 static int process_styles_line(ass_track_t* track, char *str) |
491 { | |
492 if (!strncmp(str,"Format:", 7)) { | |
493 char* p = str + 7; | |
494 skip_spaces(&p); | |
495 track->style_format = strdup(p); | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20603
diff
changeset
|
496 mp_msg(MSGT_ASS, MSGL_DBG2, "Style format: %s\n", track->style_format); |
19492 | 497 } else if (!strncmp(str,"Style:", 6)) { |
498 char* p = str + 6; | |
499 skip_spaces(&p); | |
500 process_style(track, p); | |
501 } | |
502 return 0; | |
503 } | |
504 | |
505 static int process_info_line(ass_track_t* track, char *str) | |
506 { | |
507 if (!strncmp(str, "PlayResX:", 9)) { | |
508 track->PlayResX = atoi(str + 9); | |
509 } else if (!strncmp(str,"PlayResY:", 9)) { | |
510 track->PlayResY = atoi(str + 9); | |
511 } else if (!strncmp(str,"Timer:", 6)) { | |
512 track->Timer = atof(str + 6); | |
513 } else if (!strncmp(str,"WrapStyle:", 10)) { | |
514 track->WrapStyle = atoi(str + 10); | |
515 } | |
516 return 0; | |
517 } | |
518 | |
519 static int process_events_line(ass_track_t* track, char *str) | |
520 { | |
521 if (!strncmp(str, "Format:", 7)) { | |
522 char* p = str + 7; | |
523 skip_spaces(&p); | |
524 track->event_format = strdup(p); | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20603
diff
changeset
|
525 mp_msg(MSGT_ASS, MSGL_DBG2, "Event format: %s\n", track->event_format); |
19492 | 526 } else if (!strncmp(str, "Dialogue:", 9)) { |
527 // This should never be reached for embedded subtitles. | |
528 // They have slightly different format and are parsed in ass_process_chunk, | |
529 // called directly from demuxer | |
530 int eid; | |
531 ass_event_t* event; | |
532 | |
533 str += 9; | |
534 skip_spaces(&str); | |
535 | |
536 eid = ass_alloc_event(track); | |
537 event = track->events + eid; | |
538 | |
539 process_event_tail(track, event, str, 0); | |
540 } else { | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20603
diff
changeset
|
541 mp_msg(MSGT_ASS, MSGL_V, "Not understood: %s \n", str); |
19492 | 542 } |
543 return 0; | |
544 } | |
545 | |
546 // Copied from mkvtoolnix | |
547 static unsigned char* decode_chars(unsigned char c1, unsigned char c2, | |
548 unsigned char c3, unsigned char c4, unsigned char* dst, int cnt) | |
549 { | |
550 uint32_t value; | |
551 unsigned char bytes[3]; | |
552 int i; | |
553 | |
554 value = ((c1 - 33) << 18) + ((c2 - 33) << 12) + ((c3 - 33) << 6) + (c4 - 33); | |
555 bytes[2] = value & 0xff; | |
556 bytes[1] = (value & 0xff00) >> 8; | |
557 bytes[0] = (value & 0xff0000) >> 16; | |
558 | |
559 for (i = 0; i < cnt; ++i) | |
560 *dst++ = bytes[i]; | |
561 return dst; | |
562 } | |
563 | |
564 static int decode_font(ass_track_t* track) | |
565 { | |
566 unsigned char* p; | |
567 unsigned char* q; | |
568 int i; | |
569 int size; // original size | |
570 int dsize; // decoded size | |
571 unsigned char* buf = 0; | |
572 | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20603
diff
changeset
|
573 mp_msg(MSGT_ASS, MSGL_V, "font: %d bytes encoded data \n", track->parser_priv->fontdata_used); |
19492 | 574 size = track->parser_priv->fontdata_used; |
575 if (size % 4 == 1) { | |
21066 | 576 mp_msg(MSGT_ASS, MSGL_ERR, MSGTR_LIBASS_BadEncodedDataSize); |
19492 | 577 goto error_decode_font; |
578 } | |
579 buf = malloc(size / 4 * 3 + 2); | |
580 q = buf; | |
581 for (i = 0, p = (unsigned char*)track->parser_priv->fontdata; i < size / 4; i++, p+=4) { | |
582 q = decode_chars(p[0], p[1], p[2], p[3], q, 3); | |
583 } | |
584 if (size % 4 == 2) { | |
585 q = decode_chars(p[0], p[1], 0, 0, q, 1); | |
586 } else if (size % 4 == 3) { | |
587 q = decode_chars(p[0], p[1], p[2], 0, q, 2); | |
588 } | |
589 dsize = q - buf; | |
590 assert(dsize <= size / 4 * 3 + 2); | |
591 | |
23264
dc12bca7d4b5
Don't deallocate font data if it will be used later.
eugeni
parents:
22263
diff
changeset
|
592 if (track->library->extract_fonts) { |
21455 | 593 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
|
594 buf = 0; |
dc12bca7d4b5
Don't deallocate font data if it will be used later.
eugeni
parents:
22263
diff
changeset
|
595 } |
19492 | 596 |
597 error_decode_font: | |
598 if (buf) free(buf); | |
599 free(track->parser_priv->fontname); | |
600 free(track->parser_priv->fontdata); | |
601 track->parser_priv->fontname = 0; | |
602 track->parser_priv->fontdata = 0; | |
603 track->parser_priv->fontdata_size = 0; | |
604 track->parser_priv->fontdata_used = 0; | |
605 return 0; | |
606 } | |
607 | |
608 static int process_fonts_line(ass_track_t* track, char *str) | |
609 { | |
610 int len; | |
611 | |
612 if (!strncmp(str, "fontname:", 9)) { | |
613 char* p = str + 9; | |
614 skip_spaces(&p); | |
615 if (track->parser_priv->fontname) { | |
616 decode_font(track); | |
617 } | |
21453
9dd976e14792
Avoid calling validate_fname() twice for one string.
eugeni
parents:
21066
diff
changeset
|
618 track->parser_priv->fontname = strdup(p); |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20603
diff
changeset
|
619 mp_msg(MSGT_ASS, MSGL_V, "fontname: %s\n", track->parser_priv->fontname); |
19492 | 620 return 0; |
621 } | |
622 | |
623 if (!track->parser_priv->fontname) { | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20603
diff
changeset
|
624 mp_msg(MSGT_ASS, MSGL_V, "Not understood: %s \n", str); |
19492 | 625 return 0; |
626 } | |
627 | |
628 len = strlen(str); | |
629 if (len > 80) { | |
21066 | 630 mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_FontLineTooLong, len, str); |
19492 | 631 return 0; |
632 } | |
633 if (track->parser_priv->fontdata_used + len > track->parser_priv->fontdata_size) { | |
634 track->parser_priv->fontdata_size += 100 * 1024; | |
635 track->parser_priv->fontdata = realloc(track->parser_priv->fontdata, track->parser_priv->fontdata_size); | |
636 } | |
637 memcpy(track->parser_priv->fontdata + track->parser_priv->fontdata_used, str, len); | |
638 track->parser_priv->fontdata_used += len; | |
639 | |
640 return 0; | |
641 } | |
642 | |
18937 | 643 /** |
644 * \brief Parse a header line | |
645 * \param track track | |
646 * \param str string to parse, zero-terminated | |
647 */ | |
19492 | 648 static int process_line(ass_track_t* track, char *str) |
18937 | 649 { |
19492 | 650 if (strstr(str, "[Script Info]")) { // FIXME: strstr to skip possible BOM at the beginning of the script |
651 track->parser_priv->state = PST_INFO; | |
652 } else if (!strncmp(str, "[V4 Styles]", 11)) { | |
653 track->parser_priv->state = PST_STYLES; | |
654 track->track_type = TRACK_TYPE_SSA; | |
655 } else if (!strncmp(str, "[V4+ Styles]", 12)) { | |
656 track->parser_priv->state = PST_STYLES; | |
657 track->track_type = TRACK_TYPE_ASS; | |
658 } else if (!strncmp(str, "[Events]", 8)) { | |
659 track->parser_priv->state = PST_EVENTS; | |
660 } else if (!strncmp(str, "[Fonts]", 7)) { | |
661 track->parser_priv->state = PST_FONTS; | |
662 } else { | |
663 switch (track->parser_priv->state) { | |
664 case PST_INFO: | |
665 process_info_line(track, str); | |
666 break; | |
667 case PST_STYLES: | |
668 process_styles_line(track, str); | |
669 break; | |
670 case PST_EVENTS: | |
671 process_events_line(track, str); | |
672 break; | |
673 case PST_FONTS: | |
674 process_fonts_line(track, str); | |
675 break; | |
676 default: | |
677 break; | |
18937 | 678 } |
19492 | 679 } |
680 | |
681 // there is no explicit end-of-font marker in ssa/ass | |
682 if ((track->parser_priv->state != PST_FONTS) && (track->parser_priv->fontname)) | |
683 decode_font(track); | |
684 | |
685 return 0; | |
686 } | |
687 | |
688 static int process_text(ass_track_t* track, char* str) | |
689 { | |
690 char* p = str; | |
691 while(1) { | |
692 char* q; | |
693 for (;((*p=='\r')||(*p=='\n'));++p) {} | |
694 for (q=p; ((*q!='\0')&&(*q!='\r')&&(*q!='\n')); ++q) {}; | |
695 if (q==p) | |
696 break; | |
697 if (*q != '\0') | |
698 *(q++) = '\0'; | |
699 process_line(track, p); | |
700 if (*q == '\0') | |
701 break; | |
702 p = q; | |
18937 | 703 } |
704 return 0; | |
705 } | |
706 | |
707 /** | |
708 * \brief Process CodecPrivate section of subtitle stream | |
709 * \param track track | |
710 * \param data string to parse | |
711 * \param size length of data | |
19492 | 712 CodecPrivate section contains [Stream Info] and [V4+ Styles] ([V4 Styles] for SSA) sections |
18937 | 713 */ |
19492 | 714 void ass_process_codec_private(ass_track_t* track, char *data, int size) |
18937 | 715 { |
716 char* str = malloc(size + 1); | |
717 | |
718 memcpy(str, data, size); | |
719 str[size] = '\0'; | |
720 | |
19492 | 721 process_text(track, str); |
18937 | 722 free(str); |
723 | |
724 if (!track->event_format) { | |
725 // probably an mkv produced by ancient mkvtoolnix | |
726 // such files don't have [Events] and Format: headers | |
19492 | 727 track->parser_priv->state = PST_EVENTS; |
18937 | 728 if (track->track_type == TRACK_TYPE_SSA) |
729 track->event_format = strdup("Format: Marked, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text"); | |
730 else | |
731 track->event_format = strdup("Format: Layer, Start, End, Style, Actor, MarginL, MarginR, MarginV, Effect, Text"); | |
732 } | |
19495 | 733 |
734 process_force_style(track); | |
18937 | 735 } |
736 | |
737 static int check_duplicate_event(ass_track_t* track, int ReadOrder) | |
738 { | |
739 int i; | |
740 for (i = 0; i<track->n_events - 1; ++i) // ignoring last event, it is the one we are comparing with | |
741 if (track->events[i].ReadOrder == ReadOrder) | |
742 return 1; | |
743 return 0; | |
744 } | |
745 | |
746 /** | |
25515 | 747 * \brief Process a chunk of subtitle stream data. In Matroska, this contains exactly 1 event (or a commentary). |
18937 | 748 * \param track track |
749 * \param data string to parse | |
750 * \param size length of data | |
751 * \param timecode starting time of the event (milliseconds) | |
752 * \param duration duration of the event (milliseconds) | |
753 */ | |
19492 | 754 void ass_process_chunk(ass_track_t* track, char *data, int size, long long timecode, long long duration) |
18937 | 755 { |
756 char* str; | |
757 int eid; | |
758 char* p; | |
759 char* token; | |
760 ass_event_t* event; | |
761 | |
762 if (!track->event_format) { | |
21066 | 763 mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_EventFormatHeaderMissing); |
18937 | 764 return; |
765 } | |
766 | |
767 str = malloc(size + 1); | |
768 memcpy(str, data, size); | |
769 str[size] = '\0'; | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20603
diff
changeset
|
770 mp_msg(MSGT_ASS, MSGL_V, "event at %" PRId64 ", +%" PRId64 ": %s \n", (int64_t)timecode, (int64_t)duration, str); |
18937 | 771 |
772 eid = ass_alloc_event(track); | |
773 event = track->events + eid; | |
774 | |
775 p = str; | |
776 | |
777 do { | |
778 NEXT(p, token); | |
779 event->ReadOrder = atoi(token); | |
780 if (check_duplicate_event(track, event->ReadOrder)) | |
781 break; | |
782 | |
783 NEXT(p, token); | |
784 event->Layer = atoi(token); | |
785 | |
786 process_event_tail(track, event, p, 3); | |
787 | |
788 event->Start = timecode; | |
789 event->Duration = duration; | |
790 | |
791 free(str); | |
792 return; | |
793 // dump_events(tid); | |
794 } while (0); | |
795 // some error | |
19474
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
19405
diff
changeset
|
796 ass_free_event(track, eid); |
07209f48e527
Add public functions for removal of styles and events.
eugeni
parents:
19405
diff
changeset
|
797 track->n_events--; |
18937 | 798 free(str); |
799 } | |
800 | |
801 #ifdef USE_ICONV | |
802 /** \brief recode buffer to utf-8 | |
20477 | 803 * constraint: codepage != 0 |
18937 | 804 * \param data pointer to text buffer |
805 * \param size buffer size | |
806 * \return a pointer to recoded buffer, caller is responsible for freeing it | |
807 **/ | |
20477 | 808 static char* sub_recode(char* data, size_t size, char* codepage) |
18937 | 809 { |
810 static iconv_t icdsc = (iconv_t)(-1); | |
811 char* tocp = "UTF-8"; | |
812 char* outbuf; | |
20477 | 813 assert(codepage); |
18937 | 814 |
815 { | |
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
|
816 const char* cp_tmp = codepage; |
18937 | 817 #ifdef HAVE_ENCA |
818 char enca_lang[3], enca_fallback[100]; | |
20477 | 819 if (sscanf(codepage, "enca:%2s:%99s", enca_lang, enca_fallback) == 2 |
820 || sscanf(codepage, "ENCA:%2s:%99s", enca_lang, enca_fallback) == 2) { | |
20503 | 821 cp_tmp = guess_buffer_cp((unsigned char*)data, size, enca_lang, enca_fallback); |
18937 | 822 } |
823 #endif | |
824 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
|
825 mp_msg(MSGT_ASS,MSGL_V,"LIBSUB: opened iconv descriptor.\n"); |
18937 | 826 } else |
21066 | 827 mp_msg(MSGT_ASS,MSGL_ERR,MSGTR_LIBASS_ErrorOpeningIconvDescriptor); |
18937 | 828 } |
829 | |
830 { | |
831 size_t osize = size; | |
832 size_t ileft = size; | |
833 size_t oleft = size - 1; | |
834 char* ip; | |
835 char* op; | |
836 size_t rc; | |
837 | |
838 outbuf = malloc(size); | |
839 ip = data; | |
840 op = outbuf; | |
841 | |
842 while (ileft) { | |
843 rc = iconv(icdsc, &ip, &ileft, &op, &oleft); | |
844 if (rc == (size_t)(-1)) { | |
845 if (errno == E2BIG) { | |
846 int offset = op - outbuf; | |
847 outbuf = (char*)realloc(outbuf, osize + size); | |
848 op = outbuf + offset; | |
849 osize += size; | |
850 oleft += size; | |
851 } else { | |
21066 | 852 mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_ErrorRecodingFile); |
18937 | 853 return NULL; |
854 } | |
855 } | |
856 } | |
857 outbuf[osize - oleft - 1] = 0; | |
858 } | |
859 | |
860 if (icdsc != (iconv_t)(-1)) { | |
861 (void)iconv_close(icdsc); | |
862 icdsc = (iconv_t)(-1); | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20603
diff
changeset
|
863 mp_msg(MSGT_ASS,MSGL_V,"LIBSUB: closed iconv descriptor.\n"); |
18937 | 864 } |
865 | |
866 return outbuf; | |
867 } | |
868 #endif // ICONV | |
869 | |
870 /** | |
20603 | 871 * \brief read file contents into newly allocated buffer |
872 * \param fname file name | |
873 * \param bufsize out: file size | |
874 * \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
|
875 */ |
20603 | 876 static char* read_file(char* fname, size_t *bufsize) |
18937 | 877 { |
878 int res; | |
879 long sz; | |
880 long bytes_read; | |
881 char* buf; | |
19652
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19639
diff
changeset
|
882 |
18937 | 883 FILE* fp = fopen(fname, "rb"); |
884 if (!fp) { | |
21066 | 885 mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_FopenFailed, fname); |
18937 | 886 return 0; |
887 } | |
888 res = fseek(fp, 0, SEEK_END); | |
889 if (res == -1) { | |
21066 | 890 mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_FseekFailed, fname); |
18937 | 891 fclose(fp); |
892 return 0; | |
893 } | |
894 | |
895 sz = ftell(fp); | |
896 rewind(fp); | |
897 | |
898 if (sz > 10*1024*1024) { | |
21066 | 899 mp_msg(MSGT_ASS, MSGL_INFO, MSGTR_LIBASS_RefusingToLoadSubtitlesLargerThan10M, fname); |
18937 | 900 fclose(fp); |
901 return 0; | |
902 } | |
903 | |
20629
e8885ec63928
Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents:
20603
diff
changeset
|
904 mp_msg(MSGT_ASS, MSGL_V, "file size: %ld\n", sz); |
18937 | 905 |
906 buf = malloc(sz + 1); | |
907 assert(buf); | |
908 bytes_read = 0; | |
909 do { | |
910 res = fread(buf + bytes_read, 1, sz - bytes_read, fp); | |
911 if (res <= 0) { | |
21066 | 912 mp_msg(MSGT_ASS, MSGL_INFO, MSGTR_LIBASS_ReadFailed, errno, strerror(errno)); |
18937 | 913 fclose(fp); |
914 free(buf); | |
915 return 0; | |
916 } | |
917 bytes_read += res; | |
918 } while (sz - bytes_read > 0); | |
919 buf[sz] = '\0'; | |
920 fclose(fp); | |
921 | |
20603 | 922 if (bufsize) |
923 *bufsize = sz; | |
19652
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19639
diff
changeset
|
924 return buf; |
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19639
diff
changeset
|
925 } |
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19639
diff
changeset
|
926 |
20603 | 927 /* |
928 * \param buf pointer to subtitle text in utf-8 | |
929 */ | |
930 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
|
931 { |
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19639
diff
changeset
|
932 ass_track_t* track; |
19905 | 933 int i; |
19652
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19639
diff
changeset
|
934 |
20477 | 935 track = ass_new_track(library); |
18937 | 936 |
937 // process header | |
19492 | 938 process_text(track, buf); |
939 | |
19905 | 940 // external SSA/ASS subs does not have ReadOrder field |
941 for (i = 0; i < track->n_events; ++i) | |
942 track->events[i].ReadOrder = i; | |
943 | |
19492 | 944 // there is no explicit end-of-font marker in ssa/ass |
945 if (track->parser_priv->fontname) | |
946 decode_font(track); | |
947 | |
948 if (track->track_type == TRACK_TYPE_UNKNOWN) { | |
18937 | 949 ass_free_track(track); |
950 return 0; | |
951 } | |
952 | |
19495 | 953 process_force_style(track); |
954 | |
20603 | 955 return track; |
956 } | |
957 | |
958 /** | |
959 * \brief Read subtitles from memory. | |
960 * \param library libass library object | |
961 * \param buf pointer to subtitles text | |
962 * \param bufsize size of buffer | |
963 * \param codepage recode buffer contents from given codepage | |
964 * \return newly allocated track | |
965 */ | |
966 ass_track_t* ass_read_memory(ass_library_t* library, char* buf, size_t bufsize, char* codepage) | |
967 { | |
968 ass_track_t* track; | |
969 int need_free = 0; | |
970 | |
971 if (!buf) | |
972 return 0; | |
973 | |
974 #ifdef USE_ICONV | |
975 if (codepage) | |
976 buf = sub_recode(buf, bufsize, codepage); | |
977 if (!buf) | |
978 return 0; | |
979 else | |
980 need_free = 1; | |
981 #endif | |
982 track = parse_memory(library, buf); | |
983 if (need_free) | |
984 free(buf); | |
985 if (!track) | |
986 return 0; | |
987 | |
21066 | 988 mp_msg(MSGT_ASS, MSGL_INFO, MSGTR_LIBASS_AddedSubtitleFileMemory, track->n_styles, track->n_events); |
20603 | 989 return track; |
990 } | |
991 | |
23424
7286d245bf33
Move code for reading a file and recoding it to utf-8 to a separate function.
eugeni
parents:
23300
diff
changeset
|
992 char* read_file_recode(char* fname, char* codepage, int* size) |
20603 | 993 { |
994 char* buf; | |
995 size_t bufsize; | |
996 | |
997 buf = read_file(fname, &bufsize); | |
998 if (!buf) | |
999 return 0; | |
1000 #ifdef USE_ICONV | |
1001 if (codepage) { | |
1002 char* tmpbuf = sub_recode(buf, bufsize, codepage); | |
1003 free(buf); | |
1004 buf = tmpbuf; | |
1005 } | |
1006 if (!buf) | |
1007 return 0; | |
1008 #endif | |
23424
7286d245bf33
Move code for reading a file and recoding it to utf-8 to a separate function.
eugeni
parents:
23300
diff
changeset
|
1009 *size = bufsize; |
7286d245bf33
Move code for reading a file and recoding it to utf-8 to a separate function.
eugeni
parents:
23300
diff
changeset
|
1010 return buf; |
7286d245bf33
Move code for reading a file and recoding it to utf-8 to a separate function.
eugeni
parents:
23300
diff
changeset
|
1011 } |
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 /** |
7286d245bf33
Move code for reading a file and recoding it to utf-8 to a separate function.
eugeni
parents:
23300
diff
changeset
|
1014 * \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
|
1015 * \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
|
1016 * \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
|
1017 * \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
|
1018 * \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
|
1019 */ |
7286d245bf33
Move code for reading a file and recoding it to utf-8 to a separate function.
eugeni
parents:
23300
diff
changeset
|
1020 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
|
1021 { |
7286d245bf33
Move code for reading a file and recoding it to utf-8 to a separate function.
eugeni
parents:
23300
diff
changeset
|
1022 char* buf; |
7286d245bf33
Move code for reading a file and recoding it to utf-8 to a separate function.
eugeni
parents:
23300
diff
changeset
|
1023 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
|
1024 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
|
1025 |
7286d245bf33
Move code for reading a file and recoding it to utf-8 to a separate function.
eugeni
parents:
23300
diff
changeset
|
1026 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
|
1027 if (!buf) |
7286d245bf33
Move code for reading a file and recoding it to utf-8 to a separate function.
eugeni
parents:
23300
diff
changeset
|
1028 return 0; |
20603 | 1029 track = parse_memory(library, buf); |
1030 free(buf); | |
1031 if (!track) | |
1032 return 0; | |
1033 | |
1034 track->name = strdup(fname); | |
1035 | |
21066 | 1036 mp_msg(MSGT_ASS, MSGL_INFO, MSGTR_LIBASS_AddedSubtitleFileFname, fname, track->n_styles, track->n_events); |
18937 | 1037 |
1038 // dump_events(forced_tid); | |
1039 return track; | |
1040 } | |
1041 | |
19652
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19639
diff
changeset
|
1042 /** |
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19639
diff
changeset
|
1043 * \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
|
1044 */ |
20477 | 1045 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
|
1046 { |
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19639
diff
changeset
|
1047 char* buf; |
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19639
diff
changeset
|
1048 parser_state_t old_state; |
20603 | 1049 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
|
1050 |
20603 | 1051 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
|
1052 if (!buf) |
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19639
diff
changeset
|
1053 return 1; |
20603 | 1054 #ifdef USE_ICONV |
1055 if (codepage) { | |
20698 | 1056 char* tmpbuf; |
20603 | 1057 tmpbuf = sub_recode(buf, sz, codepage); |
1058 free(buf); | |
1059 buf = tmpbuf; | |
1060 } | |
1061 if (!buf) | |
1062 return 0; | |
1063 #endif | |
19652
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 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
|
1066 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
|
1067 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
|
1068 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
|
1069 |
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19639
diff
changeset
|
1070 return 0; |
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19639
diff
changeset
|
1071 } |
2c016957360a
Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents:
19639
diff
changeset
|
1072 |
18937 | 1073 long long ass_step_sub(ass_track_t* track, long long now, int movement) { |
1074 int i; | |
1075 | |
1076 if (movement == 0) return 0; | |
1077 if (track->n_events == 0) return 0; | |
1078 | |
1079 if (movement < 0) | |
1080 for (i = 0; (i < track->n_events) && ((long long)(track->events[i].Start + track->events[i].Duration) <= now); ++i) {} | |
1081 else | |
1082 for (i = track->n_events - 1; (i >= 0) && ((long long)(track->events[i].Start) > now); --i) {} | |
1083 | |
1084 // -1 and n_events are ok | |
1085 assert(i >= -1); assert(i <= track->n_events); | |
1086 i += movement; | |
1087 if (i < 0) i = 0; | |
1088 if (i >= track->n_events) i = track->n_events - 1; | |
1089 return ((long long)track->events[i].Start) - now; | |
1090 } | |
1091 | |
20477 | 1092 ass_track_t* ass_new_track(ass_library_t* library) { |
18937 | 1093 ass_track_t* track = calloc(1, sizeof(ass_track_t)); |
20477 | 1094 track->library = library; |
19492 | 1095 track->parser_priv = calloc(1, sizeof(parser_priv_t)); |
18937 | 1096 return track; |
1097 } | |
1098 |