Configure needs AS to be set for the Makefiles.
[mplayer/glamo.git] / subreader.c
blobd4b1db7cef6f0537217155aee3309840129ed24f
1 /*
2 * Subtitle reader with format autodetection
4 * Written by laaz
5 * Some code cleanup & realloc() by A'rpi/ESP-team
7 */
10 #include <stdio.h>
11 #include <stdlib.h>
12 #include <string.h>
13 #include <ctype.h>
15 #include <sys/types.h>
16 #include <dirent.h>
18 #include "config.h"
19 #include "mp_msg.h"
20 #include "subreader.h"
21 #include "stream/stream.h"
23 #ifdef CONFIG_ENCA
24 #include <enca.h>
25 #endif
27 #define ERR ((void *) -1)
29 #ifdef CONFIG_ICONV
30 #include <iconv.h>
31 char *sub_cp=NULL;
32 #endif
33 #ifdef CONFIG_FRIBIDI
34 #include <fribidi/fribidi.h>
35 char *fribidi_charset = NULL; ///character set that will be passed to FriBiDi
36 int flip_hebrew = 1; ///flip subtitles using fribidi
37 int fribidi_flip_commas = 0; ///flip comma when fribidi is used
38 #endif
40 extern char* dvdsub_lang;
42 /* Maximal length of line of a subtitle */
43 #define LINE_LEN 1000
44 static float mpsub_position=0;
45 static float mpsub_multiplier=1.;
46 static int sub_slacktime = 20000; //20 sec
48 int sub_no_text_pp=0; // 1 => do not apply text post-processing
49 // like {\...} elimination in SSA format.
51 int sub_match_fuzziness=0; // level of sub name matching fuzziness
53 /* Use the SUB_* constant defined in the header file */
54 int sub_format=SUB_INVALID;
55 #ifdef CONFIG_SORTSUB
57 Some subtitling formats, namely AQT and Subrip09, define the end of a
58 subtitle as the beginning of the following. Since currently we read one
59 subtitle at time, for these format we keep two global *subtitle,
60 previous_aqt_sub and previous_subrip09_sub, pointing to previous subtitle,
61 so we can change its end when we read current subtitle starting time.
62 When CONFIG_SORTSUB is defined, we use a single global unsigned long,
63 previous_sub_end, for both (and even future) formats, to store the end of
64 the previous sub: it is initialized to 0 in sub_read_file and eventually
65 modified by sub_read_aqt_line or sub_read_subrip09_line.
67 unsigned long previous_sub_end;
68 #endif
70 static int eol(char p) {
71 return p=='\r' || p=='\n' || p=='\0';
74 /* Remove leading and trailing space */
75 static void trail_space(char *s) {
76 int i = 0;
77 while (isspace(s[i])) ++i;
78 if (i) strcpy(s, s + i);
79 i = strlen(s) - 1;
80 while (i > 0 && isspace(s[i])) s[i--] = '\0';
83 static char *stristr(const char *haystack, const char *needle) {
84 int len = 0;
85 const char *p = haystack;
87 if (!(haystack && needle)) return NULL;
89 len=strlen(needle);
90 while (*p != '\0') {
91 if (strncasecmp(p, needle, len) == 0) return (char*)p;
92 p++;
95 return NULL;
98 static subtitle *sub_read_line_sami(stream_t* st, subtitle *current) {
99 static char line[LINE_LEN+1];
100 static char *s = NULL, *slacktime_s;
101 char text[LINE_LEN+1], *p=NULL, *q;
102 int state;
104 current->lines = current->start = current->end = 0;
105 current->alignment = SUB_ALIGNMENT_BOTTOMCENTER;
106 state = 0;
108 /* read the first line */
109 if (!s)
110 if (!(s = stream_read_line(st, line, LINE_LEN))) return 0;
112 do {
113 switch (state) {
115 case 0: /* find "START=" or "Slacktime:" */
116 slacktime_s = stristr (s, "Slacktime:");
117 if (slacktime_s)
118 sub_slacktime = strtol (slacktime_s+10, NULL, 0) / 10;
120 s = stristr (s, "Start=");
121 if (s) {
122 current->start = strtol (s + 6, &s, 0) / 10;
123 /* eat '>' */
124 for (; *s != '>' && *s != '\0'; s++);
125 s++;
126 state = 1; continue;
128 break;
130 case 1: /* find (optionnal) "<P", skip other TAGs */
131 for (; *s == ' ' || *s == '\t'; s++); /* strip blanks, if any */
132 if (*s == '\0') break;
133 if (*s != '<') { state = 3; p = text; continue; } /* not a TAG */
134 s++;
135 if (*s == 'P' || *s == 'p') { s++; state = 2; continue; } /* found '<P' */
136 for (; *s != '>' && *s != '\0'; s++); /* skip remains of non-<P> TAG */
137 if (s == '\0')
138 break;
139 s++;
140 continue;
142 case 2: /* find ">" */
143 if ((s = strchr (s, '>'))) { s++; state = 3; p = text; continue; }
144 break;
146 case 3: /* get all text until '<' appears */
147 if (*s == '\0') break;
148 else if (!strncasecmp (s, "<br>", 4)) {
149 *p = '\0'; p = text; trail_space (text);
150 if (text[0] != '\0')
151 current->text[current->lines++] = strdup (text);
152 s += 4;
154 else if ((*s == '{') && !sub_no_text_pp) { state = 5; ++s; continue; }
155 else if (*s == '<') { state = 4; }
156 else if (!strncasecmp (s, "&nbsp;", 6)) { *p++ = ' '; s += 6; }
157 else if (*s == '\t') { *p++ = ' '; s++; }
158 else if (*s == '\r' || *s == '\n') { s++; }
159 else *p++ = *s++;
161 /* skip duplicated space */
162 if (p > text + 2) if (*(p-1) == ' ' && *(p-2) == ' ') p--;
164 continue;
166 case 4: /* get current->end or skip <TAG> */
167 q = stristr (s, "Start=");
168 if (q) {
169 current->end = strtol (q + 6, &q, 0) / 10 - 1;
170 *p = '\0'; trail_space (text);
171 if (text[0] != '\0')
172 current->text[current->lines++] = strdup (text);
173 if (current->lines > 0) { state = 99; break; }
174 state = 0; continue;
176 s = strchr (s, '>');
177 if (s) { s++; state = 3; continue; }
178 break;
179 case 5: /* get rid of {...} text, but read the alignment code */
180 if ((*s == '\\') && (*(s + 1) == 'a') && !sub_no_text_pp) {
181 if (stristr(s, "\\a1") != NULL) {
182 current->alignment = SUB_ALIGNMENT_BOTTOMLEFT;
183 s = s + 3;
185 if (stristr(s, "\\a2") != NULL) {
186 current->alignment = SUB_ALIGNMENT_BOTTOMCENTER;
187 s = s + 3;
188 } else if (stristr(s, "\\a3") != NULL) {
189 current->alignment = SUB_ALIGNMENT_BOTTOMRIGHT;
190 s = s + 3;
191 } else if ((stristr(s, "\\a4") != NULL) || (stristr(s, "\\a5") != NULL) || (stristr(s, "\\a8") != NULL)) {
192 current->alignment = SUB_ALIGNMENT_TOPLEFT;
193 s = s + 3;
194 } else if (stristr(s, "\\a6") != NULL) {
195 current->alignment = SUB_ALIGNMENT_TOPCENTER;
196 s = s + 3;
197 } else if (stristr(s, "\\a7") != NULL) {
198 current->alignment = SUB_ALIGNMENT_TOPRIGHT;
199 s = s + 3;
200 } else if (stristr(s, "\\a9") != NULL) {
201 current->alignment = SUB_ALIGNMENT_MIDDLELEFT;
202 s = s + 3;
203 } else if (stristr(s, "\\a10") != NULL) {
204 current->alignment = SUB_ALIGNMENT_MIDDLECENTER;
205 s = s + 4;
206 } else if (stristr(s, "\\a11") != NULL) {
207 current->alignment = SUB_ALIGNMENT_MIDDLERIGHT;
208 s = s + 4;
211 if (*s == '}') state = 3;
212 ++s;
213 continue;
216 /* read next line */
217 if (state != 99 && !(s = stream_read_line (st, line, LINE_LEN))) {
218 if (current->start > 0) {
219 break; // if it is the last subtitle
220 } else {
221 return 0;
225 } while (state != 99);
227 // For the last subtitle
228 if (current->end <= 0) {
229 current->end = current->start + sub_slacktime;
230 *p = '\0'; trail_space (text);
231 if (text[0] != '\0')
232 current->text[current->lines++] = strdup (text);
235 return current;
239 static char *sub_readtext(char *source, char **dest) {
240 int len=0;
241 char *p=source;
243 // printf("src=%p dest=%p \n",source,dest);
245 while ( !eol(*p) && *p!= '|' ) {
246 p++,len++;
249 *dest= malloc (len+1);
250 if (!dest) {return ERR;}
252 strncpy(*dest, source, len);
253 (*dest)[len]=0;
255 while (*p=='\r' || *p=='\n' || *p=='|') p++;
257 if (*p) return p; // not-last text field
258 else return NULL; // last text field
261 static subtitle *sub_read_line_microdvd(stream_t *st,subtitle *current) {
262 char line[LINE_LEN+1];
263 char line2[LINE_LEN+1];
264 char *p, *next;
265 int i;
267 do {
268 if (!stream_read_line (st, line, LINE_LEN)) return NULL;
269 } while ((sscanf (line,
270 "{%ld}{}%[^\r\n]",
271 &(current->start), line2) < 2) &&
272 (sscanf (line,
273 "{%ld}{%ld}%[^\r\n]",
274 &(current->start), &(current->end), line2) < 3));
276 p=line2;
278 next=p, i=0;
279 while ((next =sub_readtext (next, &(current->text[i])))) {
280 if (current->text[i]==ERR) {return ERR;}
281 i++;
282 if (i>=SUB_MAX_TEXT) { mp_msg(MSGT_SUBREADER,MSGL_WARN,"Too many lines in a subtitle\n");current->lines=i;return current;}
284 current->lines= ++i;
286 return current;
289 static subtitle *sub_read_line_mpl2(stream_t *st,subtitle *current) {
290 char line[LINE_LEN+1];
291 char line2[LINE_LEN+1];
292 char *p, *next;
293 int i;
295 do {
296 if (!stream_read_line (st, line, LINE_LEN)) return NULL;
297 } while ((sscanf (line,
298 "[%ld][%ld]%[^\r\n]",
299 &(current->start), &(current->end), line2) < 3));
300 current->start *= 10;
301 current->end *= 10;
302 p=line2;
304 next=p, i=0;
305 while ((next =sub_readtext (next, &(current->text[i])))) {
306 if (current->text[i]==ERR) {return ERR;}
307 i++;
308 if (i>=SUB_MAX_TEXT) { mp_msg(MSGT_SUBREADER,MSGL_WARN,"Too many lines in a subtitle\n");current->lines=i;return current;}
310 current->lines= ++i;
312 return current;
315 static subtitle *sub_read_line_subrip(stream_t* st, subtitle *current) {
316 char line[LINE_LEN+1];
317 int a1,a2,a3,a4,b1,b2,b3,b4;
318 char *p=NULL, *q=NULL;
319 int len;
321 while (1) {
322 if (!stream_read_line (st, line, LINE_LEN)) return NULL;
323 if (sscanf (line, "%d:%d:%d.%d,%d:%d:%d.%d",&a1,&a2,&a3,&a4,&b1,&b2,&b3,&b4) < 8) continue;
324 current->start = a1*360000+a2*6000+a3*100+a4;
325 current->end = b1*360000+b2*6000+b3*100+b4;
327 if (!stream_read_line (st, line, LINE_LEN)) return NULL;
329 p=q=line;
330 for (current->lines=1; current->lines < SUB_MAX_TEXT; current->lines++) {
331 for (q=p,len=0; *p && *p!='\r' && *p!='\n' && *p!='|' && strncmp(p,"[br]",4); p++,len++);
332 current->text[current->lines-1]=malloc (len+1);
333 if (!current->text[current->lines-1]) return ERR;
334 strncpy (current->text[current->lines-1], q, len);
335 current->text[current->lines-1][len]='\0';
336 if (!*p || *p=='\r' || *p=='\n') break;
337 if (*p=='|') p++;
338 else while (*p++!=']');
340 break;
342 return current;
345 static subtitle *sub_read_line_subviewer(stream_t *st,subtitle *current) {
346 char line[LINE_LEN+1];
347 int a1,a2,a3,a4,b1,b2,b3,b4;
348 char *p=NULL;
349 int i,len;
351 while (!current->text[0]) {
352 if (!stream_read_line (st, line, LINE_LEN)) return NULL;
353 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)
354 continue;
355 current->start = a1*360000+a2*6000+a3*100+a4/10;
356 current->end = b1*360000+b2*6000+b3*100+b4/10;
357 for (i=0; i<SUB_MAX_TEXT;) {
358 int blank = 1;
359 if (!stream_read_line (st, line, LINE_LEN)) break;
360 len=0;
361 for (p=line; *p!='\n' && *p!='\r' && *p; p++,len++)
362 if (*p != ' ' && *p != '\t')
363 blank = 0;
364 if (len && !blank) {
365 int j=0,skip=0;
366 char *curptr=current->text[i]=malloc (len+1);
367 if (!current->text[i]) return ERR;
368 //strncpy (current->text[i], line, len); current->text[i][len]='\0';
369 for(; j<len; j++) {
370 /* let's filter html tags ::atmos */
371 if(line[j]=='>') {
372 skip=0;
373 continue;
375 if(line[j]=='<') {
376 skip=1;
377 continue;
379 if(skip) {
380 continue;
382 *curptr=line[j];
383 curptr++;
385 *curptr='\0';
387 i++;
388 } else {
389 break;
392 current->lines=i;
394 return current;
397 static subtitle *sub_read_line_subviewer2(stream_t *st,subtitle *current) {
398 char line[LINE_LEN+1];
399 int a1,a2,a3,a4;
400 char *p=NULL;
401 int i,len;
403 while (!current->text[0]) {
404 if (!stream_read_line (st, line, LINE_LEN)) return NULL;
405 if (line[0]!='{')
406 continue;
407 if ((len=sscanf (line, "{T %d:%d:%d:%d",&a1,&a2,&a3,&a4)) < 4)
408 continue;
409 current->start = a1*360000+a2*6000+a3*100+a4/10;
410 for (i=0; i<SUB_MAX_TEXT;) {
411 if (!stream_read_line (st, line, LINE_LEN)) break;
412 if (line[0]=='}') break;
413 len=0;
414 for (p=line; *p!='\n' && *p!='\r' && *p; ++p,++len);
415 if (len) {
416 current->text[i]=malloc (len+1);
417 if (!current->text[i]) return ERR;
418 strncpy (current->text[i], line, len); current->text[i][len]='\0';
419 ++i;
420 } else {
421 break;
424 current->lines=i;
426 return current;
430 static subtitle *sub_read_line_vplayer(stream_t *st,subtitle *current) {
431 char line[LINE_LEN+1];
432 int a1,a2,a3;
433 char *p=NULL, *next,separator;
434 int i,len,plen;
436 while (!current->text[0]) {
437 if (!stream_read_line (st, line, LINE_LEN)) return NULL;
438 if ((len=sscanf (line, "%d:%d:%d%c%n",&a1,&a2,&a3,&separator,&plen)) < 4)
439 continue;
441 if (!(current->start = a1*360000+a2*6000+a3*100))
442 continue;
443 /* removed by wodzu
444 p=line;
445 // finds the body of the subtitle
446 for (i=0; i<3; i++){
447 p=strchr(p,':');
448 if (p==NULL) break;
449 ++p;
451 if (p==NULL) {
452 printf("SUB: Skipping incorrect subtitle line!\n");
453 continue;
456 // by wodzu: hey! this time we know what length it has! what is
457 // that magic for? it can't deal with space instead of third
458 // colon! look, what simple it can be:
459 p = &line[ plen ];
461 i=0;
462 if (*p!='|') {
464 next = p,i=0;
465 while ((next =sub_readtext (next, &(current->text[i])))) {
466 if (current->text[i]==ERR) {return ERR;}
467 i++;
468 if (i>=SUB_MAX_TEXT) { mp_msg(MSGT_SUBREADER,MSGL_WARN,"Too many lines in a subtitle\n");current->lines=i;return current;}
470 current->lines=i+1;
473 return current;
476 static subtitle *sub_read_line_rt(stream_t *st,subtitle *current) {
477 //TODO: This format uses quite rich (sub/super)set of xhtml
478 // I couldn't check it since DTD is not included.
479 // WARNING: full XML parses can be required for proper parsing
480 char line[LINE_LEN+1];
481 int a1,a2,a3,a4,b1,b2,b3,b4;
482 char *p=NULL,*next=NULL;
483 int i,len,plen;
485 while (!current->text[0]) {
486 if (!stream_read_line (st, line, LINE_LEN)) return NULL;
487 //TODO: it seems that format of time is not easily determined, it may be 1:12, 1:12.0 or 0:1:12.0
488 //to describe the same moment in time. Maybe there are even more formats in use.
489 //if ((len=sscanf (line, "<Time Begin=\"%d:%d:%d.%d\" End=\"%d:%d:%d.%d\"",&a1,&a2,&a3,&a4,&b1,&b2,&b3,&b4)) < 8)
490 plen=a1=a2=a3=a4=b1=b2=b3=b4=0;
491 if (
492 ((len=sscanf (line, "<%*[tT]ime %*[bB]egin=\"%d.%d\" %*[Ee]nd=\"%d.%d\"%*[^<]<clear/>%n",&a3,&a4,&b3,&b4,&plen)) < 4) &&
493 ((len=sscanf (line, "<%*[tT]ime %*[bB]egin=\"%d.%d\" %*[Ee]nd=\"%d:%d.%d\"%*[^<]<clear/>%n",&a3,&a4,&b2,&b3,&b4,&plen)) < 5) &&
494 ((len=sscanf (line, "<%*[tT]ime %*[bB]egin=\"%d:%d\" %*[Ee]nd=\"%d:%d\"%*[^<]<clear/>%n",&a2,&a3,&b2,&b3,&plen)) < 4) &&
495 ((len=sscanf (line, "<%*[tT]ime %*[bB]egin=\"%d:%d\" %*[Ee]nd=\"%d:%d.%d\"%*[^<]<clear/>%n",&a2,&a3,&b2,&b3,&b4,&plen)) < 5) &&
496 // ((len=sscanf (line, "<%*[tT]ime %*[bB]egin=\"%d:%d.%d\" %*[Ee]nd=\"%d:%d\"%*[^<]<clear/>%n",&a2,&a3,&a4,&b2,&b3,&plen)) < 5) &&
497 ((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) &&
498 ((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) &&
499 //now try it without end time
500 ((len=sscanf (line, "<%*[tT]ime %*[bB]egin=\"%d.%d\"%*[^<]<clear/>%n",&a3,&a4,&plen)) < 2) &&
501 ((len=sscanf (line, "<%*[tT]ime %*[bB]egin=\"%d:%d\"%*[^<]<clear/>%n",&a2,&a3,&plen)) < 2) &&
502 ((len=sscanf (line, "<%*[tT]ime %*[bB]egin=\"%d:%d.%d\"%*[^<]<clear/>%n",&a2,&a3,&a4,&plen)) < 3) &&
503 ((len=sscanf (line, "<%*[tT]ime %*[bB]egin=\"%d:%d:%d.%d\"%*[^<]<clear/>%n",&a1,&a2,&a3,&a4,&plen)) < 4)
505 continue;
506 current->start = a1*360000+a2*6000+a3*100+a4/10;
507 current->end = b1*360000+b2*6000+b3*100+b4/10;
508 if (b1 == 0 && b2 == 0 && b3 == 0 && b4 == 0)
509 current->end = current->start+200;
510 p=line; p+=plen;i=0;
511 // TODO: I don't know what kind of convention is here for marking multiline subs, maybe <br/> like in xml?
512 next = strstr(line,"<clear/>");
513 if(next && strlen(next)>8){
514 next+=8;i=0;
515 while ((next =sub_readtext (next, &(current->text[i])))) {
516 if (current->text[i]==ERR) {return ERR;}
517 i++;
518 if (i>=SUB_MAX_TEXT) { mp_msg(MSGT_SUBREADER,MSGL_WARN,"Too many lines in a subtitle\n");current->lines=i;return current;}
521 current->lines=i+1;
523 return current;
526 static subtitle *sub_read_line_ssa(stream_t *st,subtitle *current) {
528 * Sub Station Alpha v4 (and v2?) scripts have 9 commas before subtitle
529 * other Sub Station Alpha scripts have only 8 commas before subtitle
530 * Reading the "ScriptType:" field is not reliable since many scripts appear
531 * w/o it
533 * http://www.scriptclub.org is a good place to find more examples
534 * http://www.eswat.demon.co.uk is where the SSA specs can be found
536 int comma;
537 static int max_comma = 32; /* let's use 32 for the case that the */
538 /* amount of commas increase with newer SSA versions */
540 int hour1, min1, sec1, hunsec1,
541 hour2, min2, sec2, hunsec2, nothing;
542 int num;
544 char line[LINE_LEN+1],
545 line3[LINE_LEN+1],
546 *line2;
547 char *tmp;
549 do {
550 if (!stream_read_line (st, line, LINE_LEN)) return NULL;
551 } while (sscanf (line, "Dialogue: Marked=%d,%d:%d:%d.%d,%d:%d:%d.%d,"
552 "%[^\n\r]", &nothing,
553 &hour1, &min1, &sec1, &hunsec1,
554 &hour2, &min2, &sec2, &hunsec2,
555 line3) < 9
557 sscanf (line, "Dialogue: %d,%d:%d:%d.%d,%d:%d:%d.%d,"
558 "%[^\n\r]", &nothing,
559 &hour1, &min1, &sec1, &hunsec1,
560 &hour2, &min2, &sec2, &hunsec2,
561 line3) < 9 );
563 line2=strchr(line3, ',');
565 for (comma = 4; comma < max_comma; comma ++)
567 tmp = line2;
568 if(!(tmp=strchr(++tmp, ','))) break;
569 if(*(++tmp) == ' ') break;
570 /* a space after a comma means we're already in a sentence */
571 line2 = tmp;
574 if(comma < max_comma)max_comma = comma;
575 /* eliminate the trailing comma */
576 if(*line2 == ',') line2++;
578 current->lines=0;num=0;
579 current->start = 360000*hour1 + 6000*min1 + 100*sec1 + hunsec1;
580 current->end = 360000*hour2 + 6000*min2 + 100*sec2 + hunsec2;
582 while (((tmp=strstr(line2, "\\n")) != NULL) || ((tmp=strstr(line2, "\\N")) != NULL) ){
583 current->text[num]=malloc(tmp-line2+1);
584 strncpy (current->text[num], line2, tmp-line2);
585 current->text[num][tmp-line2]='\0';
586 line2=tmp+2;
587 num++;
588 current->lines++;
589 if (current->lines >= SUB_MAX_TEXT) return current;
592 current->text[num]=strdup(line2);
593 current->lines++;
595 return current;
598 static void sub_pp_ssa(subtitle *sub) {
599 int l=sub->lines;
600 char *so,*de,*start;
602 while (l){
603 /* eliminate any text enclosed with {}, they are font and color settings */
604 so=de=sub->text[--l];
605 while (*so) {
606 if(*so == '{' && so[1]=='\\') {
607 for (start=so; *so && *so!='}'; so++);
608 if(*so) so++; else so=start;
610 if(*so) {
611 *de=*so;
612 so++; de++;
615 *de=*so;
620 * PJS subtitles reader.
621 * That's the "Phoenix Japanimation Society" format.
622 * I found some of them in http://www.scriptsclub.org/ (used for anime).
623 * The time is in tenths of second.
625 * by set, based on code by szabi (dunnowhat sub format ;-)
627 static subtitle *sub_read_line_pjs(stream_t *st,subtitle *current) {
628 char line[LINE_LEN+1];
629 char text[LINE_LEN+1], *s, *d;
631 if (!stream_read_line (st, line, LINE_LEN))
632 return NULL;
633 /* skip spaces */
634 for (s=line; *s && isspace(*s); s++);
635 /* allow empty lines at the end of the file */
636 if (*s==0)
637 return NULL;
638 /* get the time */
639 if (sscanf (s, "%ld,%ld,", &(current->start),
640 &(current->end)) <2) {
641 return ERR;
643 /* the files I have are in tenths of second */
644 current->start *= 10;
645 current->end *= 10;
646 /* walk to the beggining of the string */
647 for (; *s; s++) if (*s==',') break;
648 if (*s) {
649 for (s++; *s; s++) if (*s==',') break;
650 if (*s) s++;
652 if (*s!='"') {
653 return ERR;
655 /* copy the string to the text buffer */
656 for (s++, d=text; *s && *s!='"'; s++, d++)
657 *d=*s;
658 *d=0;
659 current->text[0] = strdup(text);
660 current->lines = 1;
662 return current;
665 static subtitle *sub_read_line_mpsub(stream_t *st, subtitle *current) {
666 char line[LINE_LEN+1];
667 float a,b;
668 int num=0;
669 char *p, *q;
673 if (!stream_read_line(st, line, LINE_LEN)) return NULL;
674 } while (sscanf (line, "%f %f", &a, &b) !=2);
676 mpsub_position += a*mpsub_multiplier;
677 current->start=(int) mpsub_position;
678 mpsub_position += b*mpsub_multiplier;
679 current->end=(int) mpsub_position;
681 while (num < SUB_MAX_TEXT) {
682 if (!stream_read_line (st, line, LINE_LEN)) {
683 if (num == 0) return NULL;
684 else return current;
686 p=line;
687 while (isspace(*p)) p++;
688 if (eol(*p) && num > 0) return current;
689 if (eol(*p)) return NULL;
691 for (q=p; !eol(*q); q++);
692 *q='\0';
693 if (strlen(p)) {
694 current->text[num]=strdup(p);
695 // printf (">%s<\n",p);
696 current->lines = ++num;
697 } else {
698 if (num) return current;
699 else return NULL;
702 return NULL; // we should have returned before if it's OK
705 #ifndef CONFIG_SORTSUB
706 //we don't need this if we use previous_sub_end
707 subtitle *previous_aqt_sub = NULL;
708 #endif
710 static subtitle *sub_read_line_aqt(stream_t *st,subtitle *current) {
711 char line[LINE_LEN+1];
712 char *next;
713 int i;
715 while (1) {
716 // try to locate next subtitle
717 if (!stream_read_line (st, line, LINE_LEN))
718 return NULL;
719 if (!(sscanf (line, "-->> %ld", &(current->start)) <1))
720 break;
723 #ifdef CONFIG_SORTSUB
724 previous_sub_end = (current->start) ? current->start - 1 : 0;
725 #else
726 if (previous_aqt_sub != NULL)
727 previous_aqt_sub->end = current->start-1;
729 previous_aqt_sub = current;
730 #endif
732 if (!stream_read_line (st, line, LINE_LEN))
733 return NULL;
735 sub_readtext((char *) &line,&current->text[0]);
736 current->lines = 1;
737 current->end = current->start; // will be corrected by next subtitle
739 if (!stream_read_line (st, line, LINE_LEN))
740 return current;
742 next = line,i=1;
743 while ((next =sub_readtext (next, &(current->text[i])))) {
744 if (current->text[i]==ERR) {return ERR;}
745 i++;
746 if (i>=SUB_MAX_TEXT) { mp_msg(MSGT_SUBREADER,MSGL_WARN,"Too many lines in a subtitle\n");current->lines=i;return current;}
748 current->lines=i+1;
750 if (!strlen(current->text[0]) && !strlen(current->text[1])) {
751 #ifdef CONFIG_SORTSUB
752 previous_sub_end = 0;
753 #else
754 // void subtitle -> end of previous marked and exit
755 previous_aqt_sub = NULL;
756 #endif
757 return NULL;
760 return current;
763 #ifndef CONFIG_SORTSUB
764 subtitle *previous_subrip09_sub = NULL;
765 #endif
767 static subtitle *sub_read_line_subrip09(stream_t *st,subtitle *current) {
768 char line[LINE_LEN+1];
769 int a1,a2,a3;
770 char * next=NULL;
771 int i,len;
773 while (1) {
774 // try to locate next subtitle
775 if (!stream_read_line (st, line, LINE_LEN))
776 return NULL;
777 if (!((len=sscanf (line, "[%d:%d:%d]",&a1,&a2,&a3)) < 3))
778 break;
781 current->start = a1*360000+a2*6000+a3*100;
783 #ifdef CONFIG_SORTSUB
784 previous_sub_end = (current->start) ? current->start - 1 : 0;
785 #else
786 if (previous_subrip09_sub != NULL)
787 previous_subrip09_sub->end = current->start-1;
789 previous_subrip09_sub = current;
790 #endif
792 if (!stream_read_line (st, line, LINE_LEN))
793 return NULL;
795 next = line,i=0;
797 current->text[0]=""; // just to be sure that string is clear
799 while ((next =sub_readtext (next, &(current->text[i])))) {
800 if (current->text[i]==ERR) {return ERR;}
801 i++;
802 if (i>=SUB_MAX_TEXT) { mp_msg(MSGT_SUBREADER,MSGL_WARN,"Too many lines in a subtitle\n");current->lines=i;return current;}
804 current->lines=i+1;
806 if (!strlen(current->text[0]) && (i==0)) {
807 #ifdef CONFIG_SORTSUB
808 previous_sub_end = 0;
809 #else
810 // void subtitle -> end of previous marked and exit
811 previous_subrip09_sub = NULL;
812 #endif
813 return NULL;
816 return current;
819 static subtitle *sub_read_line_jacosub(stream_t* st, subtitle * current)
821 char line1[LINE_LEN], line2[LINE_LEN], directive[LINE_LEN], *p, *q;
822 unsigned a1, a2, a3, a4, b1, b2, b3, b4, comment = 0;
823 static unsigned jacoTimeres = 30;
824 static int jacoShift = 0;
826 memset(current, 0, sizeof(subtitle));
827 memset(line1, 0, LINE_LEN);
828 memset(line2, 0, LINE_LEN);
829 memset(directive, 0, LINE_LEN);
830 while (!current->text[0]) {
831 if (!stream_read_line(st, line1, LINE_LEN)) {
832 return NULL;
834 if (sscanf
835 (line1, "%u:%u:%u.%u %u:%u:%u.%u %[^\n\r]", &a1, &a2, &a3, &a4,
836 &b1, &b2, &b3, &b4, line2) < 9) {
837 if (sscanf(line1, "@%u @%u %[^\n\r]", &a4, &b4, line2) < 3) {
838 if (line1[0] == '#') {
839 int hours = 0, minutes = 0, seconds, delta, inverter =
841 unsigned units = jacoShift;
842 switch (toupper(line1[1])) {
843 case 'S':
844 if (isalpha(line1[2])) {
845 delta = 6;
846 } else {
847 delta = 2;
849 if (sscanf(&line1[delta], "%d", &hours)) {
850 if (hours < 0) {
851 hours *= -1;
852 inverter = -1;
854 if (sscanf(&line1[delta], "%*d:%d", &minutes)) {
855 if (sscanf
856 (&line1[delta], "%*d:%*d:%d",
857 &seconds)) {
858 sscanf(&line1[delta], "%*d:%*d:%*d.%d",
859 &units);
860 } else {
861 hours = 0;
862 sscanf(&line1[delta], "%d:%d.%d",
863 &minutes, &seconds, &units);
864 minutes *= inverter;
866 } else {
867 hours = minutes = 0;
868 sscanf(&line1[delta], "%d.%d", &seconds,
869 &units);
870 seconds *= inverter;
872 jacoShift =
873 ((hours * 3600 + minutes * 60 +
874 seconds) * jacoTimeres +
875 units) * inverter;
877 break;
878 case 'T':
879 if (isalpha(line1[2])) {
880 delta = 8;
881 } else {
882 delta = 2;
884 sscanf(&line1[delta], "%u", &jacoTimeres);
885 break;
888 continue;
889 } else {
890 current->start =
891 (unsigned long) ((a4 + jacoShift) * 100.0 /
892 jacoTimeres);
893 current->end =
894 (unsigned long) ((b4 + jacoShift) * 100.0 /
895 jacoTimeres);
897 } else {
898 current->start =
899 (unsigned
900 long) (((a1 * 3600 + a2 * 60 + a3) * jacoTimeres + a4 +
901 jacoShift) * 100.0 / jacoTimeres);
902 current->end =
903 (unsigned
904 long) (((b1 * 3600 + b2 * 60 + b3) * jacoTimeres + b4 +
905 jacoShift) * 100.0 / jacoTimeres);
907 current->lines = 0;
908 p = line2;
909 while ((*p == ' ') || (*p == '\t')) {
910 ++p;
912 if (isalpha(*p)||*p == '[') {
913 int cont, jLength;
915 if (sscanf(p, "%s %[^\n\r]", directive, line1) < 2)
916 return (subtitle *) ERR;
917 jLength = strlen(directive);
918 for (cont = 0; cont < jLength; ++cont) {
919 if (isalpha(*(directive + cont)))
920 *(directive + cont) = toupper(*(directive + cont));
922 if ((strstr(directive, "RDB") != NULL)
923 || (strstr(directive, "RDC") != NULL)
924 || (strstr(directive, "RLB") != NULL)
925 || (strstr(directive, "RLG") != NULL)) {
926 continue;
928 if (strstr(directive, "JL") != NULL) {
929 current->alignment = SUB_ALIGNMENT_BOTTOMLEFT;
930 } else if (strstr(directive, "JR") != NULL) {
931 current->alignment = SUB_ALIGNMENT_BOTTOMRIGHT;
932 } else {
933 current->alignment = SUB_ALIGNMENT_BOTTOMCENTER;
935 strcpy(line2, line1);
936 p = line2;
938 for (q = line1; (!eol(*p)) && (current->lines < SUB_MAX_TEXT); ++p) {
939 switch (*p) {
940 case '{':
941 comment++;
942 break;
943 case '}':
944 if (comment) {
945 --comment;
946 //the next line to get rid of a blank after the comment
947 if ((*(p + 1)) == ' ')
948 p++;
950 break;
951 case '~':
952 if (!comment) {
953 *q = ' ';
954 ++q;
956 break;
957 case ' ':
958 case '\t':
959 if ((*(p + 1) == ' ') || (*(p + 1) == '\t'))
960 break;
961 if (!comment) {
962 *q = ' ';
963 ++q;
965 break;
966 case '\\':
967 if (*(p + 1) == 'n') {
968 *q = '\0';
969 q = line1;
970 current->text[current->lines++] = strdup(line1);
971 ++p;
972 break;
974 if ((toupper(*(p + 1)) == 'C')
975 || (toupper(*(p + 1)) == 'F')) {
976 ++p,++p;
977 break;
979 if ((*(p + 1) == 'B') || (*(p + 1) == 'b') || (*(p + 1) == 'D') || //actually this means "insert current date here"
980 (*(p + 1) == 'I') || (*(p + 1) == 'i') || (*(p + 1) == 'N') || (*(p + 1) == 'T') || //actually this means "insert current time here"
981 (*(p + 1) == 'U') || (*(p + 1) == 'u')) {
982 ++p;
983 break;
985 if ((*(p + 1) == '\\') ||
986 (*(p + 1) == '~') || (*(p + 1) == '{')) {
987 ++p;
988 } else if (eol(*(p + 1))) {
989 if (!stream_read_line(st, directive, LINE_LEN))
990 return NULL;
991 trail_space(directive);
992 strncat(line2, directive,
993 (LINE_LEN > 511) ? LINE_LEN : 511);
994 break;
996 default:
997 if (!comment) {
998 *q = *p;
999 ++q;
1001 } //-- switch
1002 } //-- for
1003 *q = '\0';
1004 current->text[current->lines] = strdup(line1);
1005 } //-- while
1006 current->lines++;
1007 return current;
1010 static int sub_autodetect (stream_t* st, int *uses_time) {
1011 char line[LINE_LEN+1];
1012 int i,j=0;
1013 char p;
1015 while (j < 100) {
1016 j++;
1017 if (!stream_read_line (st, line, LINE_LEN))
1018 return SUB_INVALID;
1020 if (sscanf (line, "{%d}{%d}", &i, &i)==2)
1021 {*uses_time=0;return SUB_MICRODVD;}
1022 if (sscanf (line, "{%d}{}", &i)==1)
1023 {*uses_time=0;return SUB_MICRODVD;}
1024 if (sscanf (line, "[%d][%d]", &i, &i)==2)
1025 {*uses_time=1;return SUB_MPL2;}
1026 if (sscanf (line, "%d:%d:%d.%d,%d:%d:%d.%d", &i, &i, &i, &i, &i, &i, &i, &i)==8)
1027 {*uses_time=1;return SUB_SUBRIP;}
1028 if (sscanf (line, "%d:%d:%d%[,.:]%d --> %d:%d:%d%[,.:]%d", &i, &i, &i, (char *)&i, &i, &i, &i, &i, (char *)&i, &i)==10)
1029 {*uses_time=1;return SUB_SUBVIEWER;}
1030 if (sscanf (line, "{T %d:%d:%d:%d",&i, &i, &i, &i)==4)
1031 {*uses_time=1;return SUB_SUBVIEWER2;}
1032 if (strstr (line, "<SAMI>"))
1033 {*uses_time=1; return SUB_SAMI;}
1034 if (sscanf(line, "%d:%d:%d.%d %d:%d:%d.%d", &i, &i, &i, &i, &i, &i, &i, &i) == 8)
1035 {*uses_time = 1; return SUB_JACOSUB;}
1036 if (sscanf(line, "@%d @%d", &i, &i) == 2)
1037 {*uses_time = 1; return SUB_JACOSUB;}
1038 if (sscanf (line, "%d:%d:%d:", &i, &i, &i )==3)
1039 {*uses_time=1;return SUB_VPLAYER;}
1040 if (sscanf (line, "%d:%d:%d ", &i, &i, &i )==3)
1041 {*uses_time=1;return SUB_VPLAYER;}
1042 //TODO: just checking if first line of sub starts with "<" is WAY
1043 // too weak test for RT
1044 // Please someone who knows the format of RT... FIX IT!!!
1045 // It may conflict with other sub formats in the future (actually it doesn't)
1046 if ( *line == '<' )
1047 {*uses_time=1;return SUB_RT;}
1049 if (!memcmp(line, "Dialogue: Marked", 16))
1050 {*uses_time=1; return SUB_SSA;}
1051 if (!memcmp(line, "Dialogue: ", 10))
1052 {*uses_time=1; return SUB_SSA;}
1053 if (sscanf (line, "%d,%d,\"%c", &i, &i, (char *) &i) == 3)
1054 {*uses_time=1;return SUB_PJS;}
1055 if (sscanf (line, "FORMAT=%d", &i) == 1)
1056 {*uses_time=0; return SUB_MPSUB;}
1057 if (sscanf (line, "FORMAT=TIM%c", &p)==1 && p=='E')
1058 {*uses_time=1; return SUB_MPSUB;}
1059 if (strstr (line, "-->>"))
1060 {*uses_time=0; return SUB_AQTITLE;}
1061 if (sscanf (line, "[%d:%d:%d]", &i, &i, &i)==3)
1062 {*uses_time=1;return SUB_SUBRIP09;}
1065 return SUB_INVALID; // too many bad lines
1068 extern int sub_utf8;
1069 int sub_utf8_prev=0;
1071 extern float sub_delay;
1072 extern float sub_fps;
1074 #ifdef CONFIG_ICONV
1075 static iconv_t icdsc = (iconv_t)(-1);
1077 void subcp_open (stream_t *st)
1079 char *tocp = "UTF-8";
1081 if (sub_cp){
1082 const char *cp_tmp = sub_cp;
1083 #ifdef CONFIG_ENCA
1084 char enca_lang[3], enca_fallback[100];
1085 if (sscanf(sub_cp, "enca:%2s:%99s", enca_lang, enca_fallback) == 2
1086 || sscanf(sub_cp, "ENCA:%2s:%99s", enca_lang, enca_fallback) == 2) {
1087 if (st && st->flags & STREAM_SEEK ) {
1088 cp_tmp = guess_cp(st, enca_lang, enca_fallback);
1089 } else {
1090 cp_tmp = enca_fallback;
1091 if (st)
1092 mp_msg(MSGT_SUBREADER,MSGL_WARN,"SUB: enca failed, stream must be seekable.\n");
1095 #endif
1096 if ((icdsc = iconv_open (tocp, cp_tmp)) != (iconv_t)(-1)){
1097 mp_msg(MSGT_SUBREADER,MSGL_V,"SUB: opened iconv descriptor.\n");
1098 sub_utf8 = 2;
1099 } else
1100 mp_msg(MSGT_SUBREADER,MSGL_ERR,"SUB: error opening iconv descriptor.\n");
1104 void subcp_close (void)
1106 if (icdsc != (iconv_t)(-1)){
1107 (void) iconv_close (icdsc);
1108 icdsc = (iconv_t)(-1);
1109 mp_msg(MSGT_SUBREADER,MSGL_V,"SUB: closed iconv descriptor.\n");
1113 subtitle* subcp_recode (subtitle *sub)
1115 int l=sub->lines;
1116 size_t ileft, oleft;
1117 char *op, *ip, *ot;
1118 if(icdsc == (iconv_t)(-1)) return sub;
1120 while (l){
1121 ip = sub->text[--l];
1122 ileft = strlen(ip);
1123 oleft = 4 * ileft;
1125 if (!(ot = malloc(oleft + 1))){
1126 mp_msg(MSGT_SUBREADER,MSGL_WARN,"SUB: error allocating mem.\n");
1127 continue;
1129 op = ot;
1130 if (iconv(icdsc, &ip, &ileft,
1131 &op, &oleft) == (size_t)(-1)) {
1132 mp_msg(MSGT_SUBREADER,MSGL_WARN,"SUB: error recoding line.\n");
1133 free(ot);
1134 continue;
1136 // In some stateful encodings, we must clear the state to handle the last character
1137 if (iconv(icdsc, NULL, NULL,
1138 &op, &oleft) == (size_t)(-1)) {
1139 mp_msg(MSGT_SUBREADER,MSGL_WARN,"SUB: error recoding line, can't clear encoding state.\n");
1141 *op='\0' ;
1142 free (sub->text[l]);
1143 sub->text[l] = ot;
1145 return sub;
1147 #endif
1149 #ifdef CONFIG_FRIBIDI
1150 #ifndef max
1151 #define max(a,b) (((a)>(b))?(a):(b))
1152 #endif
1153 subtitle* sub_fribidi (subtitle *sub, int sub_utf8)
1155 FriBidiChar logical[LINE_LEN+1], visual[LINE_LEN+1]; // Hopefully these two won't smash the stack
1156 char *ip = NULL, *op = NULL;
1157 FriBidiCharType base;
1158 size_t len,orig_len;
1159 int l=sub->lines;
1160 int char_set_num;
1161 fribidi_boolean log2vis;
1162 if(flip_hebrew) { // Please fix the indentation someday
1163 fribidi_set_mirroring(1);
1164 fribidi_set_reorder_nsm(0);
1166 if( sub_utf8 == 0 ) {
1167 char_set_num = fribidi_parse_charset (fribidi_charset?fribidi_charset:"ISO8859-8");
1168 }else {
1169 char_set_num = fribidi_parse_charset ("UTF-8");
1171 while (l) {
1172 ip = sub->text[--l];
1173 orig_len = len = strlen( ip ); // We assume that we don't use full unicode, only UTF-8 or ISO8859-x
1174 if(len > LINE_LEN) {
1175 mp_msg(MSGT_SUBREADER,MSGL_WARN,"SUB: sub->text is longer than LINE_LEN.\n");
1176 l++;
1177 break;
1179 len = fribidi_charset_to_unicode (char_set_num, ip, len, logical);
1180 base = fribidi_flip_commas?FRIBIDI_TYPE_ON:FRIBIDI_TYPE_L;
1181 log2vis = fribidi_log2vis (logical, len, &base,
1182 /* output */
1183 visual, NULL, NULL, NULL);
1184 if(log2vis) {
1185 len = fribidi_remove_bidi_marks (visual, len, NULL, NULL,
1186 NULL);
1187 if((op = malloc((max(2*orig_len,2*len) + 1))) == NULL) {
1188 mp_msg(MSGT_SUBREADER,MSGL_WARN,"SUB: error allocating mem.\n");
1189 l++;
1190 break;
1192 fribidi_unicode_to_charset ( char_set_num, visual, len,op);
1193 free (ip);
1194 sub->text[l] = op;
1197 if (l){
1198 for (l = sub->lines; l;)
1199 free (sub->text[--l]);
1200 return ERR;
1203 return sub;
1206 #endif
1208 static void adjust_subs_time(subtitle* sub, float subtime, float fps, int block,
1209 int sub_num, int sub_uses_time) {
1210 int n,m;
1211 subtitle* nextsub;
1212 int i = sub_num;
1213 unsigned long subfms = (sub_uses_time ? 100 : fps) * subtime;
1214 unsigned long overlap = (sub_uses_time ? 100 : fps) / 5; // 0.2s
1216 n=m=0;
1217 if (i) for (;;){
1218 if (sub->end <= sub->start){
1219 sub->end = sub->start + subfms;
1220 m++;
1221 n++;
1223 if (!--i) break;
1224 nextsub = sub + 1;
1225 if(block){
1226 if ((sub->end > nextsub->start) && (sub->end <= nextsub->start + overlap)) {
1227 // these subtitles overlap for less than 0.2 seconds
1228 // and would result in very short overlapping subtitle
1229 // so let's fix the problem here, before overlapping code
1230 // get its hands on them
1231 unsigned delta = sub->end - nextsub->start, half = delta / 2;
1232 sub->end -= half + 1;
1233 nextsub->start += delta - half;
1235 if (sub->end >= nextsub->start){
1236 sub->end = nextsub->start - 1;
1237 if (sub->end - sub->start > subfms)
1238 sub->end = sub->start + subfms;
1239 if (!m)
1240 n++;
1244 /* Theory:
1245 * Movies are often converted from FILM (24 fps)
1246 * to PAL (25) by simply speeding it up, so we
1247 * to multiply the original timestmaps by
1248 * (Movie's FPS / Subtitle's (guessed) FPS)
1249 * so eg. for 23.98 fps movie and PAL time based
1250 * subtitles we say -subfps 25 and we're fine!
1253 /* timed sub fps correction ::atmos */
1254 /* the frame-based case is handled in mpcommon.c
1255 * where find_sub is called */
1256 if(sub_uses_time && sub_fps) {
1257 sub->start *= sub_fps/fps;
1258 sub->end *= sub_fps/fps;
1261 sub = nextsub;
1262 m = 0;
1264 if (n) mp_msg(MSGT_SUBREADER,MSGL_V,"SUB: Adjusted %d subtitle(s).\n", n);
1267 struct subreader {
1268 subtitle * (*read)(stream_t *st,subtitle *dest);
1269 void (*post)(subtitle *dest);
1270 const char *name;
1273 #ifdef CONFIG_ENCA
1274 const char* guess_buffer_cp(unsigned char* buffer, int buflen, const char *preferred_language, const char *fallback)
1276 const char **languages;
1277 size_t langcnt;
1278 EncaAnalyser analyser;
1279 EncaEncoding encoding;
1280 const char *detected_sub_cp = NULL;
1281 int i;
1283 languages = enca_get_languages(&langcnt);
1284 mp_msg(MSGT_SUBREADER, MSGL_V, "ENCA supported languages: ");
1285 for (i = 0; i < langcnt; i++) {
1286 mp_msg(MSGT_SUBREADER, MSGL_V, "%s ", languages[i]);
1288 mp_msg(MSGT_SUBREADER, MSGL_V, "\n");
1290 for (i = 0; i < langcnt; i++) {
1291 if (strcasecmp(languages[i], preferred_language) != 0) continue;
1292 analyser = enca_analyser_alloc(languages[i]);
1293 encoding = enca_analyse_const(analyser, buffer, buflen);
1294 enca_analyser_free(analyser);
1295 if (encoding.charset != ENCA_CS_UNKNOWN) {
1296 detected_sub_cp = enca_charset_name(encoding.charset, ENCA_NAME_STYLE_ICONV);
1297 break;
1301 free(languages);
1303 if (!detected_sub_cp) {
1304 detected_sub_cp = fallback;
1305 mp_msg(MSGT_SUBREADER, MSGL_INFO, "ENCA detection failed: fallback to %s\n", fallback);
1306 }else{
1307 mp_msg(MSGT_SUBREADER, MSGL_INFO, "ENCA detected charset: %s\n", detected_sub_cp);
1310 return detected_sub_cp;
1313 #define MAX_GUESS_BUFFER_SIZE (256*1024)
1314 const char* guess_cp(stream_t *st, const char *preferred_language, const char *fallback)
1316 size_t buflen;
1317 unsigned char *buffer;
1318 const char *detected_sub_cp = NULL;
1320 buffer = malloc(MAX_GUESS_BUFFER_SIZE);
1321 buflen = stream_read(st,buffer, MAX_GUESS_BUFFER_SIZE);
1323 detected_sub_cp = guess_buffer_cp(buffer, buflen, preferred_language, fallback);
1325 free(buffer);
1326 stream_reset(st);
1327 stream_seek(st,0);
1329 return detected_sub_cp;
1331 #undef MAX_GUESS_BUFFER_SIZE
1332 #endif
1334 sub_data* sub_read_file (char *filename, float fps) {
1335 stream_t* fd;
1336 int n_max, n_first, i, j, sub_first, sub_orig;
1337 subtitle *first, *second, *sub, *return_sub;
1338 sub_data *subt_data;
1339 int uses_time = 0, sub_num = 0, sub_errs = 0;
1340 struct subreader sr[]=
1342 { sub_read_line_microdvd, NULL, "microdvd" },
1343 { sub_read_line_subrip, NULL, "subrip" },
1344 { sub_read_line_subviewer, NULL, "subviewer" },
1345 { sub_read_line_sami, NULL, "sami" },
1346 { sub_read_line_vplayer, NULL, "vplayer" },
1347 { sub_read_line_rt, NULL, "rt" },
1348 { sub_read_line_ssa, sub_pp_ssa, "ssa" },
1349 { sub_read_line_pjs, NULL, "pjs" },
1350 { sub_read_line_mpsub, NULL, "mpsub" },
1351 { sub_read_line_aqt, NULL, "aqt" },
1352 { sub_read_line_subviewer2, NULL, "subviewer 2.0" },
1353 { sub_read_line_subrip09, NULL, "subrip 0.9" },
1354 { sub_read_line_jacosub, NULL, "jacosub" },
1355 { sub_read_line_mpl2, NULL, "mpl2" }
1357 struct subreader *srp;
1359 if(filename==NULL) return NULL; //qnx segfault
1360 i = 0;
1361 fd=open_stream (filename, NULL, &i); if (!fd) return NULL;
1363 sub_format=sub_autodetect (fd, &uses_time);
1364 mpsub_multiplier = (uses_time ? 100.0 : 1.0);
1365 if (sub_format==SUB_INVALID) {mp_msg(MSGT_SUBREADER,MSGL_WARN,"SUB: Could not determine file format\n");return NULL;}
1366 srp=sr+sub_format;
1367 mp_msg(MSGT_SUBREADER, MSGL_V, "SUB: Detected subtitle file format: %s\n", srp->name);
1369 stream_reset(fd);
1370 stream_seek(fd,0);
1372 #ifdef CONFIG_ICONV
1373 sub_utf8_prev=sub_utf8;
1375 int l,k;
1376 k = -1;
1377 if ((l=strlen(filename))>4){
1378 char *exts[] = {".utf", ".utf8", ".utf-8" };
1379 for (k=3;--k>=0;)
1380 if (l >= strlen(exts[k]) && !strcasecmp(filename+(l - strlen(exts[k])), exts[k])){
1381 sub_utf8 = 1;
1382 break;
1385 if (k<0) subcp_open(fd);
1387 #endif
1389 sub_num=0;n_max=32;
1390 first=malloc(n_max*sizeof(subtitle));
1391 if(!first){
1392 #ifdef CONFIG_ICONV
1393 subcp_close();
1394 sub_utf8=sub_utf8_prev;
1395 #endif
1396 return NULL;
1399 #ifdef CONFIG_SORTSUB
1400 sub = malloc(sizeof(subtitle));
1401 //This is to deal with those formats (AQT & Subrip) which define the end of a subtitle
1402 //as the beginning of the following
1403 previous_sub_end = 0;
1404 #endif
1405 while(1){
1406 if(sub_num>=n_max){
1407 n_max+=16;
1408 first=realloc(first,n_max*sizeof(subtitle));
1410 #ifndef CONFIG_SORTSUB
1411 sub = &first[sub_num];
1412 #endif
1413 memset(sub, '\0', sizeof(subtitle));
1414 sub=srp->read(fd,sub);
1415 if(!sub) break; // EOF
1416 #ifdef CONFIG_ICONV
1417 if ((sub!=ERR) && (sub_utf8 & 2)) sub=subcp_recode(sub);
1418 #endif
1419 #ifdef CONFIG_FRIBIDI
1420 if (sub!=ERR) sub=sub_fribidi(sub,sub_utf8);
1421 #endif
1422 if ( sub == ERR )
1424 #ifdef CONFIG_ICONV
1425 subcp_close();
1426 #endif
1427 if ( first ) free(first);
1428 return NULL;
1430 // Apply any post processing that needs recoding first
1431 if ((sub!=ERR) && !sub_no_text_pp && srp->post) srp->post(sub);
1432 #ifdef CONFIG_SORTSUB
1433 if(!sub_num || (first[sub_num - 1].start <= sub->start)){
1434 first[sub_num].start = sub->start;
1435 first[sub_num].end = sub->end;
1436 first[sub_num].lines = sub->lines;
1437 first[sub_num].alignment = sub->alignment;
1438 for(i = 0; i < sub->lines; ++i){
1439 first[sub_num].text[i] = sub->text[i];
1441 if (previous_sub_end){
1442 first[sub_num - 1].end = previous_sub_end;
1443 previous_sub_end = 0;
1445 } else {
1446 for(j = sub_num - 1; j >= 0; --j){
1447 first[j + 1].start = first[j].start;
1448 first[j + 1].end = first[j].end;
1449 first[j + 1].lines = first[j].lines;
1450 first[j + 1].alignment = first[j].alignment;
1451 for(i = 0; i < first[j].lines; ++i){
1452 first[j + 1].text[i] = first[j].text[i];
1454 if(!j || (first[j - 1].start <= sub->start)){
1455 first[j].start = sub->start;
1456 first[j].end = sub->end;
1457 first[j].lines = sub->lines;
1458 first[j].alignment = sub->alignment;
1459 for(i = 0; i < SUB_MAX_TEXT; ++i){
1460 first[j].text[i] = sub->text[i];
1462 if (previous_sub_end){
1463 first[j].end = first[j - 1].end;
1464 first[j - 1].end = previous_sub_end;
1465 previous_sub_end = 0;
1467 break;
1471 #endif
1472 if(sub==ERR) ++sub_errs; else ++sub_num; // Error vs. Valid
1475 free_stream(fd);
1477 #ifdef CONFIG_ICONV
1478 subcp_close();
1479 #endif
1481 // printf ("SUB: Subtitle format %s time.\n", uses_time?"uses":"doesn't use");
1482 mp_msg(MSGT_SUBREADER, MSGL_V,"SUB: Read %i subtitles, %i bad line(s).\n",
1483 sub_num, sub_errs);
1485 if(sub_num<=0){
1486 free(first);
1487 return NULL;
1490 // we do overlap if the user forced it (suboverlap_enable == 2) or
1491 // the user didn't forced no-overlapsub and the format is Jacosub or Ssa.
1492 // this is because usually overlapping subtitles are found in these formats,
1493 // while in others they are probably result of bad timing
1494 if ((suboverlap_enabled == 2) ||
1495 ((suboverlap_enabled) && ((sub_format == SUB_JACOSUB) || (sub_format == SUB_SSA)))) {
1496 adjust_subs_time(first, 6.0, fps, 0, sub_num, uses_time);/*~6 secs AST*/
1497 // here we manage overlapping subtitles
1498 sub_orig = sub_num;
1499 n_first = sub_num;
1500 sub_num = 0;
1501 second = NULL;
1502 // for each subtitle in first[] we deal with its 'block' of
1503 // bonded subtitles
1504 for (sub_first = 0; sub_first < n_first; ++sub_first) {
1505 unsigned long global_start = first[sub_first].start,
1506 global_end = first[sub_first].end, local_start, local_end;
1507 int lines_to_add = first[sub_first].lines, sub_to_add = 0,
1508 **placeholder = NULL, higher_line = 0, counter, start_block_sub = sub_num;
1509 char real_block = 1;
1511 // here we find the number of subtitles inside the 'block'
1512 // and its span interval. this works well only with sorted
1513 // subtitles
1514 while ((sub_first + sub_to_add + 1 < n_first) && (first[sub_first + sub_to_add + 1].start < global_end)) {
1515 ++sub_to_add;
1516 lines_to_add += first[sub_first + sub_to_add].lines;
1517 if (first[sub_first + sub_to_add].start < global_start) {
1518 global_start = first[sub_first + sub_to_add].start;
1520 if (first[sub_first + sub_to_add].end > global_end) {
1521 global_end = first[sub_first + sub_to_add].end;
1525 // we need a structure to keep trace of the screen lines
1526 // used by the subs, a 'placeholder'
1527 counter = 2 * sub_to_add + 1; // the maximum number of subs derived
1528 // from a block of sub_to_add+1 subs
1529 placeholder = malloc(sizeof(int *) * counter);
1530 for (i = 0; i < counter; ++i) {
1531 placeholder[i] = malloc(sizeof(int) * lines_to_add);
1532 for (j = 0; j < lines_to_add; ++j) {
1533 placeholder[i][j] = -1;
1537 counter = 0;
1538 local_end = global_start - 1;
1539 do {
1540 int ls;
1542 // here we find the beginning and the end of a new
1543 // subtitle in the block
1544 local_start = local_end + 1;
1545 local_end = global_end;
1546 for (j = 0; j <= sub_to_add; ++j) {
1547 if ((first[sub_first + j].start - 1 > local_start) && (first[sub_first + j].start - 1 < local_end)) {
1548 local_end = first[sub_first + j].start - 1;
1549 } else if ((first[sub_first + j].end > local_start) && (first[sub_first + j].end < local_end)) {
1550 local_end = first[sub_first + j].end;
1553 // here we allocate the screen lines to subs we must
1554 // display in current local_start-local_end interval.
1555 // if the subs were yet presents in the previous interval
1556 // they keep the same lines, otherside they get unused lines
1557 for (j = 0; j <= sub_to_add; ++j) {
1558 if ((first[sub_first + j].start <= local_end) && (first[sub_first + j].end > local_start)) {
1559 unsigned long sub_lines = first[sub_first + j].lines, fragment_length = lines_to_add + 1,
1560 tmp = 0;
1561 char boolean = 0;
1562 int fragment_position = -1;
1564 // if this is not the first new sub of the block
1565 // we find if this sub was present in the previous
1566 // new sub
1567 if (counter)
1568 for (i = 0; i < lines_to_add; ++i) {
1569 if (placeholder[counter - 1][i] == sub_first + j) {
1570 placeholder[counter][i] = sub_first + j;
1571 boolean = 1;
1574 if (boolean)
1575 continue;
1577 // we are looking for the shortest among all groups of
1578 // sequential blank lines whose length is greater than or
1579 // equal to sub_lines. we store in fragment_position the
1580 // position of the shortest group, in fragment_length its
1581 // length, and in tmp the length of the group currently
1582 // examinated
1583 for (i = 0; i < lines_to_add; ++i) {
1584 if (placeholder[counter][i] == -1) {
1585 // placeholder[counter][i] is part of the current group
1586 // of blank lines
1587 ++tmp;
1588 } else {
1589 if (tmp == sub_lines) {
1590 // current group's size fits exactly the one we
1591 // need, so we stop looking
1592 fragment_position = i - tmp;
1593 tmp = 0;
1594 break;
1596 if ((tmp) && (tmp > sub_lines) && (tmp < fragment_length)) {
1597 // current group is the best we found till here,
1598 // but is still bigger than the one we are looking
1599 // for, so we keep on looking
1600 fragment_length = tmp;
1601 fragment_position = i - tmp;
1602 tmp = 0;
1603 } else {
1604 // current group doesn't fit at all, so we forget it
1605 tmp = 0;
1609 if (tmp) {
1610 // last screen line is blank, a group ends with it
1611 if ((tmp >= sub_lines) && (tmp < fragment_length)) {
1612 fragment_position = i - tmp;
1615 if (fragment_position == -1) {
1616 // it was not possible to find free screen line(s) for a subtitle,
1617 // usually this means a bug in the code; however we do not overlap
1618 mp_msg(MSGT_SUBREADER, MSGL_WARN, "SUB: we could not find a suitable position for an overlapping subtitle\n");
1619 higher_line = SUB_MAX_TEXT + 1;
1620 break;
1621 } else {
1622 for (tmp = 0; tmp < sub_lines; ++tmp) {
1623 placeholder[counter][fragment_position + tmp] = sub_first + j;
1628 for (j = higher_line + 1; j < lines_to_add; ++j) {
1629 if (placeholder[counter][j] != -1)
1630 higher_line = j;
1631 else
1632 break;
1634 if (higher_line >= SUB_MAX_TEXT) {
1635 // the 'block' has too much lines, so we don't overlap the
1636 // subtitles
1637 second = (subtitle *) realloc(second, (sub_num + sub_to_add + 1) * sizeof(subtitle));
1638 for (j = 0; j <= sub_to_add; ++j) {
1639 int ls;
1640 memset(&second[sub_num + j], '\0', sizeof(subtitle));
1641 second[sub_num + j].start = first[sub_first + j].start;
1642 second[sub_num + j].end = first[sub_first + j].end;
1643 second[sub_num + j].lines = first[sub_first + j].lines;
1644 second[sub_num + j].alignment = first[sub_first + j].alignment;
1645 for (ls = 0; ls < second[sub_num + j].lines; ls++) {
1646 second[sub_num + j].text[ls] = strdup(first[sub_first + j].text[ls]);
1649 sub_num += sub_to_add + 1;
1650 sub_first += sub_to_add;
1651 real_block = 0;
1652 break;
1655 // we read the placeholder structure and create the new
1656 // subs.
1657 second = (subtitle *) realloc(second, (sub_num + 1) * sizeof(subtitle));
1658 memset(&second[sub_num], '\0', sizeof(subtitle));
1659 second[sub_num].start = local_start;
1660 second[sub_num].end = local_end;
1661 second[sub_num].alignment = first[sub_first].alignment;
1662 n_max = (lines_to_add < SUB_MAX_TEXT) ? lines_to_add : SUB_MAX_TEXT;
1663 for (i = 0, j = 0; j < n_max; ++j) {
1664 if (placeholder[counter][j] != -1) {
1665 int lines = first[placeholder[counter][j]].lines;
1666 for (ls = 0; ls < lines; ++ls) {
1667 second[sub_num].text[i++] = strdup(first[placeholder[counter][j]].text[ls]);
1669 j += lines - 1;
1670 } else {
1671 second[sub_num].text[i++] = strdup(" ");
1674 ++sub_num;
1675 ++counter;
1676 } while (local_end < global_end);
1677 if (real_block)
1678 for (i = 0; i < counter; ++i)
1679 second[start_block_sub + i].lines = higher_line + 1;
1681 counter = 2 * sub_to_add + 1;
1682 for (i = 0; i < counter; ++i) {
1683 free(placeholder[i]);
1685 free(placeholder);
1686 sub_first += sub_to_add;
1689 for (j = sub_orig - 1; j >= 0; --j) {
1690 for (i = first[j].lines - 1; i >= 0; --i) {
1691 free(first[j].text[i]);
1694 free(first);
1696 return_sub = second;
1697 } else { //if(suboverlap_enabled)
1698 adjust_subs_time(first, 6.0, fps, 1, sub_num, uses_time);/*~6 secs AST*/
1699 return_sub = first;
1701 if (return_sub == NULL) return NULL;
1702 subt_data = malloc(sizeof(sub_data));
1703 subt_data->filename = strdup(filename);
1704 subt_data->sub_uses_time = uses_time;
1705 subt_data->sub_num = sub_num;
1706 subt_data->sub_errs = sub_errs;
1707 subt_data->subtitles = return_sub;
1708 return subt_data;
1711 #if 0
1712 char * strreplace( char * in,char * what,char * whereof )
1714 int i;
1715 char * tmp;
1717 if ( ( in == NULL )||( what == NULL )||( whereof == NULL )||( ( tmp=strstr( in,what ) ) == NULL ) ) return NULL;
1718 for( i=0;i<strlen( whereof );i++ ) tmp[i]=whereof[i];
1719 if ( strlen( what ) > strlen( whereof ) ) tmp[i]=0;
1720 return in;
1722 #endif
1725 static void strcpy_trim(char *d, char *s)
1727 // skip leading whitespace
1728 while (*s && !isalnum(*s)) {
1729 s++;
1731 for (;;) {
1732 // copy word
1733 while (*s && isalnum(*s)) {
1734 *d = tolower(*s);
1735 s++; d++;
1737 if (*s == 0) break;
1738 // trim excess whitespace
1739 while (*s && !isalnum(*s)) {
1740 s++;
1742 if (*s == 0) break;
1743 *d++ = ' ';
1745 *d = 0;
1748 static void strcpy_strip_ext(char *d, char *s)
1750 char *tmp = strrchr(s,'.');
1751 if (!tmp) {
1752 strcpy(d, s);
1753 return;
1754 } else {
1755 strncpy(d, s, tmp-s);
1756 d[tmp-s] = 0;
1758 while (*d) {
1759 *d = tolower(*d);
1760 d++;
1764 static void strcpy_get_ext(char *d, char *s)
1766 char *tmp = strrchr(s,'.');
1767 if (!tmp) {
1768 strcpy(d, "");
1769 return;
1770 } else {
1771 strcpy(d, tmp+1);
1775 static int whiteonly(char *s)
1777 while (*s) {
1778 if (isalnum(*s)) return 0;
1779 s++;
1781 return 1;
1784 typedef struct subfn
1786 int priority;
1787 char *fname;
1788 } subfn;
1790 static int compare_sub_priority(const void *a, const void *b)
1792 if (((const subfn*)a)->priority > ((const subfn*)b)->priority) {
1793 return -1;
1794 } else if (((const subfn*)a)->priority < ((const subfn*)b)->priority) {
1795 return 1;
1796 } else {
1797 return strcoll(((const subfn*)a)->fname, ((const subfn*)b)->fname);
1801 char** sub_filenames(const char* path, char *fname)
1803 char *f_dir, *f_fname, *f_fname_noext, *f_fname_trim, *tmp, *tmp_sub_id;
1804 char *tmp_fname_noext, *tmp_fname_trim, *tmp_fname_ext, *tmpresult;
1806 int len, pos, found, i, j;
1807 char * sub_exts[] = { "utf", "utf8", "utf-8", "sub", "srt", "smi", "rt", "txt", "ssa", "aqt", "jss", "js", "ass", NULL};
1808 subfn *result;
1809 char **result2;
1811 int subcnt;
1813 FILE *f;
1815 DIR *d;
1816 struct dirent *de;
1818 len = (strlen(fname) > 256 ? strlen(fname) : 256)
1819 +(strlen(path) > 256 ? strlen(path) : 256)+2;
1821 f_dir = malloc(len);
1822 f_fname = malloc(len);
1823 f_fname_noext = malloc(len);
1824 f_fname_trim = malloc(len);
1826 tmp_fname_noext = malloc(len);
1827 tmp_fname_trim = malloc(len);
1828 tmp_fname_ext = malloc(len);
1830 tmpresult = malloc(len);
1832 result = malloc(sizeof(subfn)*MAX_SUBTITLE_FILES);
1833 memset(result, 0, sizeof(subfn)*MAX_SUBTITLE_FILES);
1835 subcnt = 0;
1837 tmp = strrchr(fname,'/');
1838 #if defined(__MINGW32__) || defined(__CYGWIN__) || defined(__OS2__)
1839 if(!tmp)tmp = strrchr(fname,'\\');
1840 if(!tmp)tmp = strrchr(fname,':');
1841 #endif
1843 // extract filename & dirname from fname
1844 if (tmp) {
1845 strcpy(f_fname, tmp+1);
1846 pos = tmp - fname;
1847 strncpy(f_dir, fname, pos+1);
1848 f_dir[pos+1] = 0;
1849 } else {
1850 strcpy(f_fname, fname);
1851 strcpy(f_dir, "./");
1854 strcpy_strip_ext(f_fname_noext, f_fname);
1855 strcpy_trim(f_fname_trim, f_fname_noext);
1857 tmp_sub_id = NULL;
1858 if (dvdsub_lang && !whiteonly(dvdsub_lang)) {
1859 tmp_sub_id = malloc(strlen(dvdsub_lang)+1);
1860 strcpy_trim(tmp_sub_id, dvdsub_lang);
1863 // 0 = nothing
1864 // 1 = any subtitle file
1865 // 2 = any sub file containing movie name
1866 // 3 = sub file containing movie name and the lang extension
1867 for (j = 0; j <= 1; j++) {
1868 d = opendir(j == 0 ? f_dir : path);
1869 if (d) {
1870 while ((de = readdir(d))) {
1871 // retrieve various parts of the filename
1872 strcpy_strip_ext(tmp_fname_noext, de->d_name);
1873 strcpy_get_ext(tmp_fname_ext, de->d_name);
1874 strcpy_trim(tmp_fname_trim, tmp_fname_noext);
1876 // does it end with a subtitle extension?
1877 found = 0;
1878 #ifdef CONFIG_ICONV
1879 #ifdef CONFIG_ENCA
1880 for (i = ((sub_cp && strncasecmp(sub_cp, "enca", 4) != 0) ? 3 : 0); sub_exts[i]; i++) {
1881 #else
1882 for (i = (sub_cp ? 3 : 0); sub_exts[i]; i++) {
1883 #endif
1884 #else
1885 for (i = 0; sub_exts[i]; i++) {
1886 #endif
1887 if (strcasecmp(sub_exts[i], tmp_fname_ext) == 0) {
1888 found = 1;
1889 break;
1893 // we have a (likely) subtitle file
1894 if (found) {
1895 int prio = 0;
1896 if (!prio && tmp_sub_id)
1898 sprintf(tmpresult, "%s %s", f_fname_trim, tmp_sub_id);
1899 mp_msg(MSGT_SUBREADER,MSGL_INFO,"dvdsublang...%s\n", tmpresult);
1900 if (strcmp(tmp_fname_trim, tmpresult) == 0 && sub_match_fuzziness >= 1) {
1901 // matches the movie name + lang extension
1902 prio = 5;
1905 if (!prio && strcmp(tmp_fname_trim, f_fname_trim) == 0) {
1906 // matches the movie name
1907 prio = 4;
1909 if (!prio && (tmp = strstr(tmp_fname_trim, f_fname_trim)) && (sub_match_fuzziness >= 1)) {
1910 // contains the movie name
1911 tmp += strlen(f_fname_trim);
1912 if (tmp_sub_id && strstr(tmp, tmp_sub_id)) {
1913 // with sub_id specified prefer localized subtitles
1914 prio = 3;
1915 } else if ((tmp_sub_id == NULL) && whiteonly(tmp)) {
1916 // without sub_id prefer "plain" name
1917 prio = 3;
1918 } else {
1919 // with no localized subs found, try any else instead
1920 prio = 2;
1923 if (!prio) {
1924 // doesn't contain the movie name
1925 // don't try in the mplayer subtitle directory
1926 if ((j == 0) && (sub_match_fuzziness >= 2)) {
1927 prio = 1;
1931 if (prio) {
1932 prio += prio;
1933 #ifdef CONFIG_ICONV
1934 if (i<3){ // prefer UTF-8 coded
1935 prio++;
1937 #endif
1938 sprintf(tmpresult, "%s%s", j == 0 ? f_dir : path, de->d_name);
1939 // fprintf(stderr, "%s priority %d\n", tmpresult, prio);
1940 if ((f = fopen(tmpresult, "rt"))) {
1941 fclose(f);
1942 result[subcnt].priority = prio;
1943 result[subcnt].fname = strdup(tmpresult);
1944 subcnt++;
1949 if (subcnt >= MAX_SUBTITLE_FILES) break;
1951 closedir(d);
1956 if (tmp_sub_id) free(tmp_sub_id);
1958 free(f_dir);
1959 free(f_fname);
1960 free(f_fname_noext);
1961 free(f_fname_trim);
1963 free(tmp_fname_noext);
1964 free(tmp_fname_trim);
1965 free(tmp_fname_ext);
1967 free(tmpresult);
1969 qsort(result, subcnt, sizeof(subfn), compare_sub_priority);
1971 result2 = malloc(sizeof(char*)*(subcnt+1));
1972 memset(result2, 0, sizeof(char*)*(subcnt+1));
1974 for (i = 0; i < subcnt; i++) {
1975 result2[i] = result[i].fname;
1977 result2[subcnt] = NULL;
1979 free(result);
1981 return result2;
1984 void list_sub_file(sub_data* subd){
1985 int i,j;
1986 subtitle *subs = subd->subtitles;
1988 for(j=0; j < subd->sub_num; j++){
1989 subtitle* egysub=&subs[j];
1990 mp_msg(MSGT_SUBREADER,MSGL_INFO,"%i line%c (%li-%li)\n",
1991 egysub->lines,
1992 (1==egysub->lines)?' ':'s',
1993 egysub->start,
1994 egysub->end);
1995 for (i=0; i<egysub->lines; i++) {
1996 mp_msg(MSGT_SUBREADER,MSGL_INFO,"\t\t%d: %s%s", i,egysub->text[i], i==egysub->lines-1?"":" \n ");
1998 mp_msg(MSGT_SUBREADER,MSGL_INFO,"\n");
2001 mp_msg(MSGT_SUBREADER,MSGL_INFO,"Subtitle format %s time.\n",
2002 subd->sub_uses_time ? "uses":"doesn't use");
2003 mp_msg(MSGT_SUBREADER,MSGL_INFO,"Read %i subtitles, %i errors.\n", subd->sub_num, subd->sub_errs);
2006 void dump_srt(sub_data* subd, float fps){
2007 int i,j;
2008 int h,m,s,ms;
2009 FILE * fd;
2010 subtitle * onesub;
2011 unsigned long temp;
2012 subtitle *subs = subd->subtitles;
2014 if (!subd->sub_uses_time && sub_fps == 0)
2015 sub_fps = fps;
2016 fd=fopen("dumpsub.srt","w");
2017 if(!fd)
2019 perror("dump_srt: fopen");
2020 return;
2022 for(i=0; i < subd->sub_num; i++)
2024 onesub=subs+i; //=&subs[i];
2025 fprintf(fd,"%d\n",i+1);//line number
2027 temp=onesub->start;
2028 if (!subd->sub_uses_time)
2029 temp = temp * 100 / sub_fps;
2030 temp -= sub_delay * 100;
2031 h=temp/360000;temp%=360000; //h =1*100*60*60
2032 m=temp/6000; temp%=6000; //m =1*100*60
2033 s=temp/100; temp%=100; //s =1*100
2034 ms=temp*10; //ms=1*10
2035 fprintf(fd,"%02d:%02d:%02d,%03d --> ",h,m,s,ms);
2037 temp=onesub->end;
2038 if (!subd->sub_uses_time)
2039 temp = temp * 100 / sub_fps;
2040 temp -= sub_delay * 100;
2041 h=temp/360000;temp%=360000;
2042 m=temp/6000; temp%=6000;
2043 s=temp/100; temp%=100;
2044 ms=temp*10;
2045 fprintf(fd,"%02d:%02d:%02d,%03d\n",h,m,s,ms);
2047 for(j=0;j<onesub->lines;j++)
2048 fprintf(fd,"%s\n",onesub->text[j]);
2050 fprintf(fd,"\n");
2052 fclose(fd);
2053 mp_msg(MSGT_SUBREADER,MSGL_INFO,"SUB: Subtitles dumped in \'dumpsub.srt\'.\n");
2056 void dump_mpsub(sub_data* subd, float fps){
2057 int i,j;
2058 FILE *fd;
2059 float a,b;
2060 subtitle *subs = subd->subtitles;
2062 mpsub_position = subd->sub_uses_time? (sub_delay*100) : (sub_delay*fps);
2063 if (sub_fps==0) sub_fps=fps;
2065 fd=fopen ("dump.mpsub", "w");
2066 if (!fd) {
2067 perror ("dump_mpsub: fopen");
2068 return;
2072 if (subd->sub_uses_time) fprintf (fd,"FORMAT=TIME\n\n");
2073 else fprintf (fd, "FORMAT=%5.2f\n\n", fps);
2075 for(j=0; j < subd->sub_num; j++){
2076 subtitle* egysub=&subs[j];
2077 if (subd->sub_uses_time) {
2078 a=((egysub->start-mpsub_position)/100.0);
2079 b=((egysub->end-egysub->start)/100.0);
2080 if ( (float)((int)a) == a)
2081 fprintf (fd, "%.0f",a);
2082 else
2083 fprintf (fd, "%.2f",a);
2085 if ( (float)((int)b) == b)
2086 fprintf (fd, " %.0f\n",b);
2087 else
2088 fprintf (fd, " %.2f\n",b);
2089 } else {
2090 fprintf (fd, "%ld %ld\n", (long)((egysub->start*(fps/sub_fps))-((mpsub_position*(fps/sub_fps)))),
2091 (long)(((egysub->end)-(egysub->start))*(fps/sub_fps)));
2094 mpsub_position = egysub->end;
2095 for (i=0; i<egysub->lines; i++) {
2096 fprintf (fd, "%s\n",egysub->text[i]);
2098 fprintf (fd, "\n");
2100 fclose (fd);
2101 mp_msg(MSGT_SUBREADER,MSGL_INFO,"SUB: Subtitles dumped in \'dump.mpsub\'.\n");
2104 void dump_microdvd(sub_data* subd, float fps) {
2105 int i, delay;
2106 FILE *fd;
2107 subtitle *subs = subd->subtitles;
2108 if (sub_fps == 0)
2109 sub_fps = fps;
2110 fd = fopen("dumpsub.sub", "w");
2111 if (!fd) {
2112 perror("dumpsub.sub: fopen");
2113 return;
2115 delay = sub_delay * sub_fps;
2116 for (i = 0; i < subd->sub_num; ++i) {
2117 int j, start, end;
2118 start = subs[i].start;
2119 end = subs[i].end;
2120 if (subd->sub_uses_time) {
2121 start = start * sub_fps / 100 ;
2122 end = end * sub_fps / 100;
2124 else {
2125 start = start * sub_fps / fps;
2126 end = end * sub_fps / fps;
2128 start -= delay;
2129 end -= delay;
2130 fprintf(fd, "{%d}{%d}", start, end);
2131 for (j = 0; j < subs[i].lines; ++j)
2132 fprintf(fd, "%s%s", j ? "|" : "", subs[i].text[j]);
2133 fprintf(fd, "\n");
2135 fclose(fd);
2136 mp_msg(MSGT_SUBREADER,MSGL_INFO,"SUB: Subtitles dumped in \'dumpsub.sub\'.\n");
2139 void dump_jacosub(sub_data* subd, float fps) {
2140 int i,j;
2141 int h,m,s,cs;
2142 FILE * fd;
2143 subtitle * onesub;
2144 unsigned long temp;
2145 subtitle *subs = subd->subtitles;
2147 if (!subd->sub_uses_time && sub_fps == 0)
2148 sub_fps = fps;
2149 fd=fopen("dumpsub.jss","w");
2150 if(!fd)
2152 perror("dump_jacosub: fopen");
2153 return;
2155 fprintf(fd, "#TIMERES %d\n", (subd->sub_uses_time) ? 100 : (int)sub_fps);
2156 for(i=0; i < subd->sub_num; i++)
2158 onesub=subs+i; //=&subs[i];
2160 temp=onesub->start;
2161 if (!subd->sub_uses_time)
2162 temp = temp * 100 / sub_fps;
2163 temp -= sub_delay * 100;
2164 h=temp/360000;temp%=360000; //h =1*100*60*60
2165 m=temp/6000; temp%=6000; //m =1*100*60
2166 s=temp/100; temp%=100; //s =1*100
2167 cs=temp; //cs=1*10
2168 fprintf(fd,"%02d:%02d:%02d.%02d ",h,m,s,cs);
2170 temp=onesub->end;
2171 if (!subd->sub_uses_time)
2172 temp = temp * 100 / sub_fps;
2173 temp -= sub_delay * 100;
2174 h=temp/360000;temp%=360000;
2175 m=temp/6000; temp%=6000;
2176 s=temp/100; temp%=100;
2177 cs=temp;
2178 fprintf(fd,"%02d:%02d:%02d.%02d {~} ",h,m,s,cs);
2180 for(j=0;j<onesub->lines;j++)
2181 fprintf(fd,"%s%s",j ? "\\n" : "", onesub->text[j]);
2183 fprintf(fd,"\n");
2185 fclose(fd);
2186 mp_msg(MSGT_SUBREADER,MSGL_INFO,"SUB: Subtitles dumped in \'dumpsub.js\'.\n");
2189 void dump_sami(sub_data* subd, float fps) {
2190 int i,j;
2191 FILE * fd;
2192 subtitle * onesub;
2193 unsigned long temp;
2194 subtitle *subs = subd->subtitles;
2196 if (!subd->sub_uses_time && sub_fps == 0)
2197 sub_fps = fps;
2198 fd=fopen("dumpsub.smi","w");
2199 if(!fd)
2201 perror("dump_jacosub: fopen");
2202 return;
2204 fprintf(fd, "<SAMI>\n"
2205 "<HEAD>\n"
2206 " <STYLE TYPE=\"Text/css\">\n"
2207 " <!--\n"
2208 " 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"
2209 " .SUBTTL {Name: 'Subtitles'; Lang: en-US; SAMIType: CC;}\n"
2210 " -->\n"
2211 " </STYLE>\n"
2212 "</HEAD>\n"
2213 "<BODY>\n");
2214 for(i=0; i < subd->sub_num; i++)
2216 onesub=subs+i; //=&subs[i];
2218 temp=onesub->start;
2219 if (!subd->sub_uses_time)
2220 temp = temp * 100 / sub_fps;
2221 temp -= sub_delay * 100;
2222 fprintf(fd,"\t<SYNC Start=%lu>\n"
2223 "\t <P>", temp * 10);
2225 for(j=0;j<onesub->lines;j++)
2226 fprintf(fd,"%s%s",j ? "<br>" : "", onesub->text[j]);
2228 fprintf(fd,"\n");
2230 temp=onesub->end;
2231 if (!subd->sub_uses_time)
2232 temp = temp * 100 / sub_fps;
2233 temp -= sub_delay * 100;
2234 fprintf(fd,"\t<SYNC Start=%lu>\n"
2235 "\t <P>&nbsp;\n", temp * 10);
2237 fprintf(fd, "</BODY>\n"
2238 "</SAMI>\n");
2239 fclose(fd);
2240 mp_msg(MSGT_SUBREADER,MSGL_INFO,"SUB: Subtitles dumped in \'dumpsub.smi\'.\n");
2243 void sub_free( sub_data * subd )
2245 int i;
2247 if ( !subd ) return;
2249 if (subd->subtitles) {
2250 for (i=0; i < subd->subtitles->lines; i++) free( subd->subtitles->text[i] );
2251 free( subd->subtitles );
2253 if (subd->filename) free( subd->filename );
2254 free( subd );
2257 #define MAX_SUBLINE 512
2259 * \brief parse text and append it to subtitle in sub
2260 * \param sub subtitle struct to add text to
2261 * \param txt text to parse
2262 * \param len length of text in txt
2263 * \param endpts pts at which this subtitle text should be removed again
2265 * <> and {} are interpreted as comment delimiters, "\n", "\N", '\n', '\r'
2266 * and '\0' are interpreted as newlines, duplicate, leading and trailing
2267 * newlines are ignored.
2269 void sub_add_text(subtitle *sub, const char *txt, int len, double endpts) {
2270 int comment = 0;
2271 int double_newline = 1; // ignore newlines at the beginning
2272 int i, pos;
2273 char *buf;
2274 if (sub->lines >= SUB_MAX_TEXT) return;
2275 pos = 0;
2276 buf = malloc(MAX_SUBLINE + 1);
2277 sub->text[sub->lines] = buf;
2278 sub->endpts[sub->lines] = endpts;
2279 for (i = 0; i < len && pos < MAX_SUBLINE; i++) {
2280 char c = txt[i];
2281 if (c == '<') comment |= 1;
2282 if (c == '{') comment |= 2;
2283 if (comment) {
2284 if (c == '}') comment &= ~2;
2285 if (c == '>') comment &= ~1;
2286 continue;
2288 if (pos == MAX_SUBLINE - 1) {
2289 i--;
2290 c = 0;
2292 if (c == '\\' && i + 1 < len) {
2293 c = txt[++i];
2294 if (c == 'n' || c == 'N') c = 0;
2296 if (c == '\n' || c == '\r') c = 0;
2297 if (c) {
2298 double_newline = 0;
2299 buf[pos++] = c;
2300 } else if (!double_newline) {
2301 if (sub->lines >= SUB_MAX_TEXT - 1) {
2302 mp_msg(MSGT_VO, MSGL_WARN, "Too many subtitle lines\n");
2303 break;
2305 double_newline = 1;
2306 buf[pos] = 0;
2307 sub->lines++;
2308 pos = 0;
2309 buf = malloc(MAX_SUBLINE + 1);
2310 sub->text[sub->lines] = buf;
2311 sub->endpts[sub->lines] = endpts;
2314 buf[pos] = 0;
2315 if (sub->lines < SUB_MAX_TEXT &&
2316 strlen(sub->text[sub->lines]))
2317 sub->lines++;
2320 #define MP_NOPTS_VALUE (-1LL<<63)
2322 * \brief remove outdated subtitle lines.
2323 * \param sub subtitle struct to modify
2324 * \param pts current pts. All lines with endpts <= this will be removed.
2325 * Use MP_NOPTS_VALUE to remove all lines
2326 * \return 1 if sub was modified, 0 otherwise.
2328 int sub_clear_text(subtitle *sub, double pts) {
2329 int i = 0;
2330 int changed = 0;
2331 while (i < sub->lines) {
2332 double endpts = sub->endpts[i];
2333 if (pts == MP_NOPTS_VALUE || (endpts != MP_NOPTS_VALUE && pts >= endpts)) {
2334 int j;
2335 free(sub->text[i]);
2336 for (j = i + 1; j < sub->lines; j++) {
2337 sub->text[j - 1] = sub->text[j];
2338 sub->endpts[j - 1] = sub->endpts[j];
2340 sub->lines--;
2341 changed = 1;
2342 } else
2343 i++;
2345 return changed;