Mercurial > mplayer.hg
annotate subreader.c @ 6879:7e5f45cc7af4
-dvdkey option clarified.
author | diego |
---|---|
date | Sat, 03 Aug 2002 20:36:53 +0000 |
parents | 0d08931fb3c3 |
children | dc48f2130a76 |
rev | line source |
---|---|
258 | 1 /* |
2 * Subtitle reader with format autodetection | |
3 * | |
4 * Written by laaz | |
5 * Some code cleanup & realloc() by A'rpi/ESP-team | |
1081 | 6 * dunnowhat sub format by szabi |
258 | 7 */ |
8 | |
9 | |
10 #include <stdio.h> | |
11 #include <stdlib.h> | |
12 #include <string.h> | |
706
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
13 #include <ctype.h> |
258 | 14 |
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
15 #include "config.h" |
6296 | 16 #include "mp_msg.h" |
258 | 17 #include "subreader.h" |
18 | |
3701 | 19 #define ERR ((void *) -1) |
258 | 20 |
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
21 #ifdef USE_ICONV |
2358 | 22 #ifdef __FreeBSD__ |
23 #include <giconv.h> | |
24 #else | |
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
25 #include <iconv.h> |
2358 | 26 #endif |
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
27 char *sub_cp=NULL; |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
28 #endif |
258 | 29 |
2912 | 30 /* Maximal length of line of a subtitle */ |
31 #define LINE_LEN 1000 | |
2177 | 32 |
2178 | 33 static float mpsub_position=0; |
2177 | 34 |
258 | 35 int sub_uses_time=0; |
36 int sub_errs=0; | |
624 | 37 int sub_num=0; // number of subtitle structs |
3235
0cf593b6bab0
patch fixes the showing last line of subtitles and support of SAMI Slacktime option by Evgeny Chukreev <codedj@echo.ru>
arpi
parents:
2915
diff
changeset
|
38 int sub_slacktime=2000; // 20 seconds |
2912 | 39 |
40 /* Use the SUB_* constant defined in the header file */ | |
41 int sub_format=SUB_INVALID; | |
624 | 42 |
3701 | 43 static int eol(char p) { |
624 | 44 return (p=='\r' || p=='\n' || p=='\0'); |
45 } | |
46 | |
3701 | 47 /* Remove leading and trailing space */ |
48 static void trail_space(char *s) { | |
49 int i = 0; | |
3924
9f18722fafe9
tail_space infinite loop fix by jeon_goon@lycos.co.kr
arpi
parents:
3735
diff
changeset
|
50 while (isspace(s[i])) ++i; |
3701 | 51 if (i) strcpy(s, s + i); |
706
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
52 i = strlen(s) - 1; |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
53 while (i > 0 && isspace(s[i])) s[i--] = '\0'; |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
54 } |
624 | 55 |
2343 | 56 |
624 | 57 subtitle *sub_read_line_sami(FILE *fd, subtitle *current) { |
2912 | 58 static char line[LINE_LEN+1]; |
3235
0cf593b6bab0
patch fixes the showing last line of subtitles and support of SAMI Slacktime option by Evgeny Chukreev <codedj@echo.ru>
arpi
parents:
2915
diff
changeset
|
59 static char *s = NULL, *slacktime_s; |
2912 | 60 char text[LINE_LEN+1], *p, *q; |
706
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
61 int state; |
624 | 62 |
706
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
63 current->lines = current->start = current->end = 0; |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
64 state = 0; |
624 | 65 |
706
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
66 /* read the first line */ |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
67 if (!s) |
2912 | 68 if (!(s = fgets(line, LINE_LEN, fd))) return 0; |
706
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
69 |
624 | 70 do { |
706
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
71 switch (state) { |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
72 |
3235
0cf593b6bab0
patch fixes the showing last line of subtitles and support of SAMI Slacktime option by Evgeny Chukreev <codedj@echo.ru>
arpi
parents:
2915
diff
changeset
|
73 case 0: /* find "START=" or "Slacktime:" */ |
0cf593b6bab0
patch fixes the showing last line of subtitles and support of SAMI Slacktime option by Evgeny Chukreev <codedj@echo.ru>
arpi
parents:
2915
diff
changeset
|
74 slacktime_s = strstr (s, "Slacktime:"); |
0cf593b6bab0
patch fixes the showing last line of subtitles and support of SAMI Slacktime option by Evgeny Chukreev <codedj@echo.ru>
arpi
parents:
2915
diff
changeset
|
75 if (slacktime_s) sub_slacktime = strtol (slacktime_s + 10, NULL, 0) / 10; |
0cf593b6bab0
patch fixes the showing last line of subtitles and support of SAMI Slacktime option by Evgeny Chukreev <codedj@echo.ru>
arpi
parents:
2915
diff
changeset
|
76 |
706
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
77 s = strstr (s, "Start="); |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
78 if (s) { |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
79 current->start = strtol (s + 6, &s, 0) / 10; |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
80 state = 1; continue; |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
81 } |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
82 break; |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
83 |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
84 case 1: /* find "<P" */ |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
85 if ((s = strstr (s, "<P"))) { s += 2; state = 2; continue; } |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
86 break; |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
87 |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
88 case 2: /* find ">" */ |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
89 if ((s = strchr (s, '>'))) { s++; state = 3; p = text; continue; } |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
90 break; |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
91 |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
92 case 3: /* get all text until '<' appears */ |
3235
0cf593b6bab0
patch fixes the showing last line of subtitles and support of SAMI Slacktime option by Evgeny Chukreev <codedj@echo.ru>
arpi
parents:
2915
diff
changeset
|
93 if (*s == '\0') break; |
2836
ec672ea5ac2c
Applied SAMI patch by Evgeny Chukreev <codedj at echo dot ru>
atmos4
parents:
2495
diff
changeset
|
94 else if (!strncasecmp (s, "<br>", 4)) { |
706
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
95 *p = '\0'; p = text; trail_space (text); |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
96 if (text[0] != '\0') |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
97 current->text[current->lines++] = strdup (text); |
2836
ec672ea5ac2c
Applied SAMI patch by Evgeny Chukreev <codedj at echo dot ru>
atmos4
parents:
2495
diff
changeset
|
98 s += 4; |
706
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
99 } |
2836
ec672ea5ac2c
Applied SAMI patch by Evgeny Chukreev <codedj at echo dot ru>
atmos4
parents:
2495
diff
changeset
|
100 else if (*s == '<') { state = 4; } |
ec672ea5ac2c
Applied SAMI patch by Evgeny Chukreev <codedj at echo dot ru>
atmos4
parents:
2495
diff
changeset
|
101 else if (!strncasecmp (s, " ", 6)) { *p++ = ' '; s += 6; } |
ec672ea5ac2c
Applied SAMI patch by Evgeny Chukreev <codedj at echo dot ru>
atmos4
parents:
2495
diff
changeset
|
102 else if (*s == '\t') { *p++ = ' '; s++; } |
ec672ea5ac2c
Applied SAMI patch by Evgeny Chukreev <codedj at echo dot ru>
atmos4
parents:
2495
diff
changeset
|
103 else if (*s == '\r' || *s == '\n') { s++; } |
706
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
104 else *p++ = *s++; |
2836
ec672ea5ac2c
Applied SAMI patch by Evgeny Chukreev <codedj at echo dot ru>
atmos4
parents:
2495
diff
changeset
|
105 |
ec672ea5ac2c
Applied SAMI patch by Evgeny Chukreev <codedj at echo dot ru>
atmos4
parents:
2495
diff
changeset
|
106 /* skip duplicated space */ |
ec672ea5ac2c
Applied SAMI patch by Evgeny Chukreev <codedj at echo dot ru>
atmos4
parents:
2495
diff
changeset
|
107 if (p > text + 2) if (*(p-1) == ' ' && *(p-2) == ' ') p--; |
ec672ea5ac2c
Applied SAMI patch by Evgeny Chukreev <codedj at echo dot ru>
atmos4
parents:
2495
diff
changeset
|
108 |
624 | 109 continue; |
706
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
110 |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
111 case 4: /* get current->end or skip <TAG> */ |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
112 q = strstr (s, "Start="); |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
113 if (q) { |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
114 current->end = strtol (q + 6, &q, 0) / 10 - 1; |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
115 *p = '\0'; trail_space (text); |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
116 if (text[0] != '\0') |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
117 current->text[current->lines++] = strdup (text); |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
118 if (current->lines > 0) { state = 99; break; } |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
119 state = 0; continue; |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
120 } |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
121 s = strchr (s, '>'); |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
122 if (s) { s++; state = 3; continue; } |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
123 break; |
624 | 124 } |
125 | |
706
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
126 /* read next line */ |
3735 | 127 if (state != 99 && !(s = fgets (line, LINE_LEN, fd))) { |
128 if (current->start > 0) { | |
129 break; // if it is the last subtitle | |
130 } else { | |
131 return 0; | |
132 } | |
133 } | |
3235
0cf593b6bab0
patch fixes the showing last line of subtitles and support of SAMI Slacktime option by Evgeny Chukreev <codedj@echo.ru>
arpi
parents:
2915
diff
changeset
|
134 |
706
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
135 } while (state != 99); |
624 | 136 |
3235
0cf593b6bab0
patch fixes the showing last line of subtitles and support of SAMI Slacktime option by Evgeny Chukreev <codedj@echo.ru>
arpi
parents:
2915
diff
changeset
|
137 // For the last subtitle |
0cf593b6bab0
patch fixes the showing last line of subtitles and support of SAMI Slacktime option by Evgeny Chukreev <codedj@echo.ru>
arpi
parents:
2915
diff
changeset
|
138 if (current->end <= 0) { |
0cf593b6bab0
patch fixes the showing last line of subtitles and support of SAMI Slacktime option by Evgeny Chukreev <codedj@echo.ru>
arpi
parents:
2915
diff
changeset
|
139 current->end = current->start + sub_slacktime; |
0cf593b6bab0
patch fixes the showing last line of subtitles and support of SAMI Slacktime option by Evgeny Chukreev <codedj@echo.ru>
arpi
parents:
2915
diff
changeset
|
140 *p = '\0'; trail_space (text); |
0cf593b6bab0
patch fixes the showing last line of subtitles and support of SAMI Slacktime option by Evgeny Chukreev <codedj@echo.ru>
arpi
parents:
2915
diff
changeset
|
141 if (text[0] != '\0') |
0cf593b6bab0
patch fixes the showing last line of subtitles and support of SAMI Slacktime option by Evgeny Chukreev <codedj@echo.ru>
arpi
parents:
2915
diff
changeset
|
142 current->text[current->lines++] = strdup (text); |
0cf593b6bab0
patch fixes the showing last line of subtitles and support of SAMI Slacktime option by Evgeny Chukreev <codedj@echo.ru>
arpi
parents:
2915
diff
changeset
|
143 } |
0cf593b6bab0
patch fixes the showing last line of subtitles and support of SAMI Slacktime option by Evgeny Chukreev <codedj@echo.ru>
arpi
parents:
2915
diff
changeset
|
144 |
624 | 145 return current; |
146 } | |
258 | 147 |
148 | |
149 char *sub_readtext(char *source, char **dest) { | |
150 int len=0; | |
932 | 151 char *p=source; |
258 | 152 |
6242
9c8c3b5e6658
possible sig11 fixed in .rt parser (weisskreuzova.zip)
arpi
parents:
6208
diff
changeset
|
153 // printf("src=%p dest=%p \n",source,dest); |
9c8c3b5e6658
possible sig11 fixed in .rt parser (weisskreuzova.zip)
arpi
parents:
6208
diff
changeset
|
154 |
932 | 155 while ( !eol(*p) && *p!= '|' ) { |
156 p++,len++; | |
157 } | |
258 | 158 |
159 *dest= (char *)malloc (len+1); | |
160 if (!dest) {return ERR;} | |
161 | |
162 strncpy(*dest, source, len); | |
163 (*dest)[len]=0; | |
164 | |
165 while (*p=='\r' || *p=='\n' || *p=='|') p++; | |
166 | |
167 if (*p) return p; // not-last text field | |
168 else return NULL; // last text field | |
169 } | |
170 | |
171 subtitle *sub_read_line_microdvd(FILE *fd,subtitle *current) { | |
2912 | 172 char line[LINE_LEN+1]; |
173 char line2[LINE_LEN+1]; | |
258 | 174 char *p, *next; |
175 int i; | |
176 | |
177 do { | |
2912 | 178 if (!fgets (line, LINE_LEN, fd)) return NULL; |
4048
654419a9a228
changed subreader.c to read microdvd lines in form "{%ld}{}[^\r\n]" too
atlka
parents:
3924
diff
changeset
|
179 } while ((sscanf (line, |
654419a9a228
changed subreader.c to read microdvd lines in form "{%ld}{}[^\r\n]" too
atlka
parents:
3924
diff
changeset
|
180 "{%ld}{}%[^\r\n]", |
654419a9a228
changed subreader.c to read microdvd lines in form "{%ld}{}[^\r\n]" too
atlka
parents:
3924
diff
changeset
|
181 &(current->start), line2) < 2) && |
654419a9a228
changed subreader.c to read microdvd lines in form "{%ld}{}[^\r\n]" too
atlka
parents:
3924
diff
changeset
|
182 (sscanf (line, |
654419a9a228
changed subreader.c to read microdvd lines in form "{%ld}{}[^\r\n]" too
atlka
parents:
3924
diff
changeset
|
183 "{%ld}{%ld}%[^\r\n]", |
654419a9a228
changed subreader.c to read microdvd lines in form "{%ld}{}[^\r\n]" too
atlka
parents:
3924
diff
changeset
|
184 &(current->start), &(current->end), line2) < 3)); |
654419a9a228
changed subreader.c to read microdvd lines in form "{%ld}{}[^\r\n]" too
atlka
parents:
3924
diff
changeset
|
185 |
932 | 186 p=line2; |
258 | 187 |
188 next=p, i=0; | |
1081 | 189 while ((next =sub_readtext (next, &(current->text[i])))) { |
270 | 190 if (current->text[i]==ERR) {return ERR;} |
258 | 191 i++; |
6296 | 192 if (i>=SUB_MAX_TEXT) { mp_msg(MSGT_SUBREADER,MSGL_WARN,"Too many lines in a subtitle\n");current->lines=i;return current;} |
258 | 193 } |
932 | 194 current->lines= ++i; |
258 | 195 |
196 return current; | |
197 } | |
198 | |
199 subtitle *sub_read_line_subrip(FILE *fd, subtitle *current) { | |
2912 | 200 char line[LINE_LEN+1]; |
258 | 201 int a1,a2,a3,a4,b1,b2,b3,b4; |
202 char *p=NULL, *q=NULL; | |
203 int len; | |
204 | |
1764 | 205 while (1) { |
2912 | 206 if (!fgets (line, LINE_LEN, fd)) return NULL; |
269 | 207 if (sscanf (line, "%d:%d:%d.%d,%d:%d:%d.%d",&a1,&a2,&a3,&a4,&b1,&b2,&b3,&b4) < 8) continue; |
258 | 208 current->start = a1*360000+a2*6000+a3*100+a4; |
209 current->end = b1*360000+b2*6000+b3*100+b4; | |
210 | |
2912 | 211 if (!fgets (line, LINE_LEN, fd)) return NULL; |
258 | 212 |
213 p=q=line; | |
214 for (current->lines=1; current->lines < SUB_MAX_TEXT; current->lines++) { | |
6657
766b6fb28ebf
subrip sometimes uses pipe as newline separator - patch by MOLNAR Andor <dolphy@inf.elte.hu>
arpi
parents:
6597
diff
changeset
|
215 for (q=p,len=0; *p && *p!='\r' && *p!='\n' && *p!='|' && strncmp(p,"[br]",4); p++,len++); |
258 | 216 current->text[current->lines-1]=(char *)malloc (len+1); |
217 if (!current->text[current->lines-1]) return ERR; | |
218 strncpy (current->text[current->lines-1], q, len); | |
270 | 219 current->text[current->lines-1][len]='\0'; |
258 | 220 if (!*p || *p=='\r' || *p=='\n') break; |
6657
766b6fb28ebf
subrip sometimes uses pipe as newline separator - patch by MOLNAR Andor <dolphy@inf.elte.hu>
arpi
parents:
6597
diff
changeset
|
221 if (*p=='|') p++; |
766b6fb28ebf
subrip sometimes uses pipe as newline separator - patch by MOLNAR Andor <dolphy@inf.elte.hu>
arpi
parents:
6597
diff
changeset
|
222 else while (*p++!=']'); |
258 | 223 } |
1764 | 224 break; |
258 | 225 } |
226 return current; | |
227 } | |
228 | |
2912 | 229 subtitle *sub_read_line_subviewer(FILE *fd,subtitle *current) { |
230 char line[LINE_LEN+1]; | |
258 | 231 int a1,a2,a3,a4,b1,b2,b3,b4; |
232 char *p=NULL; | |
233 int i,len; | |
234 | |
235 while (!current->text[0]) { | |
2912 | 236 if (!fgets (line, LINE_LEN, fd)) return NULL; |
269 | 237 if ((len=sscanf (line, "%d:%d:%d,%d --> %d:%d:%d,%d",&a1,&a2,&a3,&a4,&b1,&b2,&b3,&b4)) < 8) |
258 | 238 continue; |
239 current->start = a1*360000+a2*6000+a3*100+a4/10; | |
240 current->end = b1*360000+b2*6000+b3*100+b4/10; | |
241 for (i=0; i<SUB_MAX_TEXT;) { | |
2912 | 242 if (!fgets (line, LINE_LEN, fd)) break; |
258 | 243 len=0; |
244 for (p=line; *p!='\n' && *p!='\r' && *p; p++,len++); | |
245 if (len) { | |
246 current->text[i]=(char *)malloc (len+1); | |
247 if (!current->text[i]) return ERR; | |
270 | 248 strncpy (current->text[i], line, len); current->text[i][len]='\0'; |
258 | 249 i++; |
250 } else { | |
251 break; | |
252 } | |
253 } | |
254 current->lines=i; | |
255 } | |
256 return current; | |
257 } | |
258 | |
6012 | 259 subtitle *sub_read_line_subviewer2(FILE *fd,subtitle *current) { |
260 char line[LINE_LEN+1]; | |
261 int a1,a2,a3,a4; | |
262 char *p=NULL; | |
263 int i,len; | |
264 | |
265 while (!current->text[0]) { | |
266 if (!fgets (line, LINE_LEN, fd)) return NULL; | |
267 if (line[0]!='{') | |
268 continue; | |
269 if ((len=sscanf (line, "{T %d:%d:%d:%d",&a1,&a2,&a3,&a4)) < 4) | |
270 continue; | |
271 current->start = a1*360000+a2*6000+a3*100+a4/10; | |
272 for (i=0; i<SUB_MAX_TEXT;) { | |
273 if (!fgets (line, LINE_LEN, fd)) break; | |
274 if (line[0]=='}') break; | |
275 len=0; | |
276 for (p=line; *p!='\n' && *p!='\r' && *p; ++p,++len); | |
277 if (len) { | |
278 current->text[i]=(char *)malloc (len+1); | |
279 if (!current->text[i]) return ERR; | |
280 strncpy (current->text[i], line, len); current->text[i][len]='\0'; | |
281 ++i; | |
282 } else { | |
283 break; | |
284 } | |
285 } | |
286 current->lines=i; | |
287 } | |
288 return current; | |
289 } | |
290 | |
291 | |
818 | 292 subtitle *sub_read_line_vplayer(FILE *fd,subtitle *current) { |
2912 | 293 char line[LINE_LEN+1]; |
4064
3c747168eb6e
1. subs know are readed after reading AVI header so we already know fps
atlka
parents:
4052
diff
changeset
|
294 int a1,a2,a3; |
3735 | 295 char *p=NULL, *next,separator; |
4064
3c747168eb6e
1. subs know are readed after reading AVI header so we already know fps
atlka
parents:
4052
diff
changeset
|
296 int i,len,plen; |
818 | 297 |
298 while (!current->text[0]) { | |
2912 | 299 if (!fgets (line, LINE_LEN, fd)) return NULL; |
3724
a2325883c46c
vplayer format - no longer crashes on slightly broken subs.
eyck
parents:
3701
diff
changeset
|
300 if ((len=sscanf (line, "%d:%d:%d%c%n",&a1,&a2,&a3,&separator,&plen)) < 4) |
818 | 301 continue; |
4064
3c747168eb6e
1. subs know are readed after reading AVI header so we already know fps
atlka
parents:
4052
diff
changeset
|
302 |
3c747168eb6e
1. subs know are readed after reading AVI header so we already know fps
atlka
parents:
4052
diff
changeset
|
303 if (!(current->start = a1*360000+a2*6000+a3*100)) |
818 | 304 continue; |
5363
1f068f4bb6e7
vplayer sub fix by Arkadiusz Podgorski <wodzu@softomat.com.pl>
arpi
parents:
4886
diff
changeset
|
305 /* removed by wodzu |
4064
3c747168eb6e
1. subs know are readed after reading AVI header so we already know fps
atlka
parents:
4052
diff
changeset
|
306 p=line; |
1640
cbedcfab877b
Fixup to vplayer subtitle submitted to sourceforge by Igor Wojnicki
eyck
parents:
1501
diff
changeset
|
307 // finds the body of the subtitle |
cbedcfab877b
Fixup to vplayer subtitle submitted to sourceforge by Igor Wojnicki
eyck
parents:
1501
diff
changeset
|
308 for (i=0; i<3; i++){ |
3433 | 309 p=strchr(p,':'); |
310 if (p==NULL) break; | |
311 ++p; | |
312 } | |
313 if (p==NULL) { | |
314 printf("SUB: Skipping incorrect subtitle line!\n"); | |
315 continue; | |
316 } | |
5363
1f068f4bb6e7
vplayer sub fix by Arkadiusz Podgorski <wodzu@softomat.com.pl>
arpi
parents:
4886
diff
changeset
|
317 */ |
1f068f4bb6e7
vplayer sub fix by Arkadiusz Podgorski <wodzu@softomat.com.pl>
arpi
parents:
4886
diff
changeset
|
318 // by wodzu: hey! this time we know what length it has! what is |
1f068f4bb6e7
vplayer sub fix by Arkadiusz Podgorski <wodzu@softomat.com.pl>
arpi
parents:
4886
diff
changeset
|
319 // that magic for? it can't deal with space instead of third |
1f068f4bb6e7
vplayer sub fix by Arkadiusz Podgorski <wodzu@softomat.com.pl>
arpi
parents:
4886
diff
changeset
|
320 // colon! look, what simple it can be: |
1f068f4bb6e7
vplayer sub fix by Arkadiusz Podgorski <wodzu@softomat.com.pl>
arpi
parents:
4886
diff
changeset
|
321 p = &line[ plen ]; |
4064
3c747168eb6e
1. subs know are readed after reading AVI header so we already know fps
atlka
parents:
4052
diff
changeset
|
322 |
1640
cbedcfab877b
Fixup to vplayer subtitle submitted to sourceforge by Igor Wojnicki
eyck
parents:
1501
diff
changeset
|
323 i=0; |
818 | 324 if (*p!='|') { |
325 // | |
326 next = p,i=0; | |
327 while ((next =sub_readtext (next, &(current->text[i])))) { | |
328 if (current->text[i]==ERR) {return ERR;} | |
329 i++; | |
6296 | 330 if (i>=SUB_MAX_TEXT) { mp_msg(MSGT_SUBREADER,MSGL_WARN,"Too many lines in a subtitle\n");current->lines=i;return current;} |
818 | 331 } |
332 current->lines=i+1; | |
333 } | |
334 } | |
335 return current; | |
336 } | |
337 | |
850 | 338 subtitle *sub_read_line_rt(FILE *fd,subtitle *current) { |
339 //TODO: This format uses quite rich (sub/super)set of xhtml | |
340 // I couldn't check it since DTD is not included. | |
341 // WARNING: full XML parses can be required for proper parsing | |
2912 | 342 char line[LINE_LEN+1]; |
850 | 343 int a1,a2,a3,a4,b1,b2,b3,b4; |
344 char *p=NULL,*next=NULL; | |
345 int i,len,plen; | |
346 | |
347 while (!current->text[0]) { | |
2912 | 348 if (!fgets (line, LINE_LEN, fd)) return NULL; |
850 | 349 //TODO: it seems that format of time is not easily determined, it may be 1:12, 1:12.0 or 0:1:12.0 |
350 //to describe the same moment in time. Maybe there are even more formats in use. | |
351 //if ((len=sscanf (line, "<Time Begin=\"%d:%d:%d.%d\" End=\"%d:%d:%d.%d\"",&a1,&a2,&a3,&a4,&b1,&b2,&b3,&b4)) < 8) | |
352 plen=a1=a2=a3=a4=b1=b2=b3=b4=0; | |
353 if ( | |
354 ((len=sscanf (line, "<%*[tT]ime %*[bB]egin=\"%d:%d\" %*[Ee]nd=\"%d:%d\"%*[^<]<clear/>%n",&a2,&a3,&b2,&b3,&plen)) < 4) && | |
355 ((len=sscanf (line, "<%*[tT]ime %*[bB]egin=\"%d:%d\" %*[Ee]nd=\"%d:%d.%d\"%*[^<]<clear/>%n",&a2,&a3,&b2,&b3,&b4,&plen)) < 5) && | |
356 // ((len=sscanf (line, "<%*[tT]ime %*[bB]egin=\"%d:%d.%d\" %*[Ee]nd=\"%d:%d\"%*[^<]<clear/>%n",&a2,&a3,&a4,&b2,&b3,&plen)) < 5) && | |
357 ((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) && | |
358 ((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) | |
359 ) | |
360 continue; | |
361 current->start = a1*360000+a2*6000+a3*100+a4/10; | |
362 current->end = b1*360000+b2*6000+b3*100+b4/10; | |
363 p=line; p+=plen;i=0; | |
364 // TODO: I don't know what kind of convention is here for marking multiline subs, maybe <br/> like in xml? | |
6242
9c8c3b5e6658
possible sig11 fixed in .rt parser (weisskreuzova.zip)
arpi
parents:
6208
diff
changeset
|
365 next = strstr(line,"<clear/>"); |
9c8c3b5e6658
possible sig11 fixed in .rt parser (weisskreuzova.zip)
arpi
parents:
6208
diff
changeset
|
366 if(next && strlen(next)>8){ |
9c8c3b5e6658
possible sig11 fixed in .rt parser (weisskreuzova.zip)
arpi
parents:
6208
diff
changeset
|
367 next+=8;i=0; |
9c8c3b5e6658
possible sig11 fixed in .rt parser (weisskreuzova.zip)
arpi
parents:
6208
diff
changeset
|
368 while ((next =sub_readtext (next, &(current->text[i])))) { |
850 | 369 if (current->text[i]==ERR) {return ERR;} |
370 i++; | |
6296 | 371 if (i>=SUB_MAX_TEXT) { mp_msg(MSGT_SUBREADER,MSGL_WARN,"Too many lines in a subtitle\n");current->lines=i;return current;} |
6242
9c8c3b5e6658
possible sig11 fixed in .rt parser (weisskreuzova.zip)
arpi
parents:
6208
diff
changeset
|
372 } |
850 | 373 } |
374 current->lines=i+1; | |
375 } | |
376 return current; | |
377 } | |
378 | |
921 | 379 subtitle *sub_read_line_ssa(FILE *fd,subtitle *current) { |
6597 | 380 /* |
381 * Sub Station Alpha v4 (and v2?) scripts have 9 commas before subtitle | |
382 * other Sub Station Alpha scripts have only 8 commas before subtitle | |
383 * Reading the "ScriptType:" field is not reliable since many scripts appear | |
384 * w/o it | |
385 * | |
386 * http://www.scriptclub.org is a good place to find more examples | |
387 * http://www.eswat.demon.co.uk is where the SSA specs can be found | |
388 */ | |
389 int comma; | |
390 static int max_comma = 32; /* let's use 32 for the case that the */ | |
391 /* amount of commas increase with newer SSA versions */ | |
392 | |
921 | 393 int hour1, min1, sec1, hunsec1, |
394 hour2, min2, sec2, hunsec2, nothing; | |
2141 | 395 int num; |
921 | 396 |
2912 | 397 char line[LINE_LEN+1], |
398 line3[LINE_LEN+1], | |
2140 | 399 *line2; |
2141 | 400 char *tmp; |
401 | |
921 | 402 do { |
2912 | 403 if (!fgets (line, LINE_LEN, fd)) return NULL; |
921 | 404 } while (sscanf (line, "Dialogue: Marked=%d,%d:%d:%d.%d,%d:%d:%d.%d," |
2140 | 405 "%[^\n\r]", ¬hing, |
406 &hour1, &min1, &sec1, &hunsec1, | |
407 &hour2, &min2, &sec2, &hunsec2, | |
408 line3) < 9); | |
6597 | 409 |
410 line2=strchr(line3, ','); | |
411 | |
412 for (comma = 4; comma < max_comma; comma ++) | |
413 { | |
414 tmp = line2; | |
415 if(!(tmp=strchr(++tmp, ','))) break; | |
416 if(*(++tmp) == ' ') break; | |
417 /* a space after a comma means we're already in a sentence */ | |
418 line2 = tmp; | |
419 } | |
420 | |
421 if(comma < max_comma)max_comma = comma; | |
2140 | 422 |
6247
0b8660d79efe
sub_read_line_ssa sig11 fix by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
arpi
parents:
6242
diff
changeset
|
423 current->lines=0;num=0; |
921 | 424 current->start = 360000*hour1 + 6000*min1 + 100*sec1 + hunsec1; |
425 current->end = 360000*hour2 + 6000*min2 + 100*sec2 + hunsec2; | |
2141 | 426 |
5990
e5b3385775b3
accept \N too, patch by Reinder <r.cuperus@student.utwente.nl>
arpi
parents:
5828
diff
changeset
|
427 while (((tmp=strstr(line2, "\\n")) != NULL) || ((tmp=strstr(line2, "\\N")) != NULL) ){ |
2141 | 428 current->text[num]=(char *)malloc(tmp-line2+1); |
429 strncpy (current->text[num], line2, tmp-line2); | |
430 current->text[num][tmp-line2]='\0'; | |
431 line2=tmp+2; | |
432 num++; | |
433 current->lines++; | |
434 if (current->lines >= SUB_MAX_TEXT) return current; | |
435 } | |
436 | |
3701 | 437 current->text[num]=strdup(line2); |
6247
0b8660d79efe
sub_read_line_ssa sig11 fix by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
arpi
parents:
6242
diff
changeset
|
438 current->lines++; |
818 | 439 |
921 | 440 return current; |
441 } | |
258 | 442 |
1081 | 443 subtitle *sub_read_line_dunnowhat(FILE *fd,subtitle *current) { |
2912 | 444 char line[LINE_LEN+1]; |
445 char text[LINE_LEN+1]; | |
1081 | 446 |
2912 | 447 if (!fgets (line, LINE_LEN, fd)) |
1081 | 448 return NULL; |
449 if (sscanf (line, "%ld,%ld,\"%[^\"]", &(current->start), | |
450 &(current->end), text) <3) | |
451 return ERR; | |
452 current->text[0] = strdup(text); | |
453 current->lines = 1; | |
454 | |
455 return current; | |
456 } | |
457 | |
2177 | 458 subtitle *sub_read_line_mpsub(FILE *fd, subtitle *current) { |
2912 | 459 char line[LINE_LEN+1]; |
2178 | 460 float a,b; |
461 int num=0; | |
2177 | 462 char *p, *q; |
463 | |
464 do | |
465 { | |
2912 | 466 if (!fgets(line, LINE_LEN, fd)) return NULL; |
2178 | 467 } while (sscanf (line, "%f %f", &a, &b) !=2); |
2177 | 468 |
5828
880008901169
frame-based mpsub parser fix - patch by Rizsanyi Zsolt <rizsanyi@myrealbox.com>
arpi
parents:
5363
diff
changeset
|
469 mpsub_position += a*(sub_uses_time ? 100.0 : 1.0); |
2178 | 470 current->start=(int) mpsub_position; |
5828
880008901169
frame-based mpsub parser fix - patch by Rizsanyi Zsolt <rizsanyi@myrealbox.com>
arpi
parents:
5363
diff
changeset
|
471 mpsub_position += b*(sub_uses_time ? 100.0 : 1.0); |
2178 | 472 current->end=(int) mpsub_position; |
2177 | 473 |
474 while (num < SUB_MAX_TEXT) { | |
4098 | 475 if (!fgets (line, LINE_LEN, fd)) { |
476 if (num == 0) return NULL; | |
477 else return current; | |
478 } | |
2177 | 479 p=line; |
480 while (isspace(*p)) p++; | |
481 if (eol(*p) && num > 0) return current; | |
482 if (eol(*p)) return NULL; | |
483 | |
484 for (q=p; !eol(*q); q++); | |
485 *q='\0'; | |
486 if (strlen(p)) { | |
487 current->text[num]=strdup(p); | |
4098 | 488 // printf (">%s<\n",p); |
2177 | 489 current->lines = ++num; |
490 } else { | |
491 if (num) return current; | |
492 else return NULL; | |
493 } | |
494 } | |
3735 | 495 return NULL; // we should have returned before if it's OK |
2177 | 496 } |
497 | |
2343 | 498 subtitle *previous_aqt_sub = NULL; |
499 | |
500 subtitle *sub_read_line_aqt(FILE *fd,subtitle *current) { | |
2912 | 501 char line[LINE_LEN+1]; |
6076
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
502 char *next; |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
503 int i; |
2343 | 504 |
505 while (1) { | |
506 // try to locate next subtitle | |
2912 | 507 if (!fgets (line, LINE_LEN, fd)) |
2343 | 508 return NULL; |
509 if (!(sscanf (line, "-->> %ld", &(current->start)) <1)) | |
510 break; | |
511 } | |
512 | |
513 if (previous_aqt_sub != NULL) | |
514 previous_aqt_sub->end = current->start-1; | |
515 | |
516 previous_aqt_sub = current; | |
517 | |
2912 | 518 if (!fgets (line, LINE_LEN, fd)) |
2343 | 519 return NULL; |
520 | |
2468 | 521 sub_readtext((char *) &line,¤t->text[0]); |
2343 | 522 current->lines = 1; |
523 current->end = current->start; // will be corrected by next subtitle | |
524 | |
2912 | 525 if (!fgets (line, LINE_LEN, fd)) |
2343 | 526 return current;; |
527 | |
6076
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
528 next = line,i=1; |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
529 while ((next =sub_readtext (next, &(current->text[i])))) { |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
530 if (current->text[i]==ERR) {return ERR;} |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
531 i++; |
6296 | 532 if (i>=SUB_MAX_TEXT) { mp_msg(MSGT_SUBREADER,MSGL_WARN,"Too many lines in a subtitle\n");current->lines=i;return current;} |
6076
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
533 } |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
534 current->lines=i+1; |
2343 | 535 |
536 if ((current->text[0]=="") && (current->text[1]=="")) { | |
537 // void subtitle -> end of previous marked and exit | |
538 previous_aqt_sub = NULL; | |
539 return NULL; | |
540 } | |
541 | |
542 return current; | |
543 } | |
2177 | 544 |
6076
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
545 subtitle *previous_subrip09_sub = NULL; |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
546 |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
547 subtitle *sub_read_line_subrip09(FILE *fd,subtitle *current) { |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
548 char line[LINE_LEN+1]; |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
549 int a1,a2,a3; |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
550 char * next=NULL; |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
551 int i,len; |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
552 |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
553 while (1) { |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
554 // try to locate next subtitle |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
555 if (!fgets (line, LINE_LEN, fd)) |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
556 return NULL; |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
557 if (!((len=sscanf (line, "[%d:%d:%d]",&a1,&a2,&a3)) < 3)) |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
558 break; |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
559 } |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
560 |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
561 if (previous_subrip09_sub != NULL) |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
562 previous_subrip09_sub->end = current->start-1; |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
563 |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
564 previous_subrip09_sub = current; |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
565 |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
566 if (!fgets (line, LINE_LEN, fd)) |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
567 return NULL; |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
568 |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
569 current->start = a1*360000+a2*6000+a3*100; |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
570 |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
571 next = line,i=0; |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
572 |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
573 current->text[0]==""; // just to be sure that string is clear |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
574 |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
575 while ((next =sub_readtext (next, &(current->text[i])))) { |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
576 if (current->text[i]==ERR) {return ERR;} |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
577 i++; |
6296 | 578 if (i>=SUB_MAX_TEXT) { mp_msg(MSGT_SUBREADER,MSGL_WARN,"Too many lines in a subtitle\n");current->lines=i;return current;} |
6076
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
579 } |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
580 current->lines=i+1; |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
581 |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
582 if ((current->text[0]=="") && (i==0)) { |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
583 // void subtitle -> end of previous marked and exit |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
584 previous_subrip09_sub = NULL; |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
585 return NULL; |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
586 } |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
587 |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
588 return current; |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
589 } |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
590 |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
591 |
258 | 592 int sub_autodetect (FILE *fd) { |
2912 | 593 char line[LINE_LEN+1]; |
258 | 594 int i,j=0; |
2177 | 595 char p; |
258 | 596 |
624 | 597 while (j < 100) { |
258 | 598 j++; |
2912 | 599 if (!fgets (line, LINE_LEN, fd)) |
600 return SUB_INVALID; | |
258 | 601 |
624 | 602 if (sscanf (line, "{%d}{%d}", &i, &i)==2) |
2912 | 603 {sub_uses_time=0;return SUB_MICRODVD;} |
4519 | 604 if (sscanf (line, "{%d}{}", &i)==1) |
4444 | 605 {sub_uses_time=0;return SUB_MICRODVD;} |
269 | 606 if (sscanf (line, "%d:%d:%d.%d,%d:%d:%d.%d", &i, &i, &i, &i, &i, &i, &i, &i)==8) |
2912 | 607 {sub_uses_time=1;return SUB_SUBRIP;} |
269 | 608 if (sscanf (line, "%d:%d:%d,%d --> %d:%d:%d,%d", &i, &i, &i, &i, &i, &i, &i, &i)==8) |
2912 | 609 {sub_uses_time=1;return SUB_SUBVIEWER;} |
6012 | 610 if (sscanf (line, "{T %d:%d:%d:%d",&i, &i, &i, &i)) |
611 {sub_uses_time=1;return SUB_SUBVIEWER2;} | |
624 | 612 if (strstr (line, "<SAMI>")) |
2912 | 613 {sub_uses_time=1; return SUB_SAMI;} |
818 | 614 if (sscanf (line, "%d:%d:%d:", &i, &i, &i )==3) |
2912 | 615 {sub_uses_time=1;return SUB_VPLAYER;} |
5363
1f068f4bb6e7
vplayer sub fix by Arkadiusz Podgorski <wodzu@softomat.com.pl>
arpi
parents:
4886
diff
changeset
|
616 if (sscanf (line, "%d:%d:%d ", &i, &i, &i )==3) |
1f068f4bb6e7
vplayer sub fix by Arkadiusz Podgorski <wodzu@softomat.com.pl>
arpi
parents:
4886
diff
changeset
|
617 {sub_uses_time=1;return SUB_VPLAYER;} |
850 | 618 //TODO: just checking if first line of sub starts with "<" is WAY |
913
18c43d261c35
corrected strcmp() bug, now it works again with every subs (it was broken)
laaz
parents:
896
diff
changeset
|
619 // too weak test for RT |
18c43d261c35
corrected strcmp() bug, now it works again with every subs (it was broken)
laaz
parents:
896
diff
changeset
|
620 // Please someone who knows the format of RT... FIX IT!!! |
921 | 621 // It may conflict with other sub formats in the future (actually it doesn't) |
913
18c43d261c35
corrected strcmp() bug, now it works again with every subs (it was broken)
laaz
parents:
896
diff
changeset
|
622 if ( *line == '<' ) |
2912 | 623 {sub_uses_time=1;return SUB_RT;} |
921 | 624 |
625 if (!memcmp(line, "Dialogue: Marked", 16)) | |
2912 | 626 {sub_uses_time=1; return SUB_SSA;} |
1081 | 627 if (sscanf (line, "%d,%d,\"%c", &i, &i, (char *) &i) == 3) |
2912 | 628 {sub_uses_time=0;return SUB_DUNNOWHAT;} |
2177 | 629 if (sscanf (line, "FORMAT=%d", &i) == 1) |
2912 | 630 {sub_uses_time=0; return SUB_MPSUB;} |
2177 | 631 if (sscanf (line, "FORMAT=TIM%c", &p)==1 && p=='E') |
2912 | 632 {sub_uses_time=1; return SUB_MPSUB;} |
2343 | 633 if (strstr (line, "-->>")) |
6076
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
634 {sub_uses_time=0; return SUB_AQTITLE;} |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
635 if (sscanf (line, "[%d:%d:%d]", &i, &i, &i)==3) |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
636 {sub_uses_time=1;return SUB_SUBRIP09;} |
258 | 637 } |
624 | 638 |
2912 | 639 return SUB_INVALID; // too many bad lines |
258 | 640 } |
2449
7ef89d9b06ed
added DUMPSUBS recognition if we need compile only subreader.c alone
atlka
parents:
2358
diff
changeset
|
641 |
7ef89d9b06ed
added DUMPSUBS recognition if we need compile only subreader.c alone
atlka
parents:
2358
diff
changeset
|
642 #ifdef DUMPSUBS |
7ef89d9b06ed
added DUMPSUBS recognition if we need compile only subreader.c alone
atlka
parents:
2358
diff
changeset
|
643 int sub_utf8=0; |
7ef89d9b06ed
added DUMPSUBS recognition if we need compile only subreader.c alone
atlka
parents:
2358
diff
changeset
|
644 #else |
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
645 extern int sub_utf8; |
2449
7ef89d9b06ed
added DUMPSUBS recognition if we need compile only subreader.c alone
atlka
parents:
2358
diff
changeset
|
646 #endif |
258 | 647 |
4886 | 648 extern float sub_delay; |
649 extern float sub_fps; | |
650 | |
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
651 #ifdef USE_ICONV |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
652 static iconv_t icdsc; |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
653 |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
654 void subcp_open (void) |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
655 { |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
656 char *tocp = "UTF-8"; |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
657 icdsc = (iconv_t)(-1); |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
658 if (sub_cp){ |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
659 if ((icdsc = iconv_open (tocp, sub_cp)) != (iconv_t)(-1)){ |
6296 | 660 mp_msg(MSGT_SUBREADER,MSGL_V,"SUB: opened iconv descriptor.\n"); |
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
661 sub_utf8 = 2; |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
662 } else |
6296 | 663 mp_msg(MSGT_SUBREADER,MSGL_ERR,"SUB: error opening iconv descriptor.\n"); |
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
664 } |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
665 } |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
666 |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
667 void subcp_close (void) |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
668 { |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
669 if (icdsc != (iconv_t)(-1)){ |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
670 (void) iconv_close (icdsc); |
6296 | 671 mp_msg(MSGT_SUBREADER,MSGL_V,"SUB: closed iconv descriptor.\n"); |
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
672 } |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
673 } |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
674 |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
675 #define ICBUFFSIZE 512 |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
676 static char icbuffer[ICBUFFSIZE]; |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
677 |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
678 subtitle* subcp_recode (subtitle *sub) |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
679 { |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
680 int l=sub->lines; |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
681 size_t ileft, oleft, otlen; |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
682 char *op, *ip, *ot; |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
683 |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
684 while (l){ |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
685 op = icbuffer; |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
686 ip = sub->text[--l]; |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
687 ileft = strlen(ip); |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
688 oleft = ICBUFFSIZE - 1; |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
689 |
6163
141a082e6da6
applied 64bit patch from Ulrich Hecht <uli at suse dot de>
alex
parents:
6076
diff
changeset
|
690 if (iconv(icdsc, &ip, &ileft, |
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
691 &op, &oleft) == (size_t)(-1)) { |
6296 | 692 mp_msg(MSGT_SUBREADER,MSGL_WARN,"SUB: error recoding line.\n"); |
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
693 l++; |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
694 break; |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
695 } |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
696 if (!(ot = (char *)malloc(op - icbuffer + 1))){ |
6296 | 697 mp_msg(MSGT_SUBREADER,MSGL_WARN,"SUB: error allocating mem.\n"); |
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
698 l++; |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
699 break; |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
700 } |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
701 *op='\0' ; |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
702 strcpy (ot, icbuffer); |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
703 free (sub->text[l]); |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
704 sub->text[l] = ot; |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
705 } |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
706 if (l){ |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
707 for (l = sub->lines; l;) |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
708 free (sub->text[--l]); |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
709 return ERR; |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
710 } |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
711 return sub; |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
712 } |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
713 |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
714 #endif |
258 | 715 |
4064
3c747168eb6e
1. subs know are readed after reading AVI header so we already know fps
atlka
parents:
4052
diff
changeset
|
716 static void adjust_subs_time(subtitle* sub, float subtime, float fps){ |
3c747168eb6e
1. subs know are readed after reading AVI header so we already know fps
atlka
parents:
4052
diff
changeset
|
717 int n,m; |
4052
505f206d80d1
corrections to adjust_subs_time function which now uses fps if needed
atlka
parents:
4051
diff
changeset
|
718 subtitle* nextsub; |
4051
0e7c382bc53a
added adjust_subs_time function which corrects bad sub->end time
atlka
parents:
4048
diff
changeset
|
719 int i = sub_num; |
4052
505f206d80d1
corrections to adjust_subs_time function which now uses fps if needed
atlka
parents:
4051
diff
changeset
|
720 unsigned long subfms = (sub_uses_time ? 100 : fps) * subtime; |
4064
3c747168eb6e
1. subs know are readed after reading AVI header so we already know fps
atlka
parents:
4052
diff
changeset
|
721 |
3c747168eb6e
1. subs know are readed after reading AVI header so we already know fps
atlka
parents:
4052
diff
changeset
|
722 n=m=0; |
4052
505f206d80d1
corrections to adjust_subs_time function which now uses fps if needed
atlka
parents:
4051
diff
changeset
|
723 if (i) for (;;){ |
4064
3c747168eb6e
1. subs know are readed after reading AVI header so we already know fps
atlka
parents:
4052
diff
changeset
|
724 if (sub->end <= sub->start){ |
4052
505f206d80d1
corrections to adjust_subs_time function which now uses fps if needed
atlka
parents:
4051
diff
changeset
|
725 sub->end = sub->start + subfms; |
4064
3c747168eb6e
1. subs know are readed after reading AVI header so we already know fps
atlka
parents:
4052
diff
changeset
|
726 m++; |
3c747168eb6e
1. subs know are readed after reading AVI header so we already know fps
atlka
parents:
4052
diff
changeset
|
727 n++; |
3c747168eb6e
1. subs know are readed after reading AVI header so we already know fps
atlka
parents:
4052
diff
changeset
|
728 } |
3c747168eb6e
1. subs know are readed after reading AVI header so we already know fps
atlka
parents:
4052
diff
changeset
|
729 if (!--i) break; |
4051
0e7c382bc53a
added adjust_subs_time function which corrects bad sub->end time
atlka
parents:
4048
diff
changeset
|
730 nextsub = sub + 1; |
0e7c382bc53a
added adjust_subs_time function which corrects bad sub->end time
atlka
parents:
4048
diff
changeset
|
731 if (sub->end >= nextsub->start){ |
0e7c382bc53a
added adjust_subs_time function which corrects bad sub->end time
atlka
parents:
4048
diff
changeset
|
732 sub->end = nextsub->start - 1; |
4052
505f206d80d1
corrections to adjust_subs_time function which now uses fps if needed
atlka
parents:
4051
diff
changeset
|
733 if (sub->end - sub->start > subfms) |
505f206d80d1
corrections to adjust_subs_time function which now uses fps if needed
atlka
parents:
4051
diff
changeset
|
734 sub->end = sub->start + subfms; |
4064
3c747168eb6e
1. subs know are readed after reading AVI header so we already know fps
atlka
parents:
4052
diff
changeset
|
735 if (!m) |
3c747168eb6e
1. subs know are readed after reading AVI header so we already know fps
atlka
parents:
4052
diff
changeset
|
736 n++; |
4051
0e7c382bc53a
added adjust_subs_time function which corrects bad sub->end time
atlka
parents:
4048
diff
changeset
|
737 } |
0e7c382bc53a
added adjust_subs_time function which corrects bad sub->end time
atlka
parents:
4048
diff
changeset
|
738 sub = nextsub; |
4064
3c747168eb6e
1. subs know are readed after reading AVI header so we already know fps
atlka
parents:
4052
diff
changeset
|
739 m = 0; |
4051
0e7c382bc53a
added adjust_subs_time function which corrects bad sub->end time
atlka
parents:
4048
diff
changeset
|
740 } |
6296 | 741 if (n) mp_msg(MSGT_SUBREADER,MSGL_INFO,"SUB: Adjusted %d subtitle(s).\n", n); |
4051
0e7c382bc53a
added adjust_subs_time function which corrects bad sub->end time
atlka
parents:
4048
diff
changeset
|
742 } |
0e7c382bc53a
added adjust_subs_time function which corrects bad sub->end time
atlka
parents:
4048
diff
changeset
|
743 |
4064
3c747168eb6e
1. subs know are readed after reading AVI header so we already know fps
atlka
parents:
4052
diff
changeset
|
744 subtitle* sub_read_file (char *filename, float fps) { |
258 | 745 FILE *fd; |
746 int n_max; | |
747 subtitle *first; | |
4064
3c747168eb6e
1. subs know are readed after reading AVI header so we already know fps
atlka
parents:
4052
diff
changeset
|
748 char *fmtname[] = { "microdvd", "subrip", "subviewer", "sami", "vplayer", |
6076
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
749 "rt", "ssa", "dunnowhat", "mpsub", "aqt", "subviewer 2.0", "subrip 0.9" }; |
1081 | 750 subtitle * (*func[])(FILE *fd,subtitle *dest)= |
258 | 751 { |
752 sub_read_line_microdvd, | |
753 sub_read_line_subrip, | |
2912 | 754 sub_read_line_subviewer, |
818 | 755 sub_read_line_sami, |
850 | 756 sub_read_line_vplayer, |
921 | 757 sub_read_line_rt, |
1081 | 758 sub_read_line_ssa, |
2177 | 759 sub_read_line_dunnowhat, |
2343 | 760 sub_read_line_mpsub, |
6012 | 761 sub_read_line_aqt, |
6076
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
762 sub_read_line_subviewer2, |
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
763 sub_read_line_subrip09 |
2343 | 764 |
258 | 765 }; |
2915 | 766 if(filename==NULL) return NULL; //qnx segfault |
258 | 767 fd=fopen (filename, "r"); if (!fd) return NULL; |
768 | |
769 sub_format=sub_autodetect (fd); | |
6296 | 770 if (sub_format==SUB_INVALID) {mp_msg(MSGT_SUBREADER,MSGL_WARN,"SUB: Could not determine file format\n");return NULL;} |
771 mp_msg(MSGT_SUBREADER,MSGL_INFO,"SUB: Detected subtitle file format: %s\n", fmtname[sub_format]); | |
258 | 772 |
773 rewind (fd); | |
774 | |
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
775 #ifdef USE_ICONV |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
776 subcp_open(); |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
777 #endif |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
778 |
258 | 779 sub_num=0;n_max=32; |
780 first=(subtitle *)malloc(n_max*sizeof(subtitle)); | |
781 if(!first) return NULL; | |
782 | |
783 while(1){ | |
784 subtitle *sub; | |
785 if(sub_num>=n_max){ | |
786 n_max+=16; | |
787 first=realloc(first,n_max*sizeof(subtitle)); | |
788 } | |
4064
3c747168eb6e
1. subs know are readed after reading AVI header so we already know fps
atlka
parents:
4052
diff
changeset
|
789 sub = &first[sub_num]; |
3c747168eb6e
1. subs know are readed after reading AVI header so we already know fps
atlka
parents:
4052
diff
changeset
|
790 memset(sub, '\0', sizeof(subtitle)); |
3c747168eb6e
1. subs know are readed after reading AVI header so we already know fps
atlka
parents:
4052
diff
changeset
|
791 sub=func[sub_format](fd,sub); |
258 | 792 if(!sub) break; // EOF |
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
793 #ifdef USE_ICONV |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
794 if ((sub!=ERR) && (sub_utf8 & 2)) sub=subcp_recode(sub); |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
795 #endif |
258 | 796 if(sub==ERR) ++sub_errs; else ++sub_num; // Error vs. Valid |
797 } | |
798 | |
799 fclose(fd); | |
800 | |
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
801 #ifdef USE_ICONV |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
802 subcp_close(); |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
803 #endif |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
804 |
258 | 805 // printf ("SUB: Subtitle format %s time.\n", sub_uses_time?"uses":"doesn't use"); |
6296 | 806 mp_msg(MSGT_SUBREADER,MSGL_INFO,"SUB: Read %i subtitles", sub_num); |
807 if (sub_errs) mp_msg(MSGT_SUBREADER,MSGL_INFO,", %i bad line(s).\n", sub_errs); | |
808 else mp_msg(MSGT_SUBREADER,MSGL_INFO,".\n"); | |
258 | 809 |
2880 | 810 if(sub_num<=0){ |
811 free(first); | |
812 return NULL; | |
813 } | |
814 | |
4064
3c747168eb6e
1. subs know are readed after reading AVI header so we already know fps
atlka
parents:
4052
diff
changeset
|
815 adjust_subs_time(first, 6.0, fps); /* ~6 secs AST */ |
258 | 816 return first; |
817 } | |
818 | |
892 | 819 #if 0 |
509 | 820 char * strreplace( char * in,char * what,char * whereof ) |
821 { | |
822 int i; | |
823 char * tmp; | |
824 | |
825 if ( ( in == NULL )||( what == NULL )||( whereof == NULL )||( ( tmp=strstr( in,what ) ) == NULL ) ) return NULL; | |
826 for( i=0;i<strlen( whereof );i++ ) tmp[i]=whereof[i]; | |
827 if ( strlen( what ) > strlen( whereof ) ) tmp[i]=0; | |
828 return in; | |
829 } | |
892 | 830 #endif |
509 | 831 |
892 | 832 char * sub_filename(char* path, char * fname ) |
509 | 833 { |
892 | 834 char * sub_name1; |
835 char * sub_name2; | |
934
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
836 char * aviptr1, * aviptr2, * tmp; |
892 | 837 int i,j; |
838 FILE * f; | |
839 int pos=0; | |
840 char * sub_exts[] = | |
1501
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1081
diff
changeset
|
841 { ".utf", |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1081
diff
changeset
|
842 ".UTF", |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1081
diff
changeset
|
843 ".sub", |
509 | 844 ".SUB", |
845 ".srt", | |
706
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
846 ".SRT", |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
847 ".smi", |
850 | 848 ".SMI", |
849 ".rt", | |
850 ".RT", | |
851 ".txt", | |
1081 | 852 ".TXT", |
853 ".ssa", | |
2343 | 854 ".SSA", |
855 ".aqt", | |
856 ".AQT"}; | |
892 | 857 |
934
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
858 |
509 | 859 if ( fname == NULL ) return NULL; |
892 | 860 |
861 sub_name1=strrchr(fname,'.'); | |
862 if (!sub_name1) return NULL; | |
863 pos=sub_name1-fname; | |
864 | |
934
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
865 sub_name1=malloc(strlen(fname)+8); |
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
866 strcpy(sub_name1,fname); |
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
867 |
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
868 sub_name2=malloc (strlen(path) + strlen(fname) + 8); |
1081 | 869 if ((tmp=strrchr(fname,'/'))) |
934
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
870 sprintf (sub_name2, "%s%s", path, tmp+1); |
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
871 else |
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
872 sprintf (sub_name2, "%s%s", path, fname); |
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
873 |
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
874 aviptr1=strrchr(sub_name1,'.'); |
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
875 aviptr2=strrchr(sub_name2,'.'); |
892 | 876 |
877 for(j=0;j<=1;j++){ | |
878 char* sub_name=j?sub_name1:sub_name2; | |
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
879 #ifdef USE_ICONV |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
880 for ( i=(sub_cp?2:0);i<(sizeof(sub_exts)/sizeof(char*));i++ ) { |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
881 #else |
892 | 882 for ( i=0;i<(sizeof(sub_exts)/sizeof(char*));i++ ) { |
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
883 #endif |
934
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
884 strcpy(j?aviptr1:aviptr2,sub_exts[i]); |
935 | 885 // printf("trying: '%s'\n",sub_name); |
892 | 886 if((f=fopen( sub_name,"rt" ))) { |
509 | 887 fclose( f ); |
6296 | 888 mp_msg(MSGT_SUBREADER,MSGL_INFO,"SUB: Detected sub file: %s\n",sub_name ); |
1501
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1081
diff
changeset
|
889 if (i<2) sub_utf8=1; |
509 | 890 return sub_name; |
892 | 891 } |
509 | 892 } |
892 | 893 } |
894 | |
509 | 895 return NULL; |
896 } | |
897 | |
1761 | 898 void list_sub_file(subtitle* subs){ |
899 int i,j; | |
900 | |
901 for(j=0;j<sub_num;j++){ | |
902 subtitle* egysub=&subs[j]; | |
903 printf ("%i line%c (%li-%li) ", | |
904 egysub->lines, | |
905 (1==egysub->lines)?' ':'s', | |
906 egysub->start, | |
907 egysub->end); | |
908 for (i=0; i<egysub->lines; i++) { | |
909 printf ("%s%s",egysub->text[i], i==egysub->lines-1?"":" <BREAK> "); | |
910 } | |
911 printf ("\n"); | |
912 } | |
913 | |
914 printf ("Subtitle format %s time.\n", sub_uses_time?"uses":"doesn't use"); | |
915 printf ("Read %i subtitles, %i errors.\n", sub_num, sub_errs); | |
916 | |
917 } | |
6792 | 918 void dump_srt(subtitle* subs, float fps){ |
6208 | 919 int i,j; |
920 int h,m,s,ms; | |
921 FILE * fd; | |
922 subtitle * onesub; | |
923 unsigned long temp; | |
924 | |
6792 | 925 if (!sub_uses_time && sub_fps == 0) |
926 sub_fps = fps; | |
6208 | 927 fd=fopen("dumpsub.srt","w"); |
928 if(!fd) | |
929 { | |
930 perror("dump_srt: fopen"); | |
931 return; | |
932 } | |
933 for(i=0;i<sub_num;i++) | |
934 { | |
935 onesub=subs+i; //=&subs[i]; | |
936 fprintf(fd,"%d\n",i+1);//line number | |
937 | |
938 temp=onesub->start; | |
6792 | 939 if (!sub_uses_time) |
940 temp = temp * 100 / sub_fps; | |
941 temp -= sub_delay * 100; | |
6208 | 942 h=temp/360000;temp%=360000; //h =1*100*60*60 |
943 m=temp/6000; temp%=6000; //m =1*100*60 | |
944 s=temp/100; temp%=100; //s =1*100 | |
6792 | 945 ms=temp*10; //ms=1*10 |
6208 | 946 fprintf(fd,"%02d:%02d:%02d,%03d --> ",h,m,s,ms); |
947 | |
948 temp=onesub->end; | |
6792 | 949 if (!sub_uses_time) |
950 temp = temp * 100 / sub_fps; | |
951 temp -= sub_delay * 100; | |
6208 | 952 h=temp/360000;temp%=360000; |
953 m=temp/6000; temp%=6000; | |
954 s=temp/100; temp%=100; | |
6792 | 955 ms=temp*10; |
6208 | 956 fprintf(fd,"%02d:%02d:%02d,%03d\n",h,m,s,ms); |
957 | |
958 for(j=0;j<onesub->lines;j++) | |
959 fprintf(fd,"%s\n",onesub->text[j]); | |
960 | |
961 fprintf(fd,"\n"); | |
962 } | |
963 fclose(fd); | |
6296 | 964 mp_msg(MSGT_SUBREADER,MSGL_INFO,"SUB: Subtitles dumped in \'dumpsub.srt\'.\n"); |
6208 | 965 } |
1761 | 966 |
4064
3c747168eb6e
1. subs know are readed after reading AVI header so we already know fps
atlka
parents:
4052
diff
changeset
|
967 void dump_mpsub(subtitle* subs, float fps){ |
2178 | 968 int i,j; |
969 FILE *fd; | |
970 float a,b; | |
971 | |
4886 | 972 mpsub_position=sub_uses_time?(sub_delay*100):(sub_delay*fps); |
973 if (sub_fps==0) sub_fps=fps; | |
2178 | 974 |
975 fd=fopen ("dump.mpsub", "w"); | |
976 if (!fd) { | |
977 perror ("dump_mpsub: fopen"); | |
978 return; | |
979 } | |
980 | |
981 | |
982 if (sub_uses_time) fprintf (fd,"FORMAT=TIME\n\n"); | |
4064
3c747168eb6e
1. subs know are readed after reading AVI header so we already know fps
atlka
parents:
4052
diff
changeset
|
983 else fprintf (fd, "FORMAT=%5.2f\n\n", fps); |
2178 | 984 |
985 for(j=0;j<sub_num;j++){ | |
2495 | 986 subtitle* egysub=&subs[j]; |
987 if (sub_uses_time) { | |
988 a=((egysub->start-mpsub_position)/100.0); | |
989 b=((egysub->end-egysub->start)/100.0); | |
990 if ( (float)((int)a) == a) | |
991 fprintf (fd, "%.0f",a); | |
992 else | |
993 fprintf (fd, "%.2f",a); | |
994 | |
995 if ( (float)((int)b) == b) | |
996 fprintf (fd, " %.0f\n",b); | |
997 else | |
998 fprintf (fd, " %.2f\n",b); | |
999 } else { | |
4886 | 1000 fprintf (fd, "%ld %ld\n", (long)((egysub->start*(fps/sub_fps))-((mpsub_position*(fps/sub_fps)))), |
1001 (long)(((egysub->end)-(egysub->start))*(fps/sub_fps))); | |
2495 | 1002 } |
1003 | |
1004 mpsub_position = egysub->end; | |
1005 for (i=0; i<egysub->lines; i++) { | |
1006 fprintf (fd, "%s\n",egysub->text[i]); | |
1007 } | |
1008 fprintf (fd, "\n"); | |
2178 | 1009 } |
1010 fclose (fd); | |
6296 | 1011 mp_msg(MSGT_SUBREADER,MSGL_INFO,"SUB: Subtitles dumped in \'dump.mpsub\'.\n"); |
2178 | 1012 } |
1013 | |
3543 | 1014 void sub_free( subtitle * subs ) |
1015 { | |
1016 int i; | |
1017 | |
1018 if ( !subs ) return; | |
1019 | |
1020 sub_num=0; | |
1021 sub_errs=0; | |
1022 for ( i=0;i<subs->lines;i++ ) free( subs->text[i] ); | |
1023 free( subs ); | |
1024 subs=NULL; | |
1025 } | |
2178 | 1026 |
2449
7ef89d9b06ed
added DUMPSUBS recognition if we need compile only subreader.c alone
atlka
parents:
2358
diff
changeset
|
1027 #ifdef DUMPSUBS |
258 | 1028 int main(int argc, char **argv) { // for testing |
1029 | |
1030 int i,j; | |
1031 subtitle *subs; | |
1032 subtitle *egysub; | |
1033 | |
1034 if(argc<2){ | |
1035 printf("\nUsage: subreader filename.sub\n\n"); | |
1036 exit(1); | |
1037 } | |
2449
7ef89d9b06ed
added DUMPSUBS recognition if we need compile only subreader.c alone
atlka
parents:
2358
diff
changeset
|
1038 sub_cp = argv[2]; |
624 | 1039 subs=sub_read_file(argv[1]); |
258 | 1040 if(!subs){ |
4886 | 1041 printf("Couldn't load file.\n"); |
258 | 1042 exit(1); |
1043 } | |
1761 | 1044 |
1045 list_sub_file(subs); | |
258 | 1046 |
1047 return 0; | |
1048 } | |
706
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
1049 #endif |