Get rid of nonsensical limits on -geometry x, y,w and h values, they only
[mplayer/glamo.git] / subreader.c
blob72e050380f855f93247d7cda8011ff5a27ee3ef7
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
56 /*
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_INFO,"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_INFO,"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_INFO,"SUB: Read %i subtitles", sub_num);
1483 if (sub_errs) mp_msg(MSGT_SUBREADER,MSGL_INFO,", %i bad line(s).\n", sub_errs);
1484 else mp_msg(MSGT_SUBREADER,MSGL_INFO,".\n");
1486 if(sub_num<=0){
1487 free(first);
1488 return NULL;
1491 // we do overlap if the user forced it (suboverlap_enable == 2) or
1492 // the user didn't forced no-overlapsub and the format is Jacosub or Ssa.
1493 // this is because usually overlapping subtitles are found in these formats,
1494 // while in others they are probably result of bad timing
1495 if ((suboverlap_enabled == 2) ||
1496 ((suboverlap_enabled) && ((sub_format == SUB_JACOSUB) || (sub_format == SUB_SSA)))) {
1497 adjust_subs_time(first, 6.0, fps, 0, sub_num, uses_time);/*~6 secs AST*/
1498 // here we manage overlapping subtitles
1499 sub_orig = sub_num;
1500 n_first = sub_num;
1501 sub_num = 0;
1502 second = NULL;
1503 // for each subtitle in first[] we deal with its 'block' of
1504 // bonded subtitles
1505 for (sub_first = 0; sub_first < n_first; ++sub_first) {
1506 unsigned long global_start = first[sub_first].start,
1507 global_end = first[sub_first].end, local_start, local_end;
1508 int lines_to_add = first[sub_first].lines, sub_to_add = 0,
1509 **placeholder = NULL, higher_line = 0, counter, start_block_sub = sub_num;
1510 char real_block = 1;
1512 // here we find the number of subtitles inside the 'block'
1513 // and its span interval. this works well only with sorted
1514 // subtitles
1515 while ((sub_first + sub_to_add + 1 < n_first) && (first[sub_first + sub_to_add + 1].start < global_end)) {
1516 ++sub_to_add;
1517 lines_to_add += first[sub_first + sub_to_add].lines;
1518 if (first[sub_first + sub_to_add].start < global_start) {
1519 global_start = first[sub_first + sub_to_add].start;
1521 if (first[sub_first + sub_to_add].end > global_end) {
1522 global_end = first[sub_first + sub_to_add].end;
1526 // we need a structure to keep trace of the screen lines
1527 // used by the subs, a 'placeholder'
1528 counter = 2 * sub_to_add + 1; // the maximum number of subs derived
1529 // from a block of sub_to_add+1 subs
1530 placeholder = malloc(sizeof(int *) * counter);
1531 for (i = 0; i < counter; ++i) {
1532 placeholder[i] = malloc(sizeof(int) * lines_to_add);
1533 for (j = 0; j < lines_to_add; ++j) {
1534 placeholder[i][j] = -1;
1538 counter = 0;
1539 local_end = global_start - 1;
1540 do {
1541 int ls;
1543 // here we find the beginning and the end of a new
1544 // subtitle in the block
1545 local_start = local_end + 1;
1546 local_end = global_end;
1547 for (j = 0; j <= sub_to_add; ++j) {
1548 if ((first[sub_first + j].start - 1 > local_start) && (first[sub_first + j].start - 1 < local_end)) {
1549 local_end = first[sub_first + j].start - 1;
1550 } else if ((first[sub_first + j].end > local_start) && (first[sub_first + j].end < local_end)) {
1551 local_end = first[sub_first + j].end;
1554 // here we allocate the screen lines to subs we must
1555 // display in current local_start-local_end interval.
1556 // if the subs were yet presents in the previous interval
1557 // they keep the same lines, otherside they get unused lines
1558 for (j = 0; j <= sub_to_add; ++j) {
1559 if ((first[sub_first + j].start <= local_end) && (first[sub_first + j].end > local_start)) {
1560 unsigned long sub_lines = first[sub_first + j].lines, fragment_length = lines_to_add + 1,
1561 tmp = 0;
1562 char boolean = 0;
1563 int fragment_position = -1;
1565 // if this is not the first new sub of the block
1566 // we find if this sub was present in the previous
1567 // new sub
1568 if (counter)
1569 for (i = 0; i < lines_to_add; ++i) {
1570 if (placeholder[counter - 1][i] == sub_first + j) {
1571 placeholder[counter][i] = sub_first + j;
1572 boolean = 1;
1575 if (boolean)
1576 continue;
1578 // we are looking for the shortest among all groups of
1579 // sequential blank lines whose length is greater than or
1580 // equal to sub_lines. we store in fragment_position the
1581 // position of the shortest group, in fragment_length its
1582 // length, and in tmp the length of the group currently
1583 // examinated
1584 for (i = 0; i < lines_to_add; ++i) {
1585 if (placeholder[counter][i] == -1) {
1586 // placeholder[counter][i] is part of the current group
1587 // of blank lines
1588 ++tmp;
1589 } else {
1590 if (tmp == sub_lines) {
1591 // current group's size fits exactly the one we
1592 // need, so we stop looking
1593 fragment_position = i - tmp;
1594 tmp = 0;
1595 break;
1597 if ((tmp) && (tmp > sub_lines) && (tmp < fragment_length)) {
1598 // current group is the best we found till here,
1599 // but is still bigger than the one we are looking
1600 // for, so we keep on looking
1601 fragment_length = tmp;
1602 fragment_position = i - tmp;
1603 tmp = 0;
1604 } else {
1605 // current group doesn't fit at all, so we forget it
1606 tmp = 0;
1610 if (tmp) {
1611 // last screen line is blank, a group ends with it
1612 if ((tmp >= sub_lines) && (tmp < fragment_length)) {
1613 fragment_position = i - tmp;
1616 if (fragment_position == -1) {
1617 // it was not possible to find free screen line(s) for a subtitle,
1618 // usually this means a bug in the code; however we do not overlap
1619 mp_msg(MSGT_SUBREADER, MSGL_WARN, "SUB: we could not find a suitable position for an overlapping subtitle\n");
1620 higher_line = SUB_MAX_TEXT + 1;
1621 break;
1622 } else {
1623 for (tmp = 0; tmp < sub_lines; ++tmp) {
1624 placeholder[counter][fragment_position + tmp] = sub_first + j;
1629 for (j = higher_line + 1; j < lines_to_add; ++j) {
1630 if (placeholder[counter][j] != -1)
1631 higher_line = j;
1632 else
1633 break;
1635 if (higher_line >= SUB_MAX_TEXT) {
1636 // the 'block' has too much lines, so we don't overlap the
1637 // subtitles
1638 second = (subtitle *) realloc(second, (sub_num + sub_to_add + 1) * sizeof(subtitle));
1639 for (j = 0; j <= sub_to_add; ++j) {
1640 int ls;
1641 memset(&second[sub_num + j], '\0', sizeof(subtitle));
1642 second[sub_num + j].start = first[sub_first + j].start;
1643 second[sub_num + j].end = first[sub_first + j].end;
1644 second[sub_num + j].lines = first[sub_first + j].lines;
1645 second[sub_num + j].alignment = first[sub_first + j].alignment;
1646 for (ls = 0; ls < second[sub_num + j].lines; ls++) {
1647 second[sub_num + j].text[ls] = strdup(first[sub_first + j].text[ls]);
1650 sub_num += sub_to_add + 1;
1651 sub_first += sub_to_add;
1652 real_block = 0;
1653 break;
1656 // we read the placeholder structure and create the new
1657 // subs.
1658 second = (subtitle *) realloc(second, (sub_num + 1) * sizeof(subtitle));
1659 memset(&second[sub_num], '\0', sizeof(subtitle));
1660 second[sub_num].start = local_start;
1661 second[sub_num].end = local_end;
1662 second[sub_num].alignment = first[sub_first].alignment;
1663 n_max = (lines_to_add < SUB_MAX_TEXT) ? lines_to_add : SUB_MAX_TEXT;
1664 for (i = 0, j = 0; j < n_max; ++j) {
1665 if (placeholder[counter][j] != -1) {
1666 int lines = first[placeholder[counter][j]].lines;
1667 for (ls = 0; ls < lines; ++ls) {
1668 second[sub_num].text[i++] = strdup(first[placeholder[counter][j]].text[ls]);
1670 j += lines - 1;
1671 } else {
1672 second[sub_num].text[i++] = strdup(" ");
1675 ++sub_num;
1676 ++counter;
1677 } while (local_end < global_end);
1678 if (real_block)
1679 for (i = 0; i < counter; ++i)
1680 second[start_block_sub + i].lines = higher_line + 1;
1682 counter = 2 * sub_to_add + 1;
1683 for (i = 0; i < counter; ++i) {
1684 free(placeholder[i]);
1686 free(placeholder);
1687 sub_first += sub_to_add;
1690 for (j = sub_orig - 1; j >= 0; --j) {
1691 for (i = first[j].lines - 1; i >= 0; --i) {
1692 free(first[j].text[i]);
1695 free(first);
1697 return_sub = second;
1698 } else { //if(suboverlap_enabled)
1699 adjust_subs_time(first, 6.0, fps, 1, sub_num, uses_time);/*~6 secs AST*/
1700 return_sub = first;
1702 if (return_sub == NULL) return NULL;
1703 subt_data = malloc(sizeof(sub_data));
1704 subt_data->filename = strdup(filename);
1705 subt_data->sub_uses_time = uses_time;
1706 subt_data->sub_num = sub_num;
1707 subt_data->sub_errs = sub_errs;
1708 subt_data->subtitles = return_sub;
1709 return subt_data;
1712 #if 0
1713 char * strreplace( char * in,char * what,char * whereof )
1715 int i;
1716 char * tmp;
1718 if ( ( in == NULL )||( what == NULL )||( whereof == NULL )||( ( tmp=strstr( in,what ) ) == NULL ) ) return NULL;
1719 for( i=0;i<strlen( whereof );i++ ) tmp[i]=whereof[i];
1720 if ( strlen( what ) > strlen( whereof ) ) tmp[i]=0;
1721 return in;
1723 #endif
1726 static void strcpy_trim(char *d, char *s)
1728 // skip leading whitespace
1729 while (*s && !isalnum(*s)) {
1730 s++;
1732 for (;;) {
1733 // copy word
1734 while (*s && isalnum(*s)) {
1735 *d = tolower(*s);
1736 s++; d++;
1738 if (*s == 0) break;
1739 // trim excess whitespace
1740 while (*s && !isalnum(*s)) {
1741 s++;
1743 if (*s == 0) break;
1744 *d++ = ' ';
1746 *d = 0;
1749 static void strcpy_strip_ext(char *d, char *s)
1751 char *tmp = strrchr(s,'.');
1752 if (!tmp) {
1753 strcpy(d, s);
1754 return;
1755 } else {
1756 strncpy(d, s, tmp-s);
1757 d[tmp-s] = 0;
1759 while (*d) {
1760 *d = tolower(*d);
1761 d++;
1765 static void strcpy_get_ext(char *d, char *s)
1767 char *tmp = strrchr(s,'.');
1768 if (!tmp) {
1769 strcpy(d, "");
1770 return;
1771 } else {
1772 strcpy(d, tmp+1);
1776 static int whiteonly(char *s)
1778 while (*s) {
1779 if (isalnum(*s)) return 0;
1780 s++;
1782 return 1;
1785 typedef struct subfn
1787 int priority;
1788 char *fname;
1789 } subfn;
1791 static int compare_sub_priority(const void *a, const void *b)
1793 if (((const subfn*)a)->priority > ((const subfn*)b)->priority) {
1794 return -1;
1795 } else if (((const subfn*)a)->priority < ((const subfn*)b)->priority) {
1796 return 1;
1797 } else {
1798 return strcoll(((const subfn*)a)->fname, ((const subfn*)b)->fname);
1802 char** sub_filenames(const char* path, char *fname)
1804 char *f_dir, *f_fname, *f_fname_noext, *f_fname_trim, *tmp, *tmp_sub_id;
1805 char *tmp_fname_noext, *tmp_fname_trim, *tmp_fname_ext, *tmpresult;
1807 int len, pos, found, i, j;
1808 char * sub_exts[] = { "utf", "utf8", "utf-8", "sub", "srt", "smi", "rt", "txt", "ssa", "aqt", "jss", "js", "ass", NULL};
1809 subfn *result;
1810 char **result2;
1812 int subcnt;
1814 FILE *f;
1816 DIR *d;
1817 struct dirent *de;
1819 len = (strlen(fname) > 256 ? strlen(fname) : 256)
1820 +(strlen(path) > 256 ? strlen(path) : 256)+2;
1822 f_dir = malloc(len);
1823 f_fname = malloc(len);
1824 f_fname_noext = malloc(len);
1825 f_fname_trim = malloc(len);
1827 tmp_fname_noext = malloc(len);
1828 tmp_fname_trim = malloc(len);
1829 tmp_fname_ext = malloc(len);
1831 tmpresult = malloc(len);
1833 result = malloc(sizeof(subfn)*MAX_SUBTITLE_FILES);
1834 memset(result, 0, sizeof(subfn)*MAX_SUBTITLE_FILES);
1836 subcnt = 0;
1838 tmp = strrchr(fname,'/');
1839 #if defined(__MINGW32__) || defined(__CYGWIN__) || defined(__OS2__)
1840 if(!tmp)tmp = strrchr(fname,'\\');
1841 if(!tmp)tmp = strrchr(fname,':');
1842 #endif
1844 // extract filename & dirname from fname
1845 if (tmp) {
1846 strcpy(f_fname, tmp+1);
1847 pos = tmp - fname;
1848 strncpy(f_dir, fname, pos+1);
1849 f_dir[pos+1] = 0;
1850 } else {
1851 strcpy(f_fname, fname);
1852 strcpy(f_dir, "./");
1855 strcpy_strip_ext(f_fname_noext, f_fname);
1856 strcpy_trim(f_fname_trim, f_fname_noext);
1858 tmp_sub_id = NULL;
1859 if (dvdsub_lang && !whiteonly(dvdsub_lang)) {
1860 tmp_sub_id = malloc(strlen(dvdsub_lang)+1);
1861 strcpy_trim(tmp_sub_id, dvdsub_lang);
1864 // 0 = nothing
1865 // 1 = any subtitle file
1866 // 2 = any sub file containing movie name
1867 // 3 = sub file containing movie name and the lang extension
1868 for (j = 0; j <= 1; j++) {
1869 d = opendir(j == 0 ? f_dir : path);
1870 if (d) {
1871 while ((de = readdir(d))) {
1872 // retrieve various parts of the filename
1873 strcpy_strip_ext(tmp_fname_noext, de->d_name);
1874 strcpy_get_ext(tmp_fname_ext, de->d_name);
1875 strcpy_trim(tmp_fname_trim, tmp_fname_noext);
1877 // does it end with a subtitle extension?
1878 found = 0;
1879 #ifdef CONFIG_ICONV
1880 #ifdef CONFIG_ENCA
1881 for (i = ((sub_cp && strncasecmp(sub_cp, "enca", 4) != 0) ? 3 : 0); sub_exts[i]; i++) {
1882 #else
1883 for (i = (sub_cp ? 3 : 0); sub_exts[i]; i++) {
1884 #endif
1885 #else
1886 for (i = 0; sub_exts[i]; i++) {
1887 #endif
1888 if (strcasecmp(sub_exts[i], tmp_fname_ext) == 0) {
1889 found = 1;
1890 break;
1894 // we have a (likely) subtitle file
1895 if (found) {
1896 int prio = 0;
1897 if (!prio && tmp_sub_id)
1899 sprintf(tmpresult, "%s %s", f_fname_trim, tmp_sub_id);
1900 mp_msg(MSGT_SUBREADER,MSGL_INFO,"dvdsublang...%s\n", tmpresult);
1901 if (strcmp(tmp_fname_trim, tmpresult) == 0 && sub_match_fuzziness >= 1) {
1902 // matches the movie name + lang extension
1903 prio = 5;
1906 if (!prio && strcmp(tmp_fname_trim, f_fname_trim) == 0) {
1907 // matches the movie name
1908 prio = 4;
1910 if (!prio && (tmp = strstr(tmp_fname_trim, f_fname_trim)) && (sub_match_fuzziness >= 1)) {
1911 // contains the movie name
1912 tmp += strlen(f_fname_trim);
1913 if (tmp_sub_id && strstr(tmp, tmp_sub_id)) {
1914 // with sub_id specified prefer localized subtitles
1915 prio = 3;
1916 } else if ((tmp_sub_id == NULL) && whiteonly(tmp)) {
1917 // without sub_id prefer "plain" name
1918 prio = 3;
1919 } else {
1920 // with no localized subs found, try any else instead
1921 prio = 2;
1924 if (!prio) {
1925 // doesn't contain the movie name
1926 // don't try in the mplayer subtitle directory
1927 if ((j == 0) && (sub_match_fuzziness >= 2)) {
1928 prio = 1;
1932 if (prio) {
1933 prio += prio;
1934 #ifdef CONFIG_ICONV
1935 if (i<3){ // prefer UTF-8 coded
1936 prio++;
1938 #endif
1939 sprintf(tmpresult, "%s%s", j == 0 ? f_dir : path, de->d_name);
1940 // fprintf(stderr, "%s priority %d\n", tmpresult, prio);
1941 if ((f = fopen(tmpresult, "rt"))) {
1942 fclose(f);
1943 result[subcnt].priority = prio;
1944 result[subcnt].fname = strdup(tmpresult);
1945 subcnt++;
1950 if (subcnt >= MAX_SUBTITLE_FILES) break;
1952 closedir(d);
1957 if (tmp_sub_id) free(tmp_sub_id);
1959 free(f_dir);
1960 free(f_fname);
1961 free(f_fname_noext);
1962 free(f_fname_trim);
1964 free(tmp_fname_noext);
1965 free(tmp_fname_trim);
1966 free(tmp_fname_ext);
1968 free(tmpresult);
1970 qsort(result, subcnt, sizeof(subfn), compare_sub_priority);
1972 result2 = malloc(sizeof(char*)*(subcnt+1));
1973 memset(result2, 0, sizeof(char*)*(subcnt+1));
1975 for (i = 0; i < subcnt; i++) {
1976 result2[i] = result[i].fname;
1978 result2[subcnt] = NULL;
1980 free(result);
1982 return result2;
1985 void list_sub_file(sub_data* subd){
1986 int i,j;
1987 subtitle *subs = subd->subtitles;
1989 for(j=0; j < subd->sub_num; j++){
1990 subtitle* egysub=&subs[j];
1991 mp_msg(MSGT_SUBREADER,MSGL_INFO,"%i line%c (%li-%li)\n",
1992 egysub->lines,
1993 (1==egysub->lines)?' ':'s',
1994 egysub->start,
1995 egysub->end);
1996 for (i=0; i<egysub->lines; i++) {
1997 mp_msg(MSGT_SUBREADER,MSGL_INFO,"\t\t%d: %s%s", i,egysub->text[i], i==egysub->lines-1?"":" \n ");
1999 mp_msg(MSGT_SUBREADER,MSGL_INFO,"\n");
2002 mp_msg(MSGT_SUBREADER,MSGL_INFO,"Subtitle format %s time.\n",
2003 subd->sub_uses_time ? "uses":"doesn't use");
2004 mp_msg(MSGT_SUBREADER,MSGL_INFO,"Read %i subtitles, %i errors.\n", subd->sub_num, subd->sub_errs);
2007 void dump_srt(sub_data* subd, float fps){
2008 int i,j;
2009 int h,m,s,ms;
2010 FILE * fd;
2011 subtitle * onesub;
2012 unsigned long temp;
2013 subtitle *subs = subd->subtitles;
2015 if (!subd->sub_uses_time && sub_fps == 0)
2016 sub_fps = fps;
2017 fd=fopen("dumpsub.srt","w");
2018 if(!fd)
2020 perror("dump_srt: fopen");
2021 return;
2023 for(i=0; i < subd->sub_num; i++)
2025 onesub=subs+i; //=&subs[i];
2026 fprintf(fd,"%d\n",i+1);//line number
2028 temp=onesub->start;
2029 if (!subd->sub_uses_time)
2030 temp = temp * 100 / sub_fps;
2031 temp -= sub_delay * 100;
2032 h=temp/360000;temp%=360000; //h =1*100*60*60
2033 m=temp/6000; temp%=6000; //m =1*100*60
2034 s=temp/100; temp%=100; //s =1*100
2035 ms=temp*10; //ms=1*10
2036 fprintf(fd,"%02d:%02d:%02d,%03d --> ",h,m,s,ms);
2038 temp=onesub->end;
2039 if (!subd->sub_uses_time)
2040 temp = temp * 100 / sub_fps;
2041 temp -= sub_delay * 100;
2042 h=temp/360000;temp%=360000;
2043 m=temp/6000; temp%=6000;
2044 s=temp/100; temp%=100;
2045 ms=temp*10;
2046 fprintf(fd,"%02d:%02d:%02d,%03d\n",h,m,s,ms);
2048 for(j=0;j<onesub->lines;j++)
2049 fprintf(fd,"%s\n",onesub->text[j]);
2051 fprintf(fd,"\n");
2053 fclose(fd);
2054 mp_msg(MSGT_SUBREADER,MSGL_INFO,"SUB: Subtitles dumped in \'dumpsub.srt\'.\n");
2057 void dump_mpsub(sub_data* subd, float fps){
2058 int i,j;
2059 FILE *fd;
2060 float a,b;
2061 subtitle *subs = subd->subtitles;
2063 mpsub_position = subd->sub_uses_time? (sub_delay*100) : (sub_delay*fps);
2064 if (sub_fps==0) sub_fps=fps;
2066 fd=fopen ("dump.mpsub", "w");
2067 if (!fd) {
2068 perror ("dump_mpsub: fopen");
2069 return;
2073 if (subd->sub_uses_time) fprintf (fd,"FORMAT=TIME\n\n");
2074 else fprintf (fd, "FORMAT=%5.2f\n\n", fps);
2076 for(j=0; j < subd->sub_num; j++){
2077 subtitle* egysub=&subs[j];
2078 if (subd->sub_uses_time) {
2079 a=((egysub->start-mpsub_position)/100.0);
2080 b=((egysub->end-egysub->start)/100.0);
2081 if ( (float)((int)a) == a)
2082 fprintf (fd, "%.0f",a);
2083 else
2084 fprintf (fd, "%.2f",a);
2086 if ( (float)((int)b) == b)
2087 fprintf (fd, " %.0f\n",b);
2088 else
2089 fprintf (fd, " %.2f\n",b);
2090 } else {
2091 fprintf (fd, "%ld %ld\n", (long)((egysub->start*(fps/sub_fps))-((mpsub_position*(fps/sub_fps)))),
2092 (long)(((egysub->end)-(egysub->start))*(fps/sub_fps)));
2095 mpsub_position = egysub->end;
2096 for (i=0; i<egysub->lines; i++) {
2097 fprintf (fd, "%s\n",egysub->text[i]);
2099 fprintf (fd, "\n");
2101 fclose (fd);
2102 mp_msg(MSGT_SUBREADER,MSGL_INFO,"SUB: Subtitles dumped in \'dump.mpsub\'.\n");
2105 void dump_microdvd(sub_data* subd, float fps) {
2106 int i, delay;
2107 FILE *fd;
2108 subtitle *subs = subd->subtitles;
2109 if (sub_fps == 0)
2110 sub_fps = fps;
2111 fd = fopen("dumpsub.sub", "w");
2112 if (!fd) {
2113 perror("dumpsub.sub: fopen");
2114 return;
2116 delay = sub_delay * sub_fps;
2117 for (i = 0; i < subd->sub_num; ++i) {
2118 int j, start, end;
2119 start = subs[i].start;
2120 end = subs[i].end;
2121 if (subd->sub_uses_time) {
2122 start = start * sub_fps / 100 ;
2123 end = end * sub_fps / 100;
2125 else {
2126 start = start * sub_fps / fps;
2127 end = end * sub_fps / fps;
2129 start -= delay;
2130 end -= delay;
2131 fprintf(fd, "{%d}{%d}", start, end);
2132 for (j = 0; j < subs[i].lines; ++j)
2133 fprintf(fd, "%s%s", j ? "|" : "", subs[i].text[j]);
2134 fprintf(fd, "\n");
2136 fclose(fd);
2137 mp_msg(MSGT_SUBREADER,MSGL_INFO,"SUB: Subtitles dumped in \'dumpsub.sub\'.\n");
2140 void dump_jacosub(sub_data* subd, float fps) {
2141 int i,j;
2142 int h,m,s,cs;
2143 FILE * fd;
2144 subtitle * onesub;
2145 unsigned long temp;
2146 subtitle *subs = subd->subtitles;
2148 if (!subd->sub_uses_time && sub_fps == 0)
2149 sub_fps = fps;
2150 fd=fopen("dumpsub.jss","w");
2151 if(!fd)
2153 perror("dump_jacosub: fopen");
2154 return;
2156 fprintf(fd, "#TIMERES %d\n", (subd->sub_uses_time) ? 100 : (int)sub_fps);
2157 for(i=0; i < subd->sub_num; i++)
2159 onesub=subs+i; //=&subs[i];
2161 temp=onesub->start;
2162 if (!subd->sub_uses_time)
2163 temp = temp * 100 / sub_fps;
2164 temp -= sub_delay * 100;
2165 h=temp/360000;temp%=360000; //h =1*100*60*60
2166 m=temp/6000; temp%=6000; //m =1*100*60
2167 s=temp/100; temp%=100; //s =1*100
2168 cs=temp; //cs=1*10
2169 fprintf(fd,"%02d:%02d:%02d.%02d ",h,m,s,cs);
2171 temp=onesub->end;
2172 if (!subd->sub_uses_time)
2173 temp = temp * 100 / sub_fps;
2174 temp -= sub_delay * 100;
2175 h=temp/360000;temp%=360000;
2176 m=temp/6000; temp%=6000;
2177 s=temp/100; temp%=100;
2178 cs=temp;
2179 fprintf(fd,"%02d:%02d:%02d.%02d {~} ",h,m,s,cs);
2181 for(j=0;j<onesub->lines;j++)
2182 fprintf(fd,"%s%s",j ? "\\n" : "", onesub->text[j]);
2184 fprintf(fd,"\n");
2186 fclose(fd);
2187 mp_msg(MSGT_SUBREADER,MSGL_INFO,"SUB: Subtitles dumped in \'dumpsub.js\'.\n");
2190 void dump_sami(sub_data* subd, float fps) {
2191 int i,j;
2192 FILE * fd;
2193 subtitle * onesub;
2194 unsigned long temp;
2195 subtitle *subs = subd->subtitles;
2197 if (!subd->sub_uses_time && sub_fps == 0)
2198 sub_fps = fps;
2199 fd=fopen("dumpsub.smi","w");
2200 if(!fd)
2202 perror("dump_jacosub: fopen");
2203 return;
2205 fprintf(fd, "<SAMI>\n"
2206 "<HEAD>\n"
2207 " <STYLE TYPE=\"Text/css\">\n"
2208 " <!--\n"
2209 " 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"
2210 " .SUBTTL {Name: 'Subtitles'; Lang: en-US; SAMIType: CC;}\n"
2211 " -->\n"
2212 " </STYLE>\n"
2213 "</HEAD>\n"
2214 "<BODY>\n");
2215 for(i=0; i < subd->sub_num; i++)
2217 onesub=subs+i; //=&subs[i];
2219 temp=onesub->start;
2220 if (!subd->sub_uses_time)
2221 temp = temp * 100 / sub_fps;
2222 temp -= sub_delay * 100;
2223 fprintf(fd,"\t<SYNC Start=%lu>\n"
2224 "\t <P>", temp * 10);
2226 for(j=0;j<onesub->lines;j++)
2227 fprintf(fd,"%s%s",j ? "<br>" : "", onesub->text[j]);
2229 fprintf(fd,"\n");
2231 temp=onesub->end;
2232 if (!subd->sub_uses_time)
2233 temp = temp * 100 / sub_fps;
2234 temp -= sub_delay * 100;
2235 fprintf(fd,"\t<SYNC Start=%lu>\n"
2236 "\t <P>&nbsp;\n", temp * 10);
2238 fprintf(fd, "</BODY>\n"
2239 "</SAMI>\n");
2240 fclose(fd);
2241 mp_msg(MSGT_SUBREADER,MSGL_INFO,"SUB: Subtitles dumped in \'dumpsub.smi\'.\n");
2244 void sub_free( sub_data * subd )
2246 int i;
2248 if ( !subd ) return;
2250 if (subd->subtitles) {
2251 for (i=0; i < subd->subtitles->lines; i++) free( subd->subtitles->text[i] );
2252 free( subd->subtitles );
2254 if (subd->filename) free( subd->filename );
2255 free( subd );
2258 #define MAX_SUBLINE 512
2260 * \brief parse text and append it to subtitle in sub
2261 * \param sub subtitle struct to add text to
2262 * \param txt text to parse
2263 * \param len length of text in txt
2264 * \param endpts pts at which this subtitle text should be removed again
2266 * <> and {} are interpreted as comment delimiters, "\n", "\N", '\n', '\r'
2267 * and '\0' are interpreted as newlines, duplicate, leading and trailing
2268 * newlines are ignored.
2270 void sub_add_text(subtitle *sub, const char *txt, int len, double endpts) {
2271 int comment = 0;
2272 int double_newline = 1; // ignore newlines at the beginning
2273 int i, pos;
2274 char *buf;
2275 if (sub->lines >= SUB_MAX_TEXT) return;
2276 pos = 0;
2277 buf = malloc(MAX_SUBLINE + 1);
2278 sub->text[sub->lines] = buf;
2279 sub->endpts[sub->lines] = endpts;
2280 for (i = 0; i < len && pos < MAX_SUBLINE; i++) {
2281 char c = txt[i];
2282 if (c == '<') comment |= 1;
2283 if (c == '{') comment |= 2;
2284 if (comment) {
2285 if (c == '}') comment &= ~2;
2286 if (c == '>') comment &= ~1;
2287 continue;
2289 if (pos == MAX_SUBLINE - 1) {
2290 i--;
2291 c = 0;
2293 if (c == '\\' && i + 1 < len) {
2294 c = txt[++i];
2295 if (c == 'n' || c == 'N') c = 0;
2297 if (c == '\n' || c == '\r') c = 0;
2298 if (c) {
2299 double_newline = 0;
2300 buf[pos++] = c;
2301 } else if (!double_newline) {
2302 if (sub->lines >= SUB_MAX_TEXT - 1) {
2303 mp_msg(MSGT_VO, MSGL_WARN, "Too many subtitle lines\n");
2304 break;
2306 double_newline = 1;
2307 buf[pos] = 0;
2308 sub->lines++;
2309 pos = 0;
2310 buf = malloc(MAX_SUBLINE + 1);
2311 sub->text[sub->lines] = buf;
2312 sub->endpts[sub->lines] = endpts;
2315 buf[pos] = 0;
2316 if (sub->lines < SUB_MAX_TEXT &&
2317 strlen(sub->text[sub->lines]))
2318 sub->lines++;
2321 #define MP_NOPTS_VALUE (-1LL<<63)
2323 * \brief remove outdated subtitle lines.
2324 * \param sub subtitle struct to modify
2325 * \param pts current pts. All lines with endpts <= this will be removed.
2326 * Use MP_NOPTS_VALUE to remove all lines
2327 * \return 1 if sub was modified, 0 otherwise.
2329 int sub_clear_text(subtitle *sub, double pts) {
2330 int i = 0;
2331 int changed = 0;
2332 while (i < sub->lines) {
2333 double endpts = sub->endpts[i];
2334 if (pts == MP_NOPTS_VALUE || (endpts != MP_NOPTS_VALUE && pts >= endpts)) {
2335 int j;
2336 free(sub->text[i]);
2337 for (j = i + 1; j < sub->lines; j++) {
2338 sub->text[j - 1] = sub->text[j];
2339 sub->endpts[j - 1] = sub->endpts[j];
2341 sub->lines--;
2342 changed = 1;
2343 } else
2344 i++;
2346 return changed;