cleanup: Silence compilation warnings on MinGW-w64
[mplayer.git] / sub / subreader.c
blobf694f57a7c058aa9ce0108746e3c52d09409b5fd
1 /*
2 * Subtitle reader with format autodetection
4 * Copyright (c) 2001 laaz
5 * Some code cleanup & realloc() by A'rpi/ESP-team
7 * This file is part of MPlayer.
9 * MPlayer is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * MPlayer is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include <sys/types.h>
28 #include <dirent.h>
30 #include "config.h"
31 #include "mp_msg.h"
32 #include "subreader.h"
33 #include "mpcommon.h"
34 #include "subassconvert.h"
35 #include "options.h"
36 #include "stream/stream.h"
37 #include "libavutil/common.h"
38 #include "libavutil/avstring.h"
40 #ifdef CONFIG_ENCA
41 #include <enca.h>
42 #endif
44 #define ERR ((void *) -1)
46 #ifdef CONFIG_ICONV
47 #include <iconv.h>
48 char *sub_cp=NULL;
49 #endif
50 #ifdef CONFIG_FRIBIDI
51 #include <fribidi/fribidi.h>
52 char *fribidi_charset = NULL; ///character set that will be passed to FriBiDi
53 int flip_hebrew = 1; ///flip subtitles using fribidi
54 int fribidi_flip_commas = 0; ///flip comma when fribidi is used
55 #endif
57 // Parameter struct for the format-specific readline functions
58 struct readline_args {
59 int utf16;
60 struct MPOpts *opts;
63 /* Maximal length of line of a subtitle */
64 #define LINE_LEN 1000
65 static float mpsub_position=0;
66 static float mpsub_multiplier=1.;
67 static int sub_slacktime = 20000; //20 sec
69 int sub_no_text_pp=0; // 1 => do not apply text post-processing
70 // like {\...} elimination in SSA format.
72 int sub_match_fuzziness=0; // level of sub name matching fuzziness
74 /* Use the SUB_* constant defined in the header file */
75 int sub_format=SUB_INVALID;
76 #ifdef CONFIG_SORTSUB
78 Some subtitling formats, namely AQT and Subrip09, define the end of a
79 subtitle as the beginning of the following. Since currently we read one
80 subtitle at time, for these format we keep two global *subtitle,
81 previous_aqt_sub and previous_subrip09_sub, pointing to previous subtitle,
82 so we can change its end when we read current subtitle starting time.
83 When CONFIG_SORTSUB is defined, we use a single global unsigned long,
84 previous_sub_end, for both (and even future) formats, to store the end of
85 the previous sub: it is initialized to 0 in sub_read_file and eventually
86 modified by sub_read_aqt_line or sub_read_subrip09_line.
88 unsigned long previous_sub_end;
89 #endif
91 static int eol(char p) {
92 return p=='\r' || p=='\n' || p=='\0';
95 /* Remove leading and trailing space */
96 static void trail_space(char *s) {
97 int i = 0;
98 while (isspace(s[i])) ++i;
99 if (i) strcpy(s, s + i);
100 i = strlen(s) - 1;
101 while (i > 0 && isspace(s[i])) s[i--] = '\0';
104 static char *stristr(const char *haystack, const char *needle) {
105 int len = 0;
106 const char *p = haystack;
108 if (!(haystack && needle)) return NULL;
110 len=strlen(needle);
111 while (*p != '\0') {
112 if (strncasecmp(p, needle, len) == 0) return (char*)p;
113 p++;
116 return NULL;
119 static void sami_add_line(subtitle *current, char *buffer, char **pos) {
120 char *p = *pos;
121 *p = 0;
122 trail_space(buffer);
123 if (*buffer && current->lines < SUB_MAX_TEXT)
124 current->text[current->lines++] = strdup(buffer);
125 *pos = buffer;
128 static subtitle *sub_read_line_sami(stream_t* st, subtitle *current,
129 struct readline_args *args)
131 int utf16 = args->utf16;
132 static char line[LINE_LEN+1];
133 static char *s = NULL, *slacktime_s;
134 char text[LINE_LEN+1], *p=NULL, *q;
135 int state;
137 current->lines = current->start = current->end = 0;
138 current->alignment = SUB_ALIGNMENT_BOTTOMCENTER;
139 state = 0;
141 /* read the first line */
142 if (!s)
143 if (!(s = stream_read_line(st, line, LINE_LEN, utf16))) return 0;
145 do {
146 switch (state) {
148 case 0: /* find "START=" or "Slacktime:" */
149 slacktime_s = stristr (s, "Slacktime:");
150 if (slacktime_s)
151 sub_slacktime = strtol (slacktime_s+10, NULL, 0) / 10;
153 s = stristr (s, "Start=");
154 if (s) {
155 current->start = strtol (s + 6, &s, 0) / 10;
156 /* eat '>' */
157 for (; *s != '>' && *s != '\0'; s++);
158 s++;
159 state = 1; continue;
161 break;
163 case 1: /* find (optional) "<P", skip other TAGs */
164 for (; *s == ' ' || *s == '\t'; s++); /* strip blanks, if any */
165 if (*s == '\0') break;
166 if (*s != '<') { state = 3; p = text; continue; } /* not a TAG */
167 s++;
168 if (*s == 'P' || *s == 'p') { s++; state = 2; continue; } /* found '<P' */
169 for (; *s != '>' && *s != '\0'; s++); /* skip remains of non-<P> TAG */
170 if (s == '\0')
171 break;
172 s++;
173 continue;
175 case 2: /* find ">" */
176 if ((s = strchr (s, '>'))) { s++; state = 3; p = text; continue; }
177 break;
179 case 3: /* get all text until '<' appears */
180 if (p - text >= LINE_LEN)
181 sami_add_line(current, text, &p);
182 if (*s == '\0') break;
183 else if (!strncasecmp (s, "<br>", 4)) {
184 sami_add_line(current, text, &p);
185 s += 4;
187 else if ((*s == '{') && !sub_no_text_pp) { state = 5; ++s; continue; }
188 else if (*s == '<') { state = 4; }
189 else if (!strncasecmp (s, "&nbsp;", 6)) { *p++ = ' '; s += 6; }
190 else if (*s == '\t') { *p++ = ' '; s++; }
191 else if (*s == '\r' || *s == '\n') { s++; }
192 else *p++ = *s++;
194 /* skip duplicated space */
195 if (p > text + 2) if (*(p-1) == ' ' && *(p-2) == ' ') p--;
197 continue;
199 case 4: /* get current->end or skip <TAG> */
200 q = stristr (s, "Start=");
201 if (q) {
202 current->end = strtol (q + 6, &q, 0) / 10 - 1;
203 *p = '\0'; trail_space (text);
204 if (text[0] != '\0')
205 current->text[current->lines++] = strdup (text);
206 if (current->lines > 0) { state = 99; break; }
207 state = 0; continue;
209 s = strchr (s, '>');
210 if (s) { s++; state = 3; continue; }
211 break;
212 case 5: /* get rid of {...} text, but read the alignment code */
213 if ((*s == '\\') && (*(s + 1) == 'a') && !sub_no_text_pp) {
214 if (stristr(s, "\\a1") != NULL) {
215 current->alignment = SUB_ALIGNMENT_BOTTOMLEFT;
216 s = s + 3;
218 if (stristr(s, "\\a2") != NULL) {
219 current->alignment = SUB_ALIGNMENT_BOTTOMCENTER;
220 s = s + 3;
221 } else if (stristr(s, "\\a3") != NULL) {
222 current->alignment = SUB_ALIGNMENT_BOTTOMRIGHT;
223 s = s + 3;
224 } else if ((stristr(s, "\\a4") != NULL) || (stristr(s, "\\a5") != NULL) || (stristr(s, "\\a8") != NULL)) {
225 current->alignment = SUB_ALIGNMENT_TOPLEFT;
226 s = s + 3;
227 } else if (stristr(s, "\\a6") != NULL) {
228 current->alignment = SUB_ALIGNMENT_TOPCENTER;
229 s = s + 3;
230 } else if (stristr(s, "\\a7") != NULL) {
231 current->alignment = SUB_ALIGNMENT_TOPRIGHT;
232 s = s + 3;
233 } else if (stristr(s, "\\a9") != NULL) {
234 current->alignment = SUB_ALIGNMENT_MIDDLELEFT;
235 s = s + 3;
236 } else if (stristr(s, "\\a10") != NULL) {
237 current->alignment = SUB_ALIGNMENT_MIDDLECENTER;
238 s = s + 4;
239 } else if (stristr(s, "\\a11") != NULL) {
240 current->alignment = SUB_ALIGNMENT_MIDDLERIGHT;
241 s = s + 4;
244 if (*s == '}') state = 3;
245 ++s;
246 continue;
249 /* read next line */
250 if (state != 99 && !(s = stream_read_line (st, line, LINE_LEN, utf16))) {
251 if (current->start > 0) {
252 break; // if it is the last subtitle
253 } else {
254 return 0;
258 } while (state != 99);
260 // For the last subtitle
261 if (current->end <= 0) {
262 current->end = current->start + sub_slacktime;
263 sami_add_line(current, text, &p);
266 return current;
270 static char *sub_readtext(char *source, char **dest) {
271 int len=0;
272 char *p=source;
274 // printf("src=%p dest=%p \n",source,dest);
276 while ( !eol(*p) && *p!= '|' ) {
277 p++,len++;
280 *dest= malloc (len+1);
281 if (!dest) {return ERR;}
283 strncpy(*dest, source, len);
284 (*dest)[len]=0;
286 while (*p=='\r' || *p=='\n' || *p=='|') p++;
288 if (*p) return p; // not-last text field
289 else return NULL; // last text field
292 static subtitle *sub_read_line_microdvd(stream_t *st,subtitle *current,
293 struct readline_args *args)
295 int utf16 = args->utf16;
296 char line[LINE_LEN+1];
297 char line2[LINE_LEN+1];
298 char *p, *next;
299 int i;
301 do {
302 if (!stream_read_line (st, line, LINE_LEN, utf16)) return NULL;
303 } while ((sscanf (line,
304 "{%ld}{}%[^\r\n]",
305 &(current->start), line2) < 2) &&
306 (sscanf (line,
307 "{%ld}{%ld}%[^\r\n]",
308 &(current->start), &(current->end), line2) < 3));
310 if (args->opts->ass_enabled) {
311 subassconvert_microdvd(line2, line, LINE_LEN + 1);
312 p = line;
313 } else
314 p = line2;
316 next=p, i=0;
317 while ((next =sub_readtext (next, &(current->text[i])))) {
318 if (current->text[i]==ERR) {return ERR;}
319 i++;
320 if (i>=SUB_MAX_TEXT) { mp_msg(MSGT_SUBREADER,MSGL_WARN,"Too many lines in a subtitle\n");current->lines=i;return current;}
322 current->lines= ++i;
324 return current;
327 static subtitle *sub_read_line_mpl2(stream_t *st,subtitle *current,
328 struct readline_args *args)
330 int utf16 = args->utf16;
331 char line[LINE_LEN+1];
332 char line2[LINE_LEN+1];
333 char *p, *next;
334 int i;
336 do {
337 if (!stream_read_line (st, line, LINE_LEN, utf16)) return NULL;
338 } while ((sscanf (line,
339 "[%ld][%ld]%[^\r\n]",
340 &(current->start), &(current->end), line2) < 3));
341 current->start *= 10;
342 current->end *= 10;
343 p=line2;
345 next=p, i=0;
346 while ((next =sub_readtext (next, &(current->text[i])))) {
347 if (current->text[i]==ERR) {return ERR;}
348 i++;
349 if (i>=SUB_MAX_TEXT) { mp_msg(MSGT_SUBREADER,MSGL_WARN,"Too many lines in a subtitle\n");current->lines=i;return current;}
351 current->lines= ++i;
353 return current;
356 static subtitle *sub_read_line_subrip(stream_t* st, subtitle *current,
357 struct readline_args *args)
359 int utf16 = args->utf16;
360 char line[LINE_LEN+1];
361 int a1,a2,a3,a4,b1,b2,b3,b4;
362 char *p=NULL, *q=NULL;
363 int len;
365 while (1) {
366 if (!stream_read_line (st, line, LINE_LEN, utf16)) return NULL;
367 if (sscanf (line, "%d:%d:%d.%d,%d:%d:%d.%d",&a1,&a2,&a3,&a4,&b1,&b2,&b3,&b4) < 8) continue;
368 current->start = a1*360000+a2*6000+a3*100+a4;
369 current->end = b1*360000+b2*6000+b3*100+b4;
371 if (!stream_read_line (st, line, LINE_LEN, utf16)) return NULL;
373 p=q=line;
374 for (current->lines=1; current->lines < SUB_MAX_TEXT; current->lines++) {
375 for (q=p,len=0; *p && *p!='\r' && *p!='\n' && *p!='|' && strncmp(p,"[br]",4); p++,len++);
376 current->text[current->lines-1]=malloc (len+1);
377 if (!current->text[current->lines-1]) return ERR;
378 strncpy (current->text[current->lines-1], q, len);
379 current->text[current->lines-1][len]='\0';
380 if (!*p || *p=='\r' || *p=='\n') break;
381 if (*p=='|') p++;
382 else while (*p++!=']');
384 break;
386 return current;
389 static subtitle *sub_ass_read_line_subviewer(stream_t *st, subtitle *current,
390 struct readline_args *args)
392 int utf16 = args->utf16;
393 int a1, a2, a3, a4, b1, b2, b3, b4, j = 0;
395 while (!current->text[0]) {
396 char line[LINE_LEN + 1], full_line[LINE_LEN + 1], sep;
397 int i;
399 /* Parse SubRip header */
400 if (!stream_read_line(st, line, LINE_LEN, utf16))
401 return NULL;
402 if (sscanf(line, "%d:%d:%d%[,.:]%d --> %d:%d:%d%[,.:]%d",
403 &a1, &a2, &a3, &sep, &a4, &b1, &b2, &b3, &sep, &b4) < 10)
404 continue;
406 current->start = a1 * 360000 + a2 * 6000 + a3 * 100 + a4 / 10;
407 current->end = b1 * 360000 + b2 * 6000 + b3 * 100 + b4 / 10;
409 /* Concat lines */
410 full_line[0] = 0;
411 for (i = 0; i < SUB_MAX_TEXT; i++) {
412 int blank = 1, len = 0;
413 char *p;
415 if (!stream_read_line(st, line, LINE_LEN, utf16))
416 break;
418 for (p = line; *p != '\n' && *p != '\r' && *p; p++, len++)
419 if (*p != ' ' && *p != '\t')
420 blank = 0;
422 if (blank)
423 break;
425 *p = 0;
427 if (!(j + 1 + len < sizeof(full_line) - 1))
428 break;
430 if (j != 0)
431 full_line[j++] = '\n';
432 strcpy(&full_line[j], line);
433 j += len;
436 /* Use the ASS/SSA converter to transform the whole lines */
437 if (full_line[0]) {
438 char converted_line[LINE_LEN + 1];
439 subassconvert_subrip(full_line, converted_line, LINE_LEN + 1);
440 current->text[0] = strdup(converted_line);
441 current->lines = 1;
444 return current;
447 static subtitle *sub_read_line_subviewer(stream_t *st,subtitle *current,
448 struct readline_args *args)
450 int utf16 = args->utf16;
451 char line[LINE_LEN+1];
452 int a1,a2,a3,a4,b1,b2,b3,b4;
453 char *p=NULL;
454 int i,len;
456 if (args->opts->ass_enabled)
457 return sub_ass_read_line_subviewer(st, current, args);
458 while (!current->text[0]) {
459 if (!stream_read_line (st, line, LINE_LEN, utf16)) return NULL;
460 if ((len=sscanf (line, "%d:%d:%d%[,.:]%d --> %d:%d:%d%[,.:]%d",&a1,&a2,&a3,(char *)&i,&a4,&b1,&b2,&b3,(char *)&i,&b4)) < 10)
461 continue;
462 current->start = a1*360000+a2*6000+a3*100+a4/10;
463 current->end = b1*360000+b2*6000+b3*100+b4/10;
464 for (i=0; i<SUB_MAX_TEXT;) {
465 int blank = 1;
466 if (!stream_read_line (st, line, LINE_LEN, utf16)) break;
467 len=0;
468 for (p=line; *p!='\n' && *p!='\r' && *p; p++,len++)
469 if (*p != ' ' && *p != '\t')
470 blank = 0;
471 if (len && !blank) {
472 int j=0,skip=0;
473 char *curptr=current->text[i]=malloc (len+1);
474 if (!current->text[i]) return ERR;
475 //strncpy (current->text[i], line, len); current->text[i][len]='\0';
476 for(; j<len; j++) {
477 /* let's filter html tags ::atmos */
478 if(line[j]=='>') {
479 skip=0;
480 continue;
482 if(line[j]=='<') {
483 skip=1;
484 continue;
486 if(skip) {
487 continue;
489 *curptr=line[j];
490 curptr++;
492 *curptr='\0';
494 i++;
495 } else {
496 break;
499 current->lines=i;
501 return current;
504 static subtitle *sub_read_line_subviewer2(stream_t *st,subtitle *current,
505 struct readline_args *args)
507 int utf16 = args->utf16;
508 char line[LINE_LEN+1];
509 int a1,a2,a3,a4;
510 char *p=NULL;
511 int i,len;
513 while (!current->text[0]) {
514 if (!stream_read_line (st, line, LINE_LEN, utf16)) return NULL;
515 if (line[0]!='{')
516 continue;
517 if ((len=sscanf (line, "{T %d:%d:%d:%d",&a1,&a2,&a3,&a4)) < 4)
518 continue;
519 current->start = a1*360000+a2*6000+a3*100+a4/10;
520 for (i=0; i<SUB_MAX_TEXT;) {
521 if (!stream_read_line (st, line, LINE_LEN, utf16)) break;
522 if (line[0]=='}') break;
523 len=0;
524 for (p=line; *p!='\n' && *p!='\r' && *p; ++p,++len);
525 if (len) {
526 current->text[i]=malloc (len+1);
527 if (!current->text[i]) return ERR;
528 strncpy (current->text[i], line, len); current->text[i][len]='\0';
529 ++i;
530 } else {
531 break;
534 current->lines=i;
536 return current;
540 static subtitle *sub_read_line_vplayer(stream_t *st,subtitle *current,
541 struct readline_args *args)
543 int utf16 = args->utf16;
544 char line[LINE_LEN+1];
545 int a1,a2,a3;
546 char *p=NULL, *next,separator;
547 int i,len,plen;
549 while (!current->text[0]) {
550 if (!stream_read_line (st, line, LINE_LEN, utf16)) return NULL;
551 if ((len=sscanf (line, "%d:%d:%d%c%n",&a1,&a2,&a3,&separator,&plen)) < 4)
552 continue;
554 if (!(current->start = a1*360000+a2*6000+a3*100))
555 continue;
556 /* removed by wodzu
557 p=line;
558 // finds the body of the subtitle
559 for (i=0; i<3; i++){
560 p=strchr(p,':');
561 if (p==NULL) break;
562 ++p;
564 if (p==NULL) {
565 printf("SUB: Skipping incorrect subtitle line!\n");
566 continue;
569 // by wodzu: hey! this time we know what length it has! what is
570 // that magic for? it can't deal with space instead of third
571 // colon! look, what simple it can be:
572 p = &line[ plen ];
574 i=0;
575 if (*p!='|') {
577 next = p,i=0;
578 while ((next =sub_readtext (next, &(current->text[i])))) {
579 if (current->text[i]==ERR) {return ERR;}
580 i++;
581 if (i>=SUB_MAX_TEXT) { mp_msg(MSGT_SUBREADER,MSGL_WARN,"Too many lines in a subtitle\n");current->lines=i;return current;}
583 current->lines=i+1;
586 return current;
589 static subtitle *sub_read_line_rt(stream_t *st,subtitle *current,
590 struct readline_args *args)
592 int utf16 = args->utf16;
594 //TODO: This format uses quite rich (sub/super)set of xhtml
595 // I couldn't check it since DTD is not included.
596 // WARNING: full XML parses can be required for proper parsing
597 char line[LINE_LEN+1];
598 int a1,a2,a3,a4,b1,b2,b3,b4;
599 char *p=NULL,*next=NULL;
600 int i,len,plen;
602 while (!current->text[0]) {
603 if (!stream_read_line (st, line, LINE_LEN, utf16)) return NULL;
604 //TODO: it seems that format of time is not easily determined, it may be 1:12, 1:12.0 or 0:1:12.0
605 //to describe the same moment in time. Maybe there are even more formats in use.
606 //if ((len=sscanf (line, "<Time Begin=\"%d:%d:%d.%d\" End=\"%d:%d:%d.%d\"",&a1,&a2,&a3,&a4,&b1,&b2,&b3,&b4)) < 8)
607 plen=a1=a2=a3=a4=b1=b2=b3=b4=0;
608 if (
609 ((len=sscanf (line, "<%*[tT]ime %*[bB]egin=\"%d.%d\" %*[Ee]nd=\"%d.%d\"%*[^<]<clear/>%n",&a3,&a4,&b3,&b4,&plen)) < 4) &&
610 ((len=sscanf (line, "<%*[tT]ime %*[bB]egin=\"%d.%d\" %*[Ee]nd=\"%d:%d.%d\"%*[^<]<clear/>%n",&a3,&a4,&b2,&b3,&b4,&plen)) < 5) &&
611 ((len=sscanf (line, "<%*[tT]ime %*[bB]egin=\"%d:%d\" %*[Ee]nd=\"%d:%d\"%*[^<]<clear/>%n",&a2,&a3,&b2,&b3,&plen)) < 4) &&
612 ((len=sscanf (line, "<%*[tT]ime %*[bB]egin=\"%d:%d\" %*[Ee]nd=\"%d:%d.%d\"%*[^<]<clear/>%n",&a2,&a3,&b2,&b3,&b4,&plen)) < 5) &&
613 // ((len=sscanf (line, "<%*[tT]ime %*[bB]egin=\"%d:%d.%d\" %*[Ee]nd=\"%d:%d\"%*[^<]<clear/>%n",&a2,&a3,&a4,&b2,&b3,&plen)) < 5) &&
614 ((len=sscanf (line, "<%*[tT]ime %*[bB]egin=\"%d:%d.%d\" %*[Ee]nd=\"%d:%d.%d\"%*[^<]<clear/>%n",&a2,&a3,&a4,&b2,&b3,&b4,&plen)) < 6) &&
615 ((len=sscanf (line, "<%*[tT]ime %*[bB]egin=\"%d:%d:%d.%d\" %*[Ee]nd=\"%d:%d:%d.%d\"%*[^<]<clear/>%n",&a1,&a2,&a3,&a4,&b1,&b2,&b3,&b4,&plen)) < 8) &&
616 //now try it without end time
617 ((len=sscanf (line, "<%*[tT]ime %*[bB]egin=\"%d.%d\"%*[^<]<clear/>%n",&a3,&a4,&plen)) < 2) &&
618 ((len=sscanf (line, "<%*[tT]ime %*[bB]egin=\"%d:%d\"%*[^<]<clear/>%n",&a2,&a3,&plen)) < 2) &&
619 ((len=sscanf (line, "<%*[tT]ime %*[bB]egin=\"%d:%d.%d\"%*[^<]<clear/>%n",&a2,&a3,&a4,&plen)) < 3) &&
620 ((len=sscanf (line, "<%*[tT]ime %*[bB]egin=\"%d:%d:%d.%d\"%*[^<]<clear/>%n",&a1,&a2,&a3,&a4,&plen)) < 4)
622 continue;
623 current->start = a1*360000+a2*6000+a3*100+a4/10;
624 current->end = b1*360000+b2*6000+b3*100+b4/10;
625 if (b1 == 0 && b2 == 0 && b3 == 0 && b4 == 0)
626 current->end = current->start+200;
627 p=line; p+=plen;i=0;
628 // TODO: I don't know what kind of convention is here for marking multiline subs, maybe <br/> like in xml?
629 next = strstr(line,"<clear/>");
630 if(next && strlen(next)>8){
631 next+=8;i=0;
632 while ((next =sub_readtext (next, &(current->text[i])))) {
633 if (current->text[i]==ERR) {return ERR;}
634 i++;
635 if (i>=SUB_MAX_TEXT) { mp_msg(MSGT_SUBREADER,MSGL_WARN,"Too many lines in a subtitle\n");current->lines=i;return current;}
638 current->lines=i+1;
640 return current;
643 static subtitle *sub_read_line_ssa(stream_t *st,subtitle *current,
644 struct readline_args *args)
647 * Sub Station Alpha v4 (and v2?) scripts have 9 commas before subtitle
648 * other Sub Station Alpha scripts have only 8 commas before subtitle
649 * Reading the "ScriptType:" field is not reliable since many scripts appear
650 * w/o it
652 * http://www.scriptclub.org is a good place to find more examples
653 * http://www.eswat.demon.co.uk is where the SSA specs can be found
655 int utf16 = args->utf16;
656 int comma;
657 static int max_comma = 32; /* let's use 32 for the case that the */
658 /* amount of commas increase with newer SSA versions */
660 int hour1, min1, sec1, hunsec1,
661 hour2, min2, sec2, hunsec2, nothing;
662 int num;
664 char line[LINE_LEN+1],
665 line3[LINE_LEN+1],
666 *line2;
667 char *tmp;
669 do {
670 if (!stream_read_line (st, line, LINE_LEN, utf16)) return NULL;
671 } while (sscanf (line, "Dialogue: Marked=%d,%d:%d:%d.%d,%d:%d:%d.%d"
672 "%[^\n\r]", &nothing,
673 &hour1, &min1, &sec1, &hunsec1,
674 &hour2, &min2, &sec2, &hunsec2,
675 line3) < 9
677 sscanf (line, "Dialogue: %d,%d:%d:%d.%d,%d:%d:%d.%d"
678 "%[^\n\r]", &nothing,
679 &hour1, &min1, &sec1, &hunsec1,
680 &hour2, &min2, &sec2, &hunsec2,
681 line3) < 9 );
683 line2=strchr(line3, ',');
684 if (!line2) return NULL;
686 for (comma = 4; comma < max_comma; comma ++)
688 tmp = line2;
689 if(!(tmp=strchr(++tmp, ','))) break;
690 if(*(++tmp) == ' ') break;
691 /* a space after a comma means we're already in a sentence */
692 line2 = tmp;
695 if(comma < max_comma)max_comma = comma;
696 /* eliminate the trailing comma */
697 if(*line2 == ',') line2++;
699 current->lines=0;num=0;
700 current->start = 360000*hour1 + 6000*min1 + 100*sec1 + hunsec1;
701 current->end = 360000*hour2 + 6000*min2 + 100*sec2 + hunsec2;
703 while (((tmp=strstr(line2, "\\n")) != NULL) || ((tmp=strstr(line2, "\\N")) != NULL) ){
704 current->text[num]=malloc(tmp-line2+1);
705 strncpy (current->text[num], line2, tmp-line2);
706 current->text[num][tmp-line2]='\0';
707 line2=tmp+2;
708 num++;
709 current->lines++;
710 if (current->lines >= SUB_MAX_TEXT) return current;
713 current->text[num]=strdup(line2);
714 current->lines++;
716 return current;
719 static void sub_pp_ssa(subtitle *sub) {
720 int l=sub->lines;
721 char *so,*de,*start;
723 while (l){
724 /* eliminate any text enclosed with {}, they are font and color settings */
725 so=de=sub->text[--l];
726 while (*so) {
727 if(*so == '{' && so[1]=='\\') {
728 for (start=so; *so && *so!='}'; so++);
729 if(*so) so++; else so=start;
731 if(*so) {
732 *de=*so;
733 so++; de++;
736 *de=*so;
741 * PJS subtitles reader.
742 * That's the "Phoenix Japanimation Society" format.
743 * I found some of them in http://www.scriptsclub.org/ (used for anime).
744 * The time is in tenths of second.
746 * by set, based on code by szabi (dunnowhat sub format ;-)
748 static subtitle *sub_read_line_pjs(stream_t *st,subtitle *current,
749 struct readline_args *args)
751 int utf16 = args->utf16;
752 char line[LINE_LEN+1];
753 char text[LINE_LEN+1], *s, *d;
755 if (!stream_read_line (st, line, LINE_LEN, utf16))
756 return NULL;
757 /* skip spaces */
758 for (s=line; *s && isspace(*s); s++);
759 /* allow empty lines at the end of the file */
760 if (*s==0)
761 return NULL;
762 /* get the time */
763 if (sscanf (s, "%ld,%ld,", &(current->start),
764 &(current->end)) <2) {
765 return ERR;
767 /* the files I have are in tenths of second */
768 current->start *= 10;
769 current->end *= 10;
770 /* walk to the beggining of the string */
771 for (; *s; s++) if (*s==',') break;
772 if (*s) {
773 for (s++; *s; s++) if (*s==',') break;
774 if (*s) s++;
776 if (*s!='"') {
777 return ERR;
779 /* copy the string to the text buffer */
780 for (s++, d=text; *s && *s!='"'; s++, d++)
781 *d=*s;
782 *d=0;
783 current->text[0] = strdup(text);
784 current->lines = 1;
786 return current;
789 static subtitle *sub_read_line_mpsub(stream_t *st, subtitle *current,
790 struct readline_args *args)
792 int utf16 = args->utf16;
793 char line[LINE_LEN+1];
794 float a,b;
795 int num=0;
796 char *p, *q;
800 if (!stream_read_line(st, line, LINE_LEN, utf16)) return NULL;
801 } while (sscanf (line, "%f %f", &a, &b) !=2);
803 mpsub_position += a*mpsub_multiplier;
804 current->start=(int) mpsub_position;
805 mpsub_position += b*mpsub_multiplier;
806 current->end=(int) mpsub_position;
808 while (num < SUB_MAX_TEXT) {
809 if (!stream_read_line (st, line, LINE_LEN, utf16)) {
810 if (num == 0) return NULL;
811 else return current;
813 p=line;
814 while (isspace(*p)) p++;
815 if (eol(*p) && num > 0) return current;
816 if (eol(*p)) return NULL;
818 for (q=p; !eol(*q); q++);
819 *q='\0';
820 if (strlen(p)) {
821 current->text[num]=strdup(p);
822 // printf (">%s<\n",p);
823 current->lines = ++num;
824 } else {
825 if (num) return current;
826 else return NULL;
829 return NULL; // we should have returned before if it's OK
832 #ifndef CONFIG_SORTSUB
833 //we don't need this if we use previous_sub_end
834 subtitle *previous_aqt_sub = NULL;
835 #endif
837 static subtitle *sub_read_line_aqt(stream_t *st,subtitle *current,
838 struct readline_args *args)
840 int utf16 = args->utf16;
841 char line[LINE_LEN+1];
842 char *next;
843 int i;
845 while (1) {
846 // try to locate next subtitle
847 if (!stream_read_line (st, line, LINE_LEN, utf16))
848 return NULL;
849 if (!(sscanf (line, "-->> %ld", &(current->start)) <1))
850 break;
853 #ifdef CONFIG_SORTSUB
854 previous_sub_end = (current->start) ? current->start - 1 : 0;
855 #else
856 if (previous_aqt_sub != NULL)
857 previous_aqt_sub->end = current->start-1;
859 previous_aqt_sub = current;
860 #endif
862 if (!stream_read_line (st, line, LINE_LEN, utf16))
863 return NULL;
865 sub_readtext((char *) &line,&current->text[0]);
866 current->lines = 1;
867 current->end = current->start; // will be corrected by next subtitle
869 if (!stream_read_line (st, line, LINE_LEN, utf16))
870 return current;
872 next = line,i=1;
873 while ((next =sub_readtext (next, &(current->text[i])))) {
874 if (current->text[i]==ERR) {return ERR;}
875 i++;
876 if (i>=SUB_MAX_TEXT) { mp_msg(MSGT_SUBREADER,MSGL_WARN,"Too many lines in a subtitle\n");current->lines=i;return current;}
878 current->lines=i+1;
880 if (!strlen(current->text[0]) && !strlen(current->text[1])) {
881 #ifdef CONFIG_SORTSUB
882 previous_sub_end = 0;
883 #else
884 // void subtitle -> end of previous marked and exit
885 previous_aqt_sub = NULL;
886 #endif
887 return NULL;
890 return current;
893 #ifndef CONFIG_SORTSUB
894 subtitle *previous_subrip09_sub = NULL;
895 #endif
897 static subtitle *sub_read_line_subrip09(stream_t *st,subtitle *current,
898 struct readline_args *args)
900 int utf16 = args->utf16;
901 char line[LINE_LEN+1];
902 int a1,a2,a3;
903 char * next=NULL;
904 int i,len;
906 while (1) {
907 // try to locate next subtitle
908 if (!stream_read_line (st, line, LINE_LEN, utf16))
909 return NULL;
910 if (!((len=sscanf (line, "[%d:%d:%d]",&a1,&a2,&a3)) < 3))
911 break;
914 current->start = a1*360000+a2*6000+a3*100;
916 #ifdef CONFIG_SORTSUB
917 previous_sub_end = (current->start) ? current->start - 1 : 0;
918 #else
919 if (previous_subrip09_sub != NULL)
920 previous_subrip09_sub->end = current->start-1;
922 previous_subrip09_sub = current;
923 #endif
925 if (!stream_read_line (st, line, LINE_LEN, utf16))
926 return NULL;
928 next = line,i=0;
930 current->text[0]=""; // just to be sure that string is clear
932 while ((next =sub_readtext (next, &(current->text[i])))) {
933 if (current->text[i]==ERR) {return ERR;}
934 i++;
935 if (i>=SUB_MAX_TEXT) { mp_msg(MSGT_SUBREADER,MSGL_WARN,"Too many lines in a subtitle\n");current->lines=i;return current;}
937 current->lines=i+1;
939 if (!strlen(current->text[0]) && (i==0)) {
940 #ifdef CONFIG_SORTSUB
941 previous_sub_end = 0;
942 #else
943 // void subtitle -> end of previous marked and exit
944 previous_subrip09_sub = NULL;
945 #endif
946 return NULL;
949 return current;
952 static subtitle *sub_read_line_jacosub(stream_t* st, subtitle * current,
953 struct readline_args *args)
955 int utf16 = args->utf16;
956 char line1[LINE_LEN], line2[LINE_LEN], directive[LINE_LEN], *p, *q;
957 unsigned a1, a2, a3, a4, b1, b2, b3, b4, comment = 0;
958 static unsigned jacoTimeres = 30;
959 static int jacoShift = 0;
961 memset(current, 0, sizeof(subtitle));
962 memset(line1, 0, LINE_LEN);
963 memset(line2, 0, LINE_LEN);
964 memset(directive, 0, LINE_LEN);
965 while (!current->text[0]) {
966 if (!stream_read_line(st, line1, LINE_LEN, utf16)) {
967 return NULL;
969 if (sscanf
970 (line1, "%u:%u:%u.%u %u:%u:%u.%u %[^\n\r]", &a1, &a2, &a3, &a4,
971 &b1, &b2, &b3, &b4, line2) < 9) {
972 if (sscanf(line1, "@%u @%u %[^\n\r]", &a4, &b4, line2) < 3) {
973 if (line1[0] == '#') {
974 int hours = 0, minutes = 0, seconds, delta, inverter =
976 unsigned units = jacoShift;
977 switch (toupper(line1[1])) {
978 case 'S':
979 if (isalpha(line1[2])) {
980 delta = 6;
981 } else {
982 delta = 2;
984 if (sscanf(&line1[delta], "%d", &hours)) {
985 if (hours < 0) {
986 hours *= -1;
987 inverter = -1;
989 if (sscanf(&line1[delta], "%*d:%d", &minutes)) {
990 if (sscanf
991 (&line1[delta], "%*d:%*d:%d",
992 &seconds)) {
993 sscanf(&line1[delta], "%*d:%*d:%*d.%d",
994 &units);
995 } else {
996 hours = 0;
997 sscanf(&line1[delta], "%d:%d.%d",
998 &minutes, &seconds, &units);
999 minutes *= inverter;
1001 } else {
1002 hours = minutes = 0;
1003 sscanf(&line1[delta], "%d.%d", &seconds,
1004 &units);
1005 seconds *= inverter;
1007 jacoShift =
1008 ((hours * 3600 + minutes * 60 +
1009 seconds) * jacoTimeres +
1010 units) * inverter;
1012 break;
1013 case 'T':
1014 if (isalpha(line1[2])) {
1015 delta = 8;
1016 } else {
1017 delta = 2;
1019 sscanf(&line1[delta], "%u", &jacoTimeres);
1020 break;
1023 continue;
1024 } else {
1025 current->start =
1026 (unsigned long) ((a4 + jacoShift) * 100.0 /
1027 jacoTimeres);
1028 current->end =
1029 (unsigned long) ((b4 + jacoShift) * 100.0 /
1030 jacoTimeres);
1032 } else {
1033 current->start =
1034 (unsigned
1035 long) (((a1 * 3600 + a2 * 60 + a3) * jacoTimeres + a4 +
1036 jacoShift) * 100.0 / jacoTimeres);
1037 current->end =
1038 (unsigned
1039 long) (((b1 * 3600 + b2 * 60 + b3) * jacoTimeres + b4 +
1040 jacoShift) * 100.0 / jacoTimeres);
1042 current->lines = 0;
1043 p = line2;
1044 while ((*p == ' ') || (*p == '\t')) {
1045 ++p;
1047 if (isalpha(*p)||*p == '[') {
1048 int cont, jLength;
1050 if (sscanf(p, "%s %[^\n\r]", directive, line1) < 2)
1051 return (subtitle *) ERR;
1052 jLength = strlen(directive);
1053 for (cont = 0; cont < jLength; ++cont) {
1054 if (isalpha(*(directive + cont)))
1055 *(directive + cont) = toupper(*(directive + cont));
1057 if ((strstr(directive, "RDB") != NULL)
1058 || (strstr(directive, "RDC") != NULL)
1059 || (strstr(directive, "RLB") != NULL)
1060 || (strstr(directive, "RLG") != NULL)) {
1061 continue;
1063 if (strstr(directive, "JL") != NULL) {
1064 current->alignment = SUB_ALIGNMENT_BOTTOMLEFT;
1065 } else if (strstr(directive, "JR") != NULL) {
1066 current->alignment = SUB_ALIGNMENT_BOTTOMRIGHT;
1067 } else {
1068 current->alignment = SUB_ALIGNMENT_BOTTOMCENTER;
1070 strcpy(line2, line1);
1071 p = line2;
1073 for (q = line1; (!eol(*p)) && (current->lines < SUB_MAX_TEXT); ++p) {
1074 switch (*p) {
1075 case '{':
1076 comment++;
1077 break;
1078 case '}':
1079 if (comment) {
1080 --comment;
1081 //the next line to get rid of a blank after the comment
1082 if ((*(p + 1)) == ' ')
1083 p++;
1085 break;
1086 case '~':
1087 if (!comment) {
1088 *q = ' ';
1089 ++q;
1091 break;
1092 case ' ':
1093 case '\t':
1094 if ((*(p + 1) == ' ') || (*(p + 1) == '\t'))
1095 break;
1096 if (!comment) {
1097 *q = ' ';
1098 ++q;
1100 break;
1101 case '\\':
1102 if (*(p + 1) == 'n') {
1103 *q = '\0';
1104 q = line1;
1105 current->text[current->lines++] = strdup(line1);
1106 ++p;
1107 break;
1109 if ((toupper(*(p + 1)) == 'C')
1110 || (toupper(*(p + 1)) == 'F')) {
1111 ++p,++p;
1112 break;
1114 if ((*(p + 1) == 'B') || (*(p + 1) == 'b') || (*(p + 1) == 'D') || //actually this means "insert current date here"
1115 (*(p + 1) == 'I') || (*(p + 1) == 'i') || (*(p + 1) == 'N') || (*(p + 1) == 'T') || //actually this means "insert current time here"
1116 (*(p + 1) == 'U') || (*(p + 1) == 'u')) {
1117 ++p;
1118 break;
1120 if ((*(p + 1) == '\\') ||
1121 (*(p + 1) == '~') || (*(p + 1) == '{')) {
1122 ++p;
1123 } else if (eol(*(p + 1))) {
1124 if (!stream_read_line(st, directive, LINE_LEN, utf16))
1125 return NULL;
1126 trail_space(directive);
1127 av_strlcat(line2, directive, LINE_LEN);
1128 break;
1130 default:
1131 if (!comment) {
1132 *q = *p;
1133 ++q;
1135 } //-- switch
1136 } //-- for
1137 *q = '\0';
1138 current->text[current->lines] = strdup(line1);
1139 } //-- while
1140 current->lines++;
1141 return current;
1144 static int sub_autodetect (stream_t* st, int *uses_time, int utf16) {
1145 char line[LINE_LEN+1];
1146 int i,j=0;
1148 while (j < 100) {
1149 j++;
1150 if (!stream_read_line (st, line, LINE_LEN, utf16))
1151 return SUB_INVALID;
1153 if (sscanf (line, "{%d}{%d}", &i, &i)==2)
1154 {*uses_time=0;return SUB_MICRODVD;}
1155 if (sscanf (line, "{%d}{}", &i)==1)
1156 {*uses_time=0;return SUB_MICRODVD;}
1157 if (sscanf (line, "[%d][%d]", &i, &i)==2)
1158 {*uses_time=1;return SUB_MPL2;}
1159 if (sscanf (line, "%d:%d:%d.%d,%d:%d:%d.%d", &i, &i, &i, &i, &i, &i, &i, &i)==8)
1160 {*uses_time=1;return SUB_SUBRIP;}
1161 if (sscanf (line, "%d:%d:%d%[,.:]%d --> %d:%d:%d%[,.:]%d", &i, &i, &i, (char *)&i, &i, &i, &i, &i, (char *)&i, &i)==10)
1162 {*uses_time=1;return SUB_SUBVIEWER;}
1163 if (sscanf (line, "{T %d:%d:%d:%d",&i, &i, &i, &i)==4)
1164 {*uses_time=1;return SUB_SUBVIEWER2;}
1165 if (strstr (line, "<SAMI>"))
1166 {*uses_time=1; return SUB_SAMI;}
1167 if (sscanf(line, "%d:%d:%d.%d %d:%d:%d.%d", &i, &i, &i, &i, &i, &i, &i, &i) == 8)
1168 {*uses_time = 1; return SUB_JACOSUB;}
1169 if (sscanf(line, "@%d @%d", &i, &i) == 2)
1170 {*uses_time = 1; return SUB_JACOSUB;}
1171 if (sscanf (line, "%d:%d:%d:", &i, &i, &i )==3)
1172 {*uses_time=1;return SUB_VPLAYER;}
1173 if (sscanf (line, "%d:%d:%d ", &i, &i, &i )==3)
1174 {*uses_time=1;return SUB_VPLAYER;}
1175 if (!strncasecmp(line, "<window", 7))
1176 {*uses_time=1;return SUB_RT;}
1177 if (!memcmp(line, "Dialogue: Marked", 16))
1178 {*uses_time=1; return SUB_SSA;}
1179 if (!memcmp(line, "Dialogue: ", 10))
1180 {*uses_time=1; return SUB_SSA;}
1181 if (sscanf (line, "%d,%d,\"%c", &i, &i, (char *) &i) == 3)
1182 {*uses_time=1;return SUB_PJS;}
1183 if (sscanf (line, "FORMAT=%d", &i) == 1)
1184 {*uses_time=0; return SUB_MPSUB;}
1185 if (!memcmp(line, "FORMAT=TIME", 11))
1186 {*uses_time=1; return SUB_MPSUB;}
1187 if (strstr (line, "-->>"))
1188 {*uses_time=0; return SUB_AQTITLE;}
1189 if (sscanf (line, "[%d:%d:%d]", &i, &i, &i)==3)
1190 {*uses_time=1;return SUB_SUBRIP09;}
1193 return SUB_INVALID; // too many bad lines
1196 extern int sub_utf8;
1197 int sub_utf8_prev=0;
1199 extern float sub_delay;
1200 extern float sub_fps;
1202 #ifdef CONFIG_ICONV
1203 static iconv_t icdsc = (iconv_t)(-1);
1205 void subcp_open (stream_t *st)
1207 char *tocp = "UTF-8";
1209 if (sub_cp){
1210 const char *cp_tmp = sub_cp;
1211 #ifdef CONFIG_ENCA
1212 char enca_lang[3], enca_fallback[100];
1213 if (sscanf(sub_cp, "enca:%2s:%99s", enca_lang, enca_fallback) == 2
1214 || sscanf(sub_cp, "ENCA:%2s:%99s", enca_lang, enca_fallback) == 2) {
1215 if (st && st->flags & MP_STREAM_SEEK ) {
1216 cp_tmp = guess_cp(st, enca_lang, enca_fallback);
1217 } else {
1218 cp_tmp = enca_fallback;
1219 if (st)
1220 mp_msg(MSGT_SUBREADER,MSGL_WARN,"SUB: enca failed, stream must be seekable.\n");
1223 #endif
1224 if ((icdsc = iconv_open (tocp, cp_tmp)) != (iconv_t)(-1)){
1225 mp_msg(MSGT_SUBREADER,MSGL_V,"SUB: opened iconv descriptor.\n");
1226 sub_utf8 = 2;
1227 } else
1228 mp_msg(MSGT_SUBREADER,MSGL_ERR,"SUB: error opening iconv descriptor.\n");
1232 void subcp_close (void)
1234 if (icdsc != (iconv_t)(-1)){
1235 (void) iconv_close (icdsc);
1236 icdsc = (iconv_t)(-1);
1237 mp_msg(MSGT_SUBREADER,MSGL_V,"SUB: closed iconv descriptor.\n");
1241 subtitle* subcp_recode (subtitle *sub)
1243 int l=sub->lines;
1244 size_t ileft, oleft;
1245 char *op, *ip, *ot;
1246 if(icdsc == (iconv_t)(-1)) return sub;
1248 while (l){
1249 ip = sub->text[--l];
1250 ileft = strlen(ip);
1251 oleft = 4 * ileft;
1253 if (!(ot = malloc(oleft + 1))){
1254 mp_msg(MSGT_SUBREADER,MSGL_WARN,"SUB: error allocating mem.\n");
1255 continue;
1257 op = ot;
1258 if (iconv(icdsc, &ip, &ileft,
1259 &op, &oleft) == (size_t)(-1)) {
1260 mp_msg(MSGT_SUBREADER,MSGL_WARN,"SUB: error recoding line.\n");
1261 free(ot);
1262 continue;
1264 // In some stateful encodings, we must clear the state to handle the last character
1265 if (iconv(icdsc, NULL, NULL,
1266 &op, &oleft) == (size_t)(-1)) {
1267 mp_msg(MSGT_SUBREADER,MSGL_WARN,"SUB: error recoding line, can't clear encoding state.\n");
1269 *op='\0' ;
1270 free (sub->text[l]);
1271 sub->text[l] = ot;
1273 return sub;
1275 #endif
1277 #ifdef CONFIG_FRIBIDI
1279 * Do conversion necessary for right-to-left language support via fribidi.
1280 * @param sub subtitle to convert
1281 * @param sub_utf8 whether the subtitle is encoded in UTF-8
1282 * @param from first new subtitle, all lines before this are assumed to be already converted
1284 static subtitle* sub_fribidi (subtitle *sub, int sub_utf8, int from)
1286 FriBidiChar logical[LINE_LEN+1], visual[LINE_LEN+1]; // Hopefully these two won't smash the stack
1287 char *ip = NULL, *op = NULL;
1288 size_t len,orig_len;
1289 int l=sub->lines;
1290 int char_set_num;
1291 fribidi_boolean log2vis;
1292 if (!flip_hebrew)
1293 return sub;
1294 fribidi_set_mirroring(1);
1295 fribidi_set_reorder_nsm(0);
1297 if( sub_utf8 == 0 ) {
1298 char_set_num = fribidi_parse_charset (fribidi_charset?fribidi_charset:"ISO8859-8");
1299 }else {
1300 char_set_num = fribidi_parse_charset ("UTF-8");
1302 while (l > from) {
1303 ip = sub->text[--l];
1304 orig_len = len = strlen( ip ); // We assume that we don't use full unicode, only UTF-8 or ISO8859-x
1305 if(len > LINE_LEN) {
1306 mp_msg(MSGT_SUBREADER,MSGL_WARN,"SUB: sub->text is longer than LINE_LEN.\n");
1307 l++;
1308 break;
1310 len = fribidi_charset_to_unicode (char_set_num, ip, len, logical);
1311 #if FRIBIDI_INTERFACE_VERSION < 3
1312 FriBidiCharType base = fribidi_flip_commas?FRIBIDI_TYPE_ON:FRIBIDI_TYPE_L;
1313 #else
1314 FriBidiParType base = fribidi_flip_commas?FRIBIDI_TYPE_ON:FRIBIDI_TYPE_L;
1315 #endif
1316 log2vis = fribidi_log2vis (logical, len, &base,
1317 /* output */
1318 visual, NULL, NULL, NULL);
1319 if(log2vis) {
1320 len = fribidi_remove_bidi_marks (visual, len, NULL, NULL,
1321 NULL);
1322 if((op = malloc((FFMAX(2*orig_len,2*len) + 1))) == NULL) {
1323 mp_msg(MSGT_SUBREADER,MSGL_WARN,"SUB: error allocating mem.\n");
1324 l++;
1325 break;
1327 fribidi_unicode_to_charset ( char_set_num, visual, len,op);
1328 free (ip);
1329 sub->text[l] = op;
1332 if (!from && l){
1333 for (l = sub->lines; l;)
1334 free (sub->text[--l]);
1335 return ERR;
1337 return sub;
1340 #endif
1342 static void adjust_subs_time(subtitle* sub, float subtime, float fps, int block,
1343 int sub_num, int sub_uses_time) {
1344 int n,m;
1345 subtitle* nextsub;
1346 int i = sub_num;
1347 unsigned long subfms = (sub_uses_time ? 100 : fps) * subtime;
1348 unsigned long overlap = (sub_uses_time ? 100 : fps) / 5; // 0.2s
1350 n=m=0;
1351 if (i) for (;;){
1352 if (sub->end <= sub->start){
1353 sub->end = sub->start + subfms;
1354 m++;
1355 n++;
1357 if (!--i) break;
1358 nextsub = sub + 1;
1359 if(block){
1360 if ((sub->end > nextsub->start) && (sub->end <= nextsub->start + overlap)) {
1361 // these subtitles overlap for less than 0.2 seconds
1362 // and would result in very short overlapping subtitle
1363 // so let's fix the problem here, before overlapping code
1364 // get its hands on them
1365 unsigned delta = sub->end - nextsub->start, half = delta / 2;
1366 sub->end -= half + 1;
1367 nextsub->start += delta - half;
1369 if (sub->end >= nextsub->start){
1370 sub->end = nextsub->start - 1;
1371 if (sub->end - sub->start > subfms)
1372 sub->end = sub->start + subfms;
1373 if (!m)
1374 n++;
1378 /* Theory:
1379 * Movies are often converted from FILM (24 fps)
1380 * to PAL (25) by simply speeding it up, so we
1381 * to multiply the original timestmaps by
1382 * (Movie's FPS / Subtitle's (guessed) FPS)
1383 * so eg. for 23.98 fps movie and PAL time based
1384 * subtitles we say -subfps 25 and we're fine!
1387 /* timed sub fps correction ::atmos */
1388 /* the frame-based case is handled in mpcommon.c
1389 * where find_sub is called */
1390 if(sub_uses_time && sub_fps) {
1391 sub->start *= sub_fps/fps;
1392 sub->end *= sub_fps/fps;
1395 sub = nextsub;
1396 m = 0;
1398 if (n) mp_msg(MSGT_SUBREADER,MSGL_V,"SUB: Adjusted %d subtitle(s).\n", n);
1401 struct subreader {
1402 subtitle * (*read)(stream_t *st, subtitle *dest,
1403 struct readline_args *args);
1404 void (*post)(subtitle *dest);
1405 const char *name;
1408 #ifdef CONFIG_ENCA
1409 const char* guess_buffer_cp(unsigned char* buffer, int buflen, const char *preferred_language, const char *fallback)
1411 const char **languages;
1412 size_t langcnt;
1413 EncaAnalyser analyser;
1414 EncaEncoding encoding;
1415 const char *detected_sub_cp = NULL;
1416 int i;
1418 languages = enca_get_languages(&langcnt);
1419 mp_msg(MSGT_SUBREADER, MSGL_V, "ENCA supported languages: ");
1420 for (i = 0; i < langcnt; i++) {
1421 mp_msg(MSGT_SUBREADER, MSGL_V, "%s ", languages[i]);
1423 mp_msg(MSGT_SUBREADER, MSGL_V, "\n");
1425 for (i = 0; i < langcnt; i++) {
1426 if (strcasecmp(languages[i], preferred_language) != 0) continue;
1427 analyser = enca_analyser_alloc(languages[i]);
1428 encoding = enca_analyse_const(analyser, buffer, buflen);
1429 enca_analyser_free(analyser);
1430 if (encoding.charset != ENCA_CS_UNKNOWN) {
1431 detected_sub_cp = enca_charset_name(encoding.charset, ENCA_NAME_STYLE_ICONV);
1432 break;
1436 free(languages);
1438 if (!detected_sub_cp) {
1439 detected_sub_cp = fallback;
1440 mp_msg(MSGT_SUBREADER, MSGL_INFO, "ENCA detection failed: fallback to %s\n", fallback);
1441 }else{
1442 mp_msg(MSGT_SUBREADER, MSGL_INFO, "ENCA detected charset: %s\n", detected_sub_cp);
1445 return detected_sub_cp;
1448 #define MAX_GUESS_BUFFER_SIZE (256*1024)
1449 const char* guess_cp(stream_t *st, const char *preferred_language, const char *fallback)
1451 size_t buflen;
1452 unsigned char *buffer;
1453 const char *detected_sub_cp = NULL;
1455 buffer = malloc(MAX_GUESS_BUFFER_SIZE);
1456 buflen = stream_read(st,buffer, MAX_GUESS_BUFFER_SIZE);
1458 detected_sub_cp = guess_buffer_cp(buffer, buflen, preferred_language, fallback);
1460 free(buffer);
1461 stream_reset(st);
1462 stream_seek(st,0);
1464 return detected_sub_cp;
1466 #undef MAX_GUESS_BUFFER_SIZE
1467 #endif
1469 sub_data* sub_read_file(char *filename, float fps, struct MPOpts *opts)
1471 int utf16;
1472 stream_t* fd;
1473 int n_max, n_first, i, j, sub_first, sub_orig;
1474 subtitle *first, *second, *sub, *return_sub, *alloced_sub = NULL;
1475 sub_data *subt_data;
1476 int uses_time = 0, sub_num = 0, sub_errs = 0;
1477 static const struct subreader sr[]=
1479 { sub_read_line_microdvd, NULL, "microdvd" },
1480 { sub_read_line_subrip, NULL, "subrip" },
1481 { sub_read_line_subviewer, NULL, "subviewer" },
1482 { sub_read_line_sami, NULL, "sami" },
1483 { sub_read_line_vplayer, NULL, "vplayer" },
1484 { sub_read_line_rt, NULL, "rt" },
1485 { sub_read_line_ssa, sub_pp_ssa, "ssa" },
1486 { sub_read_line_pjs, NULL, "pjs" },
1487 { sub_read_line_mpsub, NULL, "mpsub" },
1488 { sub_read_line_aqt, NULL, "aqt" },
1489 { sub_read_line_subviewer2, NULL, "subviewer 2.0" },
1490 { sub_read_line_subrip09, NULL, "subrip 0.9" },
1491 { sub_read_line_jacosub, NULL, "jacosub" },
1492 { sub_read_line_mpl2, NULL, "mpl2" }
1494 const struct subreader *srp;
1496 if(filename==NULL) return NULL; //qnx segfault
1497 fd=open_stream (filename, NULL, NULL); if (!fd) return NULL;
1499 sub_format = SUB_INVALID;
1500 for (utf16 = 0; sub_format == SUB_INVALID && utf16 < 3; utf16++) {
1501 sub_format=sub_autodetect (fd, &uses_time, utf16);
1502 stream_reset(fd);
1503 stream_seek(fd,0);
1505 utf16--;
1507 mpsub_multiplier = (uses_time ? 100.0 : 1.0);
1508 if (sub_format==SUB_INVALID) {mp_msg(MSGT_SUBREADER,MSGL_WARN,"SUB: Could not determine file format\n");return NULL;}
1509 srp=sr+sub_format;
1510 mp_msg(MSGT_SUBREADER, MSGL_V, "SUB: Detected subtitle file format: %s\n", srp->name);
1512 #ifdef CONFIG_ICONV
1513 sub_utf8_prev=sub_utf8;
1515 int l,k;
1516 k = -1;
1517 if ((l=strlen(filename))>4){
1518 char *exts[] = {".utf", ".utf8", ".utf-8" };
1519 for (k=3;--k>=0;)
1520 if (l >= strlen(exts[k]) && !strcasecmp(filename+(l - strlen(exts[k])), exts[k])){
1521 sub_utf8 = 1;
1522 break;
1525 if (k<0) subcp_open(fd);
1527 #endif
1529 sub_num=0;n_max=32;
1530 first=malloc(n_max*sizeof(subtitle));
1531 if(!first){
1532 #ifdef CONFIG_ICONV
1533 subcp_close();
1534 sub_utf8=sub_utf8_prev;
1535 #endif
1536 return NULL;
1539 #ifdef CONFIG_SORTSUB
1540 alloced_sub =
1541 sub = malloc(sizeof(subtitle));
1542 //This is to deal with those formats (AQT & Subrip) which define the end of a subtitle
1543 //as the beginning of the following
1544 previous_sub_end = 0;
1545 #endif
1546 while(1){
1547 if(sub_num>=n_max){
1548 n_max+=16;
1549 first=realloc(first,n_max*sizeof(subtitle));
1551 #ifndef CONFIG_SORTSUB
1552 sub = &first[sub_num];
1553 #endif
1554 memset(sub, '\0', sizeof(subtitle));
1555 sub=srp->read(fd, sub, &(struct readline_args){utf16, opts});
1556 if(!sub) break; // EOF
1557 #ifdef CONFIG_ICONV
1558 if ((sub!=ERR) && sub_utf8 == 2) sub=subcp_recode(sub);
1559 #endif
1560 #ifdef CONFIG_FRIBIDI
1561 /* Libass has its own BiDi handling now, and running this before
1562 * giving the subtitle to libass would only break things. */
1563 if (sub != ERR && !opts->ass_enabled)
1564 sub = sub_fribidi(sub, sub_utf8, 0);
1565 #endif
1566 if ( sub == ERR )
1568 #ifdef CONFIG_ICONV
1569 subcp_close();
1570 #endif
1571 free(first);
1572 free(alloced_sub);
1573 return NULL;
1575 // Apply any post processing that needs recoding first
1576 if ((sub!=ERR) && !sub_no_text_pp && srp->post) srp->post(sub);
1577 #ifdef CONFIG_SORTSUB
1578 if(!sub_num || (first[sub_num - 1].start <= sub->start)){
1579 first[sub_num].start = sub->start;
1580 first[sub_num].end = sub->end;
1581 first[sub_num].lines = sub->lines;
1582 first[sub_num].alignment = sub->alignment;
1583 for(i = 0; i < sub->lines; ++i){
1584 first[sub_num].text[i] = sub->text[i];
1586 if (previous_sub_end){
1587 first[sub_num - 1].end = previous_sub_end;
1588 previous_sub_end = 0;
1590 } else {
1591 for(j = sub_num - 1; j >= 0; --j){
1592 first[j + 1].start = first[j].start;
1593 first[j + 1].end = first[j].end;
1594 first[j + 1].lines = first[j].lines;
1595 first[j + 1].alignment = first[j].alignment;
1596 for(i = 0; i < first[j].lines; ++i){
1597 first[j + 1].text[i] = first[j].text[i];
1599 if(!j || (first[j - 1].start <= sub->start)){
1600 first[j].start = sub->start;
1601 first[j].end = sub->end;
1602 first[j].lines = sub->lines;
1603 first[j].alignment = sub->alignment;
1604 for(i = 0; i < SUB_MAX_TEXT; ++i){
1605 first[j].text[i] = sub->text[i];
1607 if (previous_sub_end){
1608 first[j].end = first[j - 1].end;
1609 first[j - 1].end = previous_sub_end;
1610 previous_sub_end = 0;
1612 break;
1616 #endif
1617 if(sub==ERR) ++sub_errs; else ++sub_num; // Error vs. Valid
1620 free_stream(fd);
1622 #ifdef CONFIG_ICONV
1623 subcp_close();
1624 #endif
1625 free(alloced_sub);
1627 // printf ("SUB: Subtitle format %s time.\n", uses_time?"uses":"doesn't use");
1628 mp_msg(MSGT_SUBREADER, MSGL_V,"SUB: Read %i subtitles, %i bad line(s).\n",
1629 sub_num, sub_errs);
1631 if(sub_num<=0){
1632 free(first);
1633 return NULL;
1636 // we do overlap if the user forced it (suboverlap_enable == 2) or
1637 // the user didn't forced no-overlapsub and the format is Jacosub or Ssa.
1638 // this is because usually overlapping subtitles are found in these formats,
1639 // while in others they are probably result of bad timing
1640 if ((suboverlap_enabled == 2) ||
1641 ((suboverlap_enabled) && ((sub_format == SUB_JACOSUB) || (sub_format == SUB_SSA)))) {
1642 adjust_subs_time(first, 6.0, fps, 0, sub_num, uses_time);/*~6 secs AST*/
1643 // here we manage overlapping subtitles
1644 sub_orig = sub_num;
1645 n_first = sub_num;
1646 sub_num = 0;
1647 second = NULL;
1648 // for each subtitle in first[] we deal with its 'block' of
1649 // bonded subtitles
1650 for (sub_first = 0; sub_first < n_first; ++sub_first) {
1651 unsigned long global_start = first[sub_first].start,
1652 global_end = first[sub_first].end, local_start, local_end;
1653 int lines_to_add = first[sub_first].lines, sub_to_add = 0,
1654 **placeholder = NULL, higher_line = 0, counter, start_block_sub = sub_num;
1655 char real_block = 1;
1657 // here we find the number of subtitles inside the 'block'
1658 // and its span interval. this works well only with sorted
1659 // subtitles
1660 while ((sub_first + sub_to_add + 1 < n_first) && (first[sub_first + sub_to_add + 1].start < global_end)) {
1661 ++sub_to_add;
1662 lines_to_add += first[sub_first + sub_to_add].lines;
1663 if (first[sub_first + sub_to_add].start < global_start) {
1664 global_start = first[sub_first + sub_to_add].start;
1666 if (first[sub_first + sub_to_add].end > global_end) {
1667 global_end = first[sub_first + sub_to_add].end;
1671 /* Avoid n^2 memory use for the "placeholder" data structure
1672 * below with subtitles that have a huge number of
1673 * consecutive overlapping lines. */
1674 lines_to_add = FFMIN(lines_to_add, SUB_MAX_TEXT);
1676 // we need a structure to keep trace of the screen lines
1677 // used by the subs, a 'placeholder'
1678 counter = 2 * sub_to_add + 1; // the maximum number of subs derived
1679 // from a block of sub_to_add+1 subs
1680 placeholder = malloc(sizeof(int *) * counter);
1681 for (i = 0; i < counter; ++i) {
1682 placeholder[i] = malloc(sizeof(int) * lines_to_add);
1683 for (j = 0; j < lines_to_add; ++j) {
1684 placeholder[i][j] = -1;
1688 counter = 0;
1689 local_end = global_start - 1;
1690 do {
1691 int ls;
1693 // here we find the beginning and the end of a new
1694 // subtitle in the block
1695 local_start = local_end + 1;
1696 local_end = global_end;
1697 for (j = 0; j <= sub_to_add; ++j) {
1698 if ((first[sub_first + j].start - 1 > local_start) && (first[sub_first + j].start - 1 < local_end)) {
1699 local_end = first[sub_first + j].start - 1;
1700 } else if ((first[sub_first + j].end > local_start) && (first[sub_first + j].end < local_end)) {
1701 local_end = first[sub_first + j].end;
1704 // here we allocate the screen lines to subs we must
1705 // display in current local_start-local_end interval.
1706 // if the subs were yet presents in the previous interval
1707 // they keep the same lines, otherside they get unused lines
1708 for (j = 0; j <= sub_to_add; ++j) {
1709 if ((first[sub_first + j].start <= local_end) && (first[sub_first + j].end > local_start)) {
1710 unsigned long sub_lines = first[sub_first + j].lines, fragment_length = lines_to_add + 1,
1711 tmp = 0;
1712 char boolean = 0;
1713 int fragment_position = -1;
1715 // if this is not the first new sub of the block
1716 // we find if this sub was present in the previous
1717 // new sub
1718 if (counter)
1719 for (i = 0; i < lines_to_add; ++i) {
1720 if (placeholder[counter - 1][i] == sub_first + j) {
1721 placeholder[counter][i] = sub_first + j;
1722 boolean = 1;
1725 if (boolean)
1726 continue;
1728 // we are looking for the shortest among all groups of
1729 // sequential blank lines whose length is greater than or
1730 // equal to sub_lines. we store in fragment_position the
1731 // position of the shortest group, in fragment_length its
1732 // length, and in tmp the length of the group currently
1733 // examinated
1734 for (i = 0; i < lines_to_add; ++i) {
1735 if (placeholder[counter][i] == -1) {
1736 // placeholder[counter][i] is part of the current group
1737 // of blank lines
1738 ++tmp;
1739 } else {
1740 if (tmp == sub_lines) {
1741 // current group's size fits exactly the one we
1742 // need, so we stop looking
1743 fragment_position = i - tmp;
1744 tmp = 0;
1745 break;
1747 if ((tmp) && (tmp > sub_lines) && (tmp < fragment_length)) {
1748 // current group is the best we found till here,
1749 // but is still bigger than the one we are looking
1750 // for, so we keep on looking
1751 fragment_length = tmp;
1752 fragment_position = i - tmp;
1753 tmp = 0;
1754 } else {
1755 // current group doesn't fit at all, so we forget it
1756 tmp = 0;
1760 if (tmp) {
1761 // last screen line is blank, a group ends with it
1762 if ((tmp >= sub_lines) && (tmp < fragment_length)) {
1763 fragment_position = i - tmp;
1766 if (fragment_position == -1) {
1767 // it was not possible to find free screen line(s) for a subtitle,
1768 // usually this means a bug in the code; however we do not overlap
1769 mp_msg(MSGT_SUBREADER, MSGL_WARN, "SUB: we could not find a suitable position for an overlapping subtitle\n");
1770 higher_line = SUB_MAX_TEXT + 1;
1771 break;
1772 } else {
1773 for (tmp = 0; tmp < sub_lines; ++tmp) {
1774 placeholder[counter][fragment_position + tmp] = sub_first + j;
1779 for (j = higher_line + 1; j < lines_to_add; ++j) {
1780 if (placeholder[counter][j] != -1)
1781 higher_line = j;
1782 else
1783 break;
1785 if (higher_line >= SUB_MAX_TEXT) {
1786 // the 'block' has too much lines, so we don't overlap the
1787 // subtitles
1788 second = realloc(second, (sub_num + sub_to_add + 1) * sizeof(subtitle));
1789 for (j = 0; j <= sub_to_add; ++j) {
1790 int ls;
1791 memset(&second[sub_num + j], '\0', sizeof(subtitle));
1792 second[sub_num + j].start = first[sub_first + j].start;
1793 second[sub_num + j].end = first[sub_first + j].end;
1794 second[sub_num + j].lines = first[sub_first + j].lines;
1795 second[sub_num + j].alignment = first[sub_first + j].alignment;
1796 for (ls = 0; ls < second[sub_num + j].lines; ls++) {
1797 second[sub_num + j].text[ls] = strdup(first[sub_first + j].text[ls]);
1800 sub_num += sub_to_add + 1;
1801 sub_first += sub_to_add;
1802 real_block = 0;
1803 break;
1806 // we read the placeholder structure and create the new
1807 // subs.
1808 second = realloc(second, (sub_num + 1) * sizeof(subtitle));
1809 memset(&second[sub_num], '\0', sizeof(subtitle));
1810 second[sub_num].start = local_start;
1811 second[sub_num].end = local_end;
1812 second[sub_num].alignment = first[sub_first].alignment;
1813 n_max = (lines_to_add < SUB_MAX_TEXT) ? lines_to_add : SUB_MAX_TEXT;
1814 for (i = 0, j = 0; j < n_max; ++j) {
1815 if (placeholder[counter][j] != -1) {
1816 int lines = first[placeholder[counter][j]].lines;
1817 for (ls = 0; ls < lines; ++ls) {
1818 second[sub_num].text[i++] = strdup(first[placeholder[counter][j]].text[ls]);
1820 j += lines - 1;
1821 } else {
1822 second[sub_num].text[i++] = strdup(" ");
1825 ++sub_num;
1826 ++counter;
1827 } while (local_end < global_end);
1828 if (real_block)
1829 for (i = 0; i < counter; ++i)
1830 second[start_block_sub + i].lines = higher_line + 1;
1832 counter = 2 * sub_to_add + 1;
1833 for (i = 0; i < counter; ++i) {
1834 free(placeholder[i]);
1836 free(placeholder);
1837 sub_first += sub_to_add;
1840 for (j = sub_orig - 1; j >= 0; --j) {
1841 for (i = first[j].lines - 1; i >= 0; --i) {
1842 free(first[j].text[i]);
1845 free(first);
1847 return_sub = second;
1848 } else { //if(suboverlap_enabled)
1849 adjust_subs_time(first, 6.0, fps, 1, sub_num, uses_time);/*~6 secs AST*/
1850 return_sub = first;
1852 if (return_sub == NULL) return NULL;
1853 subt_data = malloc(sizeof(sub_data));
1854 subt_data->filename = strdup(filename);
1855 subt_data->sub_uses_time = uses_time;
1856 subt_data->sub_num = sub_num;
1857 subt_data->sub_errs = sub_errs;
1858 subt_data->subtitles = return_sub;
1859 return subt_data;
1862 void list_sub_file(sub_data* subd){
1863 int i,j;
1864 subtitle *subs = subd->subtitles;
1866 for(j=0; j < subd->sub_num; j++){
1867 subtitle* egysub=&subs[j];
1868 mp_msg(MSGT_SUBREADER,MSGL_INFO,"%i line%c (%li-%li)\n",
1869 egysub->lines,
1870 (1==egysub->lines)?' ':'s',
1871 egysub->start,
1872 egysub->end);
1873 for (i=0; i<egysub->lines; i++) {
1874 mp_msg(MSGT_SUBREADER,MSGL_INFO,"\t\t%d: %s%s", i,egysub->text[i], i==egysub->lines-1?"":" \n ");
1876 mp_msg(MSGT_SUBREADER,MSGL_INFO,"\n");
1879 mp_msg(MSGT_SUBREADER,MSGL_INFO,"Subtitle format %s time.\n",
1880 subd->sub_uses_time ? "uses":"doesn't use");
1881 mp_msg(MSGT_SUBREADER,MSGL_INFO,"Read %i subtitles, %i errors.\n", subd->sub_num, subd->sub_errs);
1884 void dump_srt(sub_data* subd, float fps){
1885 int i,j;
1886 int h,m,s,ms;
1887 FILE * fd;
1888 subtitle * onesub;
1889 unsigned long temp;
1890 subtitle *subs = subd->subtitles;
1892 if (!subd->sub_uses_time && sub_fps == 0)
1893 sub_fps = fps;
1894 fd=fopen("dumpsub.srt","w");
1895 if(!fd)
1897 perror("dump_srt: fopen");
1898 return;
1900 for(i=0; i < subd->sub_num; i++)
1902 onesub=subs+i; //=&subs[i];
1903 fprintf(fd,"%d\n",i+1);//line number
1905 temp=onesub->start;
1906 if (!subd->sub_uses_time)
1907 temp = temp * 100 / sub_fps;
1908 temp -= sub_delay * 100;
1909 h=temp/360000;temp%=360000; //h =1*100*60*60
1910 m=temp/6000; temp%=6000; //m =1*100*60
1911 s=temp/100; temp%=100; //s =1*100
1912 ms=temp*10; //ms=1*10
1913 fprintf(fd,"%02d:%02d:%02d,%03d --> ",h,m,s,ms);
1915 temp=onesub->end;
1916 if (!subd->sub_uses_time)
1917 temp = temp * 100 / sub_fps;
1918 temp -= sub_delay * 100;
1919 h=temp/360000;temp%=360000;
1920 m=temp/6000; temp%=6000;
1921 s=temp/100; temp%=100;
1922 ms=temp*10;
1923 fprintf(fd,"%02d:%02d:%02d,%03d\n",h,m,s,ms);
1925 for(j=0;j<onesub->lines;j++)
1926 fprintf(fd,"%s\n",onesub->text[j]);
1928 fprintf(fd,"\n");
1930 fclose(fd);
1931 mp_msg(MSGT_SUBREADER,MSGL_INFO,"SUB: Subtitles dumped in \'dumpsub.srt\'.\n");
1934 void dump_mpsub(sub_data* subd, float fps){
1935 int i,j;
1936 FILE *fd;
1937 float a,b;
1938 subtitle *subs = subd->subtitles;
1940 mpsub_position = subd->sub_uses_time? (sub_delay*100) : (sub_delay*fps);
1941 if (sub_fps==0) sub_fps=fps;
1943 fd=fopen ("dump.mpsub", "w");
1944 if (!fd) {
1945 perror ("dump_mpsub: fopen");
1946 return;
1950 if (subd->sub_uses_time) fprintf (fd,"FORMAT=TIME\n\n");
1951 else fprintf (fd, "FORMAT=%5.2f\n\n", fps);
1953 for(j=0; j < subd->sub_num; j++){
1954 subtitle* egysub=&subs[j];
1955 if (subd->sub_uses_time) {
1956 a=((egysub->start-mpsub_position)/100.0);
1957 b=((egysub->end-egysub->start)/100.0);
1958 if ( (float)((int)a) == a)
1959 fprintf (fd, "%.0f",a);
1960 else
1961 fprintf (fd, "%.2f",a);
1963 if ( (float)((int)b) == b)
1964 fprintf (fd, " %.0f\n",b);
1965 else
1966 fprintf (fd, " %.2f\n",b);
1967 } else {
1968 fprintf (fd, "%ld %ld\n", (long)((egysub->start*(fps/sub_fps))-((mpsub_position*(fps/sub_fps)))),
1969 (long)(((egysub->end)-(egysub->start))*(fps/sub_fps)));
1972 mpsub_position = egysub->end;
1973 for (i=0; i<egysub->lines; i++) {
1974 fprintf (fd, "%s\n",egysub->text[i]);
1976 fprintf (fd, "\n");
1978 fclose (fd);
1979 mp_msg(MSGT_SUBREADER,MSGL_INFO,"SUB: Subtitles dumped in \'dump.mpsub\'.\n");
1982 void dump_microdvd(sub_data* subd, float fps) {
1983 int i, delay;
1984 FILE *fd;
1985 subtitle *subs = subd->subtitles;
1986 if (sub_fps == 0)
1987 sub_fps = fps;
1988 fd = fopen("dumpsub.sub", "w");
1989 if (!fd) {
1990 perror("dumpsub.sub: fopen");
1991 return;
1993 delay = sub_delay * sub_fps;
1994 for (i = 0; i < subd->sub_num; ++i) {
1995 int j, start, end;
1996 start = subs[i].start;
1997 end = subs[i].end;
1998 if (subd->sub_uses_time) {
1999 start = start * sub_fps / 100 ;
2000 end = end * sub_fps / 100;
2002 else {
2003 start = start * sub_fps / fps;
2004 end = end * sub_fps / fps;
2006 start -= delay;
2007 end -= delay;
2008 fprintf(fd, "{%d}{%d}", start, end);
2009 for (j = 0; j < subs[i].lines; ++j)
2010 fprintf(fd, "%s%s", j ? "|" : "", subs[i].text[j]);
2011 fprintf(fd, "\n");
2013 fclose(fd);
2014 mp_msg(MSGT_SUBREADER,MSGL_INFO,"SUB: Subtitles dumped in \'dumpsub.sub\'.\n");
2017 void dump_jacosub(sub_data* subd, float fps) {
2018 int i,j;
2019 int h,m,s,cs;
2020 FILE * fd;
2021 subtitle * onesub;
2022 unsigned long temp;
2023 subtitle *subs = subd->subtitles;
2025 if (!subd->sub_uses_time && sub_fps == 0)
2026 sub_fps = fps;
2027 fd=fopen("dumpsub.jss","w");
2028 if(!fd)
2030 perror("dump_jacosub: fopen");
2031 return;
2033 fprintf(fd, "#TIMERES %d\n", (subd->sub_uses_time) ? 100 : (int)sub_fps);
2034 for(i=0; i < subd->sub_num; i++)
2036 onesub=subs+i; //=&subs[i];
2038 temp=onesub->start;
2039 if (!subd->sub_uses_time)
2040 temp = temp * 100 / sub_fps;
2041 temp -= sub_delay * 100;
2042 h=temp/360000;temp%=360000; //h =1*100*60*60
2043 m=temp/6000; temp%=6000; //m =1*100*60
2044 s=temp/100; temp%=100; //s =1*100
2045 cs=temp; //cs=1*10
2046 fprintf(fd,"%02d:%02d:%02d.%02d ",h,m,s,cs);
2048 temp=onesub->end;
2049 if (!subd->sub_uses_time)
2050 temp = temp * 100 / sub_fps;
2051 temp -= sub_delay * 100;
2052 h=temp/360000;temp%=360000;
2053 m=temp/6000; temp%=6000;
2054 s=temp/100; temp%=100;
2055 cs=temp;
2056 fprintf(fd,"%02d:%02d:%02d.%02d {~} ",h,m,s,cs);
2058 for(j=0;j<onesub->lines;j++)
2059 fprintf(fd,"%s%s",j ? "\\n" : "", onesub->text[j]);
2061 fprintf(fd,"\n");
2063 fclose(fd);
2064 mp_msg(MSGT_SUBREADER,MSGL_INFO,"SUB: Subtitles dumped in \'dumpsub.js\'.\n");
2067 void dump_sami(sub_data* subd, float fps) {
2068 int i,j;
2069 FILE * fd;
2070 subtitle * onesub;
2071 unsigned long temp;
2072 subtitle *subs = subd->subtitles;
2074 if (!subd->sub_uses_time && sub_fps == 0)
2075 sub_fps = fps;
2076 fd=fopen("dumpsub.smi","w");
2077 if(!fd)
2079 perror("dump_jacosub: fopen");
2080 return;
2082 fprintf(fd, "<SAMI>\n"
2083 "<HEAD>\n"
2084 " <STYLE TYPE=\"Text/css\">\n"
2085 " <!--\n"
2086 " P {margin-left: 29pt; margin-right: 29pt; font-size: 24pt; text-align: center; font-family: Tahoma; font-weight: bold; color: #FCDD03; background-color: #000000;}\n"
2087 " .SUBTTL {Name: 'Subtitles'; Lang: en-US; SAMIType: CC;}\n"
2088 " -->\n"
2089 " </STYLE>\n"
2090 "</HEAD>\n"
2091 "<BODY>\n");
2092 for(i=0; i < subd->sub_num; i++)
2094 onesub=subs+i; //=&subs[i];
2096 temp=onesub->start;
2097 if (!subd->sub_uses_time)
2098 temp = temp * 100 / sub_fps;
2099 temp -= sub_delay * 100;
2100 fprintf(fd,"\t<SYNC Start=%lu>\n"
2101 "\t <P>", temp * 10);
2103 for(j=0;j<onesub->lines;j++)
2104 fprintf(fd,"%s%s",j ? "<br>" : "", onesub->text[j]);
2106 fprintf(fd,"\n");
2108 temp=onesub->end;
2109 if (!subd->sub_uses_time)
2110 temp = temp * 100 / sub_fps;
2111 temp -= sub_delay * 100;
2112 fprintf(fd,"\t<SYNC Start=%lu>\n"
2113 "\t <P>&nbsp;\n", temp * 10);
2115 fprintf(fd, "</BODY>\n"
2116 "</SAMI>\n");
2117 fclose(fd);
2118 mp_msg(MSGT_SUBREADER,MSGL_INFO,"SUB: Subtitles dumped in \'dumpsub.smi\'.\n");
2121 void sub_free( sub_data * subd )
2123 int i, j;
2125 if ( !subd ) return;
2127 for (i = 0; i < subd->sub_num; i++)
2128 for (j = 0; j < subd->subtitles[i].lines; j++)
2129 free( subd->subtitles[i].text[j] );
2130 free( subd->subtitles );
2131 free( subd->filename );
2132 free( subd );
2135 #define MAX_SUBLINE 512
2137 * \brief parse text and append it to subtitle in sub
2138 * \param sub subtitle struct to add text to
2139 * \param txt text to parse
2140 * \param len length of text in txt
2141 * \param endpts pts at which this subtitle text should be removed again
2143 * <> and {} are interpreted as comment delimiters, "\n", "\N", '\n', '\r'
2144 * and '\0' are interpreted as newlines, duplicate, leading and trailing
2145 * newlines are ignored.
2147 void sub_add_text(subtitle *sub, const char *txt, int len, double endpts) {
2148 int comment = 0;
2149 int double_newline = 1; // ignore newlines at the beginning
2150 int i, pos;
2151 char *buf;
2152 #ifdef CONFIG_FRIBIDI
2153 int orig_lines = sub->lines;
2154 #endif
2155 if (sub->lines >= SUB_MAX_TEXT) return;
2156 pos = 0;
2157 buf = malloc(MAX_SUBLINE + 1);
2158 sub->text[sub->lines] = buf;
2159 sub->endpts[sub->lines] = endpts;
2160 for (i = 0; i < len && pos < MAX_SUBLINE; i++) {
2161 char c = txt[i];
2162 if (c == '<') comment |= 1;
2163 if (c == '{') comment |= 2;
2164 if (comment) {
2165 if (c == '}') comment &= ~2;
2166 if (c == '>') comment &= ~1;
2167 continue;
2169 if (pos == MAX_SUBLINE - 1) {
2170 i--;
2171 c = 0;
2173 if (c == '\\' && i + 1 < len) {
2174 c = txt[++i];
2175 if (c == 'n' || c == 'N') c = 0;
2177 if (c == '\n' || c == '\r') c = 0;
2178 if (c) {
2179 double_newline = 0;
2180 buf[pos++] = c;
2181 } else if (!double_newline) {
2182 if (sub->lines >= SUB_MAX_TEXT - 1) {
2183 mp_msg(MSGT_VO, MSGL_WARN, "Too many subtitle lines\n");
2184 break;
2186 double_newline = 1;
2187 buf[pos] = 0;
2188 sub->lines++;
2189 pos = 0;
2190 buf = malloc(MAX_SUBLINE + 1);
2191 sub->text[sub->lines] = buf;
2192 sub->endpts[sub->lines] = endpts;
2195 buf[pos] = 0;
2196 if (sub->lines < SUB_MAX_TEXT &&
2197 strlen(sub->text[sub->lines]))
2198 sub->lines++;
2199 #ifdef CONFIG_FRIBIDI
2200 sub = sub_fribidi(sub, sub_utf8, orig_lines);
2201 #endif
2205 * \brief remove outdated subtitle lines.
2206 * \param sub subtitle struct to modify
2207 * \param pts current pts. All lines with endpts <= this will be removed.
2208 * Use MP_NOPTS_VALUE to remove all lines
2209 * \return 1 if sub was modified, 0 otherwise.
2211 int sub_clear_text(subtitle *sub, double pts) {
2212 int i = 0;
2213 int changed = 0;
2214 while (i < sub->lines) {
2215 double endpts = sub->endpts[i];
2216 if (pts == MP_NOPTS_VALUE || (endpts != MP_NOPTS_VALUE && pts >= endpts)) {
2217 int j;
2218 free(sub->text[i]);
2219 for (j = i + 1; j < sub->lines; j++) {
2220 sub->text[j - 1] = sub->text[j];
2221 sub->endpts[j - 1] = sub->endpts[j];
2223 sub->lines--;
2224 changed = 1;
2225 } else
2226 i++;
2228 return changed;