Mercurial > mplayer.hg
annotate subreader.c @ 2337:e6d8e9a54afa
OSD support
author | nick |
---|---|
date | Sun, 21 Oct 2001 15:04:04 +0000 |
parents | e509abdbf195 |
children | da8dbcfb89d0 |
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" |
258 | 16 #include "subreader.h" |
17 | |
18 #define ERR (void *)-1 | |
19 | |
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
20 #ifdef USE_ICONV |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
21 #include <iconv.h> |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
22 char *sub_cp=NULL; |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
23 #endif |
258 | 24 |
2177 | 25 |
2178 | 26 static float mpsub_position=0; |
2177 | 27 |
258 | 28 int sub_uses_time=0; |
29 int sub_errs=0; | |
624 | 30 int sub_num=0; // number of subtitle structs |
31 int sub_format=-1; // 0 for microdvd | |
32 // 1 for SubRip | |
921 | 33 // 2 for SubViewer |
624 | 34 // 3 for SAMI (smi) |
818 | 35 // 4 for vplayer format |
850 | 36 // 5 for RT format |
921 | 37 // 6 for ssa (Sub Station Alpha) |
1081 | 38 // 7 for ... erm ... dunnowhat. tell me if you know |
2177 | 39 // 8 for the glorious MPsub |
624 | 40 |
41 int eol(char p) { | |
42 return (p=='\r' || p=='\n' || p=='\0'); | |
43 } | |
44 | |
706
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
45 static inline void trail_space(char *s) { |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
46 int i; |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
47 while (isspace(*s)) strcpy(s, s + 1); |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
48 i = strlen(s) - 1; |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
49 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
|
50 } |
624 | 51 |
52 subtitle *sub_read_line_sami(FILE *fd, subtitle *current) { | |
706
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
53 static char line[1001]; |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
54 static char *s = NULL; |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
55 char text[1000], *p, *q; |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
56 int state; |
624 | 57 |
706
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
58 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
|
59 state = 0; |
624 | 60 |
706
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
61 /* read the first line */ |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
62 if (!s) |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
63 if (!(s = fgets(line, 1000, fd))) return 0; |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
64 |
624 | 65 do { |
706
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
66 switch (state) { |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
67 |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
68 case 0: /* find "START=" */ |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
69 s = strstr (s, "Start="); |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
70 if (s) { |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
71 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
|
72 state = 1; continue; |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
73 } |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
74 break; |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
75 |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
76 case 1: /* find "<P" */ |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
77 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
|
78 break; |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
79 |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
80 case 2: /* find ">" */ |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
81 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
|
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 3: /* get all text until '<' appears */ |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
85 if (*s == '\0') { break; } |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
86 else if (*s == '<') { state = 4; } |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
87 else if (!strncasecmp (s, " ", 6)) { *p++ = ' '; s += 6; } |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
88 else if (*s == '\r') { s++; } |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
89 else if (!strncasecmp (s, "<br>", 4) || *s == '\n') { |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
90 *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
|
91 if (text[0] != '\0') |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
92 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
|
93 if (*s == '\n') s++; else s += 4; |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
94 } |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
95 else *p++ = *s++; |
624 | 96 continue; |
706
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
97 |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
98 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
|
99 q = strstr (s, "Start="); |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
100 if (q) { |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
101 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
|
102 *p = '\0'; trail_space (text); |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
103 if (text[0] != '\0') |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
104 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
|
105 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
|
106 state = 0; continue; |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
107 } |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
108 s = strchr (s, '>'); |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
109 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
|
110 break; |
624 | 111 } |
112 | |
706
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
113 /* read next line */ |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
114 if (state != 99 && !(s = fgets (line, 1000, fd))) return 0; |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
115 |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
116 } while (state != 99); |
624 | 117 |
118 return current; | |
119 } | |
258 | 120 |
121 | |
122 char *sub_readtext(char *source, char **dest) { | |
123 int len=0; | |
932 | 124 char *p=source; |
258 | 125 |
932 | 126 while ( !eol(*p) && *p!= '|' ) { |
127 p++,len++; | |
128 } | |
258 | 129 |
130 *dest= (char *)malloc (len+1); | |
131 if (!dest) {return ERR;} | |
132 | |
133 strncpy(*dest, source, len); | |
134 (*dest)[len]=0; | |
135 | |
136 while (*p=='\r' || *p=='\n' || *p=='|') p++; | |
137 | |
138 if (*p) return p; // not-last text field | |
139 else return NULL; // last text field | |
140 } | |
141 | |
142 subtitle *sub_read_line_microdvd(FILE *fd,subtitle *current) { | |
143 char line[1001]; | |
144 char line2[1001]; | |
145 char *p, *next; | |
146 int i; | |
147 | |
1764 | 148 bzero (current, sizeof(subtitle)); |
258 | 149 |
150 do { | |
151 if (!fgets (line, 1000, fd)) return NULL; | |
932 | 152 } while (sscanf (line, "{%ld}{%ld}%[^\r\n]", &(current->start), &(current->end),line2) <3); |
258 | 153 |
932 | 154 p=line2; |
258 | 155 |
156 next=p, i=0; | |
1081 | 157 while ((next =sub_readtext (next, &(current->text[i])))) { |
270 | 158 if (current->text[i]==ERR) {return ERR;} |
258 | 159 i++; |
1081 | 160 if (i>=SUB_MAX_TEXT) { printf ("Too many lines in a subtitle\n");current->lines=i;return current;} |
258 | 161 } |
932 | 162 current->lines= ++i; |
258 | 163 |
164 return current; | |
165 } | |
166 | |
167 subtitle *sub_read_line_subrip(FILE *fd, subtitle *current) { | |
168 char line[1001]; | |
169 int a1,a2,a3,a4,b1,b2,b3,b4; | |
170 char *p=NULL, *q=NULL; | |
171 int len; | |
172 | |
1764 | 173 bzero (current, sizeof(subtitle)); |
258 | 174 |
1764 | 175 while (1) { |
258 | 176 if (!fgets (line, 1000, fd)) return NULL; |
269 | 177 if (sscanf (line, "%d:%d:%d.%d,%d:%d:%d.%d",&a1,&a2,&a3,&a4,&b1,&b2,&b3,&b4) < 8) continue; |
258 | 178 current->start = a1*360000+a2*6000+a3*100+a4; |
179 current->end = b1*360000+b2*6000+b3*100+b4; | |
180 | |
181 if (!fgets (line, 1000, fd)) return NULL; | |
182 | |
183 p=q=line; | |
184 for (current->lines=1; current->lines < SUB_MAX_TEXT; current->lines++) { | |
185 for (q=p,len=0; *p && *p!='\r' && *p!='\n' && strncmp(p,"[br]",4); p++,len++); | |
186 current->text[current->lines-1]=(char *)malloc (len+1); | |
187 if (!current->text[current->lines-1]) return ERR; | |
188 strncpy (current->text[current->lines-1], q, len); | |
270 | 189 current->text[current->lines-1][len]='\0'; |
258 | 190 if (!*p || *p=='\r' || *p=='\n') break; |
191 while (*p++!=']'); | |
192 } | |
1764 | 193 break; |
258 | 194 } |
195 return current; | |
196 } | |
197 | |
198 subtitle *sub_read_line_third(FILE *fd,subtitle *current) { | |
199 char line[1001]; | |
200 int a1,a2,a3,a4,b1,b2,b3,b4; | |
201 char *p=NULL; | |
202 int i,len; | |
203 | |
1764 | 204 bzero (current, sizeof(subtitle)); |
258 | 205 |
206 while (!current->text[0]) { | |
207 if (!fgets (line, 1000, fd)) return NULL; | |
269 | 208 if ((len=sscanf (line, "%d:%d:%d,%d --> %d:%d:%d,%d",&a1,&a2,&a3,&a4,&b1,&b2,&b3,&b4)) < 8) |
258 | 209 continue; |
210 current->start = a1*360000+a2*6000+a3*100+a4/10; | |
211 current->end = b1*360000+b2*6000+b3*100+b4/10; | |
212 for (i=0; i<SUB_MAX_TEXT;) { | |
269 | 213 if (!fgets (line, 1000, fd)) break; |
258 | 214 len=0; |
215 for (p=line; *p!='\n' && *p!='\r' && *p; p++,len++); | |
216 if (len) { | |
217 current->text[i]=(char *)malloc (len+1); | |
218 if (!current->text[i]) return ERR; | |
270 | 219 strncpy (current->text[i], line, len); current->text[i][len]='\0'; |
258 | 220 i++; |
221 } else { | |
222 break; | |
223 } | |
224 } | |
225 current->lines=i; | |
226 } | |
227 return current; | |
228 } | |
229 | |
818 | 230 subtitle *sub_read_line_vplayer(FILE *fd,subtitle *current) { |
231 char line[1001]; | |
232 char line2[1001]; | |
233 int a1,a2,a3,b1,b2,b3; | |
1081 | 234 char *p=NULL, *next; |
858 | 235 int i,len,len2,plen; |
818 | 236 |
1764 | 237 bzero (current, sizeof(subtitle)); |
818 | 238 |
239 while (!current->text[0]) { | |
240 if (!fgets (line, 1000, fd)) return NULL; | |
858 | 241 if ((len=sscanf (line, "%d:%d:%d:%n",&a1,&a2,&a3,&plen)) < 3) |
818 | 242 continue; |
243 if (!fgets (line2, 1000, fd)) return NULL; | |
244 if ((len2=sscanf (line2, "%d:%d:%d:",&b1,&b2,&b3)) < 3) | |
245 continue; | |
246 // przewiñ o linijkê do ty³u: | |
247 fseek(fd,-strlen(line2),SEEK_CUR); | |
248 | |
249 current->start = a1*360000+a2*6000+a3*100; | |
250 current->end = b1*360000+b2*6000+b3*100; | |
896
d46de26aef48
there is another format that get detected as vplayers.
eyck
parents:
892
diff
changeset
|
251 if ((current->end - current->start) > 1000) {current->end = current->start + 1000;} // not too long though. |
818 | 252 // teraz czas na wkopiowanie stringu |
1640
cbedcfab877b
Fixup to vplayer subtitle submitted to sourceforge by Igor Wojnicki
eyck
parents:
1501
diff
changeset
|
253 p=line; |
cbedcfab877b
Fixup to vplayer subtitle submitted to sourceforge by Igor Wojnicki
eyck
parents:
1501
diff
changeset
|
254 // finds the body of the subtitle |
cbedcfab877b
Fixup to vplayer subtitle submitted to sourceforge by Igor Wojnicki
eyck
parents:
1501
diff
changeset
|
255 for (i=0; i<3; i++){ |
cbedcfab877b
Fixup to vplayer subtitle submitted to sourceforge by Igor Wojnicki
eyck
parents:
1501
diff
changeset
|
256 p=strchr(p,':')+1; |
cbedcfab877b
Fixup to vplayer subtitle submitted to sourceforge by Igor Wojnicki
eyck
parents:
1501
diff
changeset
|
257 } |
cbedcfab877b
Fixup to vplayer subtitle submitted to sourceforge by Igor Wojnicki
eyck
parents:
1501
diff
changeset
|
258 i=0; |
cbedcfab877b
Fixup to vplayer subtitle submitted to sourceforge by Igor Wojnicki
eyck
parents:
1501
diff
changeset
|
259 |
818 | 260 if (*p!='|') { |
261 // | |
262 next = p,i=0; | |
263 while ((next =sub_readtext (next, &(current->text[i])))) { | |
264 if (current->text[i]==ERR) {return ERR;} | |
265 i++; | |
1081 | 266 if (i>=SUB_MAX_TEXT) { printf ("Too many lines in a subtitle\n");current->lines=i;return current;} |
818 | 267 } |
268 current->lines=i+1; | |
269 } | |
270 } | |
271 return current; | |
272 } | |
273 | |
850 | 274 subtitle *sub_read_line_rt(FILE *fd,subtitle *current) { |
275 //TODO: This format uses quite rich (sub/super)set of xhtml | |
276 // I couldn't check it since DTD is not included. | |
277 // WARNING: full XML parses can be required for proper parsing | |
278 char line[1001]; | |
279 int a1,a2,a3,a4,b1,b2,b3,b4; | |
280 char *p=NULL,*next=NULL; | |
281 int i,len,plen; | |
282 | |
1764 | 283 bzero (current, sizeof(subtitle)); |
850 | 284 |
285 while (!current->text[0]) { | |
286 if (!fgets (line, 1000, fd)) return NULL; | |
287 //TODO: it seems that format of time is not easily determined, it may be 1:12, 1:12.0 or 0:1:12.0 | |
288 //to describe the same moment in time. Maybe there are even more formats in use. | |
289 //if ((len=sscanf (line, "<Time Begin=\"%d:%d:%d.%d\" End=\"%d:%d:%d.%d\"",&a1,&a2,&a3,&a4,&b1,&b2,&b3,&b4)) < 8) | |
290 plen=a1=a2=a3=a4=b1=b2=b3=b4=0; | |
291 if ( | |
292 ((len=sscanf (line, "<%*[tT]ime %*[bB]egin=\"%d:%d\" %*[Ee]nd=\"%d:%d\"%*[^<]<clear/>%n",&a2,&a3,&b2,&b3,&plen)) < 4) && | |
293 ((len=sscanf (line, "<%*[tT]ime %*[bB]egin=\"%d:%d\" %*[Ee]nd=\"%d:%d.%d\"%*[^<]<clear/>%n",&a2,&a3,&b2,&b3,&b4,&plen)) < 5) && | |
294 // ((len=sscanf (line, "<%*[tT]ime %*[bB]egin=\"%d:%d.%d\" %*[Ee]nd=\"%d:%d\"%*[^<]<clear/>%n",&a2,&a3,&a4,&b2,&b3,&plen)) < 5) && | |
295 ((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) && | |
296 ((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) | |
297 ) | |
298 continue; | |
299 current->start = a1*360000+a2*6000+a3*100+a4/10; | |
300 current->end = b1*360000+b2*6000+b3*100+b4/10; | |
301 p=line; p+=plen;i=0; | |
302 // TODO: I don't know what kind of convention is here for marking multiline subs, maybe <br/> like in xml? | |
303 next = strstr(line,"<clear/>")+8;i=0; | |
304 while ((next =sub_readtext (next, &(current->text[i])))) { | |
305 if (current->text[i]==ERR) {return ERR;} | |
306 i++; | |
1081 | 307 if (i>=SUB_MAX_TEXT) { printf ("Too many lines in a subtitle\n");current->lines=i;return current;} |
850 | 308 } |
309 current->lines=i+1; | |
310 } | |
311 return current; | |
312 } | |
313 | |
921 | 314 subtitle *sub_read_line_ssa(FILE *fd,subtitle *current) { |
315 int hour1, min1, sec1, hunsec1, | |
316 hour2, min2, sec2, hunsec2, nothing; | |
2141 | 317 int num; |
921 | 318 |
319 char line[1000], | |
2140 | 320 line3[1000], |
321 *line2; | |
2141 | 322 char *tmp; |
323 | |
921 | 324 do { |
325 if (!fgets (line, 1000, fd)) return NULL; | |
326 } while (sscanf (line, "Dialogue: Marked=%d,%d:%d:%d.%d,%d:%d:%d.%d," | |
2140 | 327 "%[^\n\r]", ¬hing, |
328 &hour1, &min1, &sec1, &hunsec1, | |
329 &hour2, &min2, &sec2, &hunsec2, | |
330 line3) < 9); | |
331 line2=strstr(line3,",,"); | |
332 if (!line2) return NULL; | |
333 line2 ++; | |
334 line2 ++; | |
335 | |
2141 | 336 current->lines=1;num=0; |
921 | 337 current->start = 360000*hour1 + 6000*min1 + 100*sec1 + hunsec1; |
338 current->end = 360000*hour2 + 6000*min2 + 100*sec2 + hunsec2; | |
2141 | 339 |
340 while (tmp=strstr(line2, "\\n")) { | |
341 current->text[num]=(char *)malloc(tmp-line2+1); | |
342 strncpy (current->text[num], line2, tmp-line2); | |
343 current->text[num][tmp-line2]='\0'; | |
344 line2=tmp+2; | |
345 num++; | |
346 current->lines++; | |
347 if (current->lines >= SUB_MAX_TEXT) return current; | |
348 } | |
349 | |
350 | |
351 current->text[num]=(char *) malloc(strlen(line2)+1); | |
352 strcpy(current->text[num],line2); | |
818 | 353 |
921 | 354 return current; |
355 } | |
258 | 356 |
1081 | 357 subtitle *sub_read_line_dunnowhat(FILE *fd,subtitle *current) { |
358 char line[1001]; | |
359 char text[1001]; | |
360 | |
1764 | 361 bzero (current, sizeof(subtitle)); |
1081 | 362 |
363 if (!fgets (line, 1000, fd)) | |
364 return NULL; | |
365 if (sscanf (line, "%ld,%ld,\"%[^\"]", &(current->start), | |
366 &(current->end), text) <3) | |
367 return ERR; | |
368 current->text[0] = strdup(text); | |
369 current->lines = 1; | |
370 | |
371 return current; | |
372 } | |
373 | |
2177 | 374 subtitle *sub_read_line_mpsub(FILE *fd, subtitle *current) { |
375 char line[1000]; | |
2178 | 376 float a,b; |
377 int num=0; | |
2177 | 378 char *p, *q; |
379 | |
380 do | |
381 { | |
382 if (!fgets(line, 1000, fd)) return NULL; | |
2178 | 383 } while (sscanf (line, "%f %f", &a, &b) !=2); |
2177 | 384 |
2178 | 385 mpsub_position += (a*100.0); |
386 current->start=(int) mpsub_position; | |
387 mpsub_position += (b*100.0); | |
388 current->end=(int) mpsub_position; | |
2177 | 389 |
390 while (num < SUB_MAX_TEXT) { | |
391 if (!fgets (line, 1000, fd)) return NULL; | |
392 p=line; | |
393 while (isspace(*p)) p++; | |
394 if (eol(*p) && num > 0) return current; | |
395 if (eol(*p)) return NULL; | |
396 | |
397 for (q=p; !eol(*q); q++); | |
398 *q='\0'; | |
399 if (strlen(p)) { | |
400 current->text[num]=strdup(p); | |
401 current->lines = ++num; | |
402 } else { | |
403 if (num) return current; | |
404 else return NULL; | |
405 } | |
406 } | |
407 } | |
408 | |
409 | |
258 | 410 int sub_autodetect (FILE *fd) { |
411 char line[1001]; | |
412 int i,j=0; | |
2177 | 413 char p; |
258 | 414 |
624 | 415 while (j < 100) { |
258 | 416 j++; |
417 if (!fgets (line, 1000, fd)) | |
418 return -1; | |
419 | |
624 | 420 if (sscanf (line, "{%d}{%d}", &i, &i)==2) |
258 | 421 {sub_uses_time=0;return 0;} |
269 | 422 if (sscanf (line, "%d:%d:%d.%d,%d:%d:%d.%d", &i, &i, &i, &i, &i, &i, &i, &i)==8) |
258 | 423 {sub_uses_time=1;return 1;} |
269 | 424 if (sscanf (line, "%d:%d:%d,%d --> %d:%d:%d,%d", &i, &i, &i, &i, &i, &i, &i, &i)==8) |
258 | 425 {sub_uses_time=1;return 2;} |
624 | 426 if (strstr (line, "<SAMI>")) |
706
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
427 {sub_uses_time=1; return 3;} |
818 | 428 if (sscanf (line, "%d:%d:%d:", &i, &i, &i )==3) |
429 {sub_uses_time=1;return 4;} | |
850 | 430 //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
|
431 // too weak test for RT |
18c43d261c35
corrected strcmp() bug, now it works again with every subs (it was broken)
laaz
parents:
896
diff
changeset
|
432 // Please someone who knows the format of RT... FIX IT!!! |
921 | 433 // 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
|
434 if ( *line == '<' ) |
850 | 435 {sub_uses_time=1;return 5;} |
921 | 436 |
437 // I have only seen only 1 piece of .ssa file. | |
438 // It may be not correct (tell me if it's not) | |
439 if (!memcmp(line, "Dialogue: Marked", 16)) | |
440 {sub_uses_time=1; return 6;} | |
1081 | 441 if (sscanf (line, "%d,%d,\"%c", &i, &i, (char *) &i) == 3) |
442 {sub_uses_time=0;return 7;} | |
2177 | 443 if (sscanf (line, "FORMAT=%d", &i) == 1) |
444 {sub_uses_time=0; return 8;} | |
445 if (sscanf (line, "FORMAT=TIM%c", &p)==1 && p=='E') | |
446 {sub_uses_time=1; return 8;} | |
258 | 447 } |
624 | 448 |
449 return -1; // too many bad lines | |
258 | 450 } |
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
451 |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
452 extern int sub_utf8; |
258 | 453 |
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
454 #ifdef USE_ICONV |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
455 static iconv_t icdsc; |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
456 |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
457 void subcp_open (void) |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
458 { |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
459 char *tocp = "UTF-8"; |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
460 icdsc = (iconv_t)(-1); |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
461 if (sub_cp){ |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
462 if ((icdsc = iconv_open (tocp, sub_cp)) != (iconv_t)(-1)){ |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
463 printf ("SUB: opened iconv descriptor.\n"); |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
464 sub_utf8 = 2; |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
465 } else |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
466 printf ("SUB: error opening iconv descriptor.\n"); |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
467 } |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
468 } |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
469 |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
470 void subcp_close (void) |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
471 { |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
472 if (icdsc != (iconv_t)(-1)){ |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
473 (void) iconv_close (icdsc); |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
474 printf ("SUB: closed iconv descriptor.\n"); |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
475 } |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
476 } |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
477 |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
478 #define ICBUFFSIZE 512 |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
479 static char icbuffer[ICBUFFSIZE]; |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
480 |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
481 subtitle* subcp_recode (subtitle *sub) |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
482 { |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
483 int l=sub->lines; |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
484 size_t ileft, oleft, otlen; |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
485 char *op, *ip, *ot; |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
486 |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
487 while (l){ |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
488 op = icbuffer; |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
489 ip = sub->text[--l]; |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
490 ileft = strlen(ip); |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
491 oleft = ICBUFFSIZE - 1; |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
492 |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
493 if (iconv(icdsc, (const char **) &ip, &ileft, |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
494 &op, &oleft) == (size_t)(-1)) { |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
495 printf ("SUB: error recoding line.\n"); |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
496 l++; |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
497 break; |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
498 } |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
499 if (!(ot = (char *)malloc(op - icbuffer + 1))){ |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
500 printf ("SUB: error allocating mem.\n"); |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
501 l++; |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
502 break; |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
503 } |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
504 *op='\0' ; |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
505 strcpy (ot, icbuffer); |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
506 free (sub->text[l]); |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
507 sub->text[l] = ot; |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
508 } |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
509 if (l){ |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
510 for (l = sub->lines; l;) |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
511 free (sub->text[--l]); |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
512 return ERR; |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
513 } |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
514 return sub; |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
515 } |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
516 |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
517 #endif |
258 | 518 |
519 subtitle* sub_read_file (char *filename) { | |
520 FILE *fd; | |
521 int n_max; | |
522 subtitle *first; | |
1081 | 523 subtitle * (*func[])(FILE *fd,subtitle *dest)= |
258 | 524 { |
525 sub_read_line_microdvd, | |
526 sub_read_line_subrip, | |
624 | 527 sub_read_line_third, |
818 | 528 sub_read_line_sami, |
850 | 529 sub_read_line_vplayer, |
921 | 530 sub_read_line_rt, |
1081 | 531 sub_read_line_ssa, |
2177 | 532 sub_read_line_dunnowhat, |
533 sub_read_line_mpsub | |
258 | 534 }; |
535 | |
536 fd=fopen (filename, "r"); if (!fd) return NULL; | |
537 | |
538 sub_format=sub_autodetect (fd); | |
539 if (sub_format==-1) {printf ("SUB: Could not determine file format\n");return NULL;} | |
624 | 540 printf ("SUB: Detected subtitle file format: %d\n",sub_format); |
258 | 541 |
542 rewind (fd); | |
543 | |
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
544 #ifdef USE_ICONV |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
545 subcp_open(); |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
546 #endif |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
547 |
258 | 548 sub_num=0;n_max=32; |
549 first=(subtitle *)malloc(n_max*sizeof(subtitle)); | |
550 if(!first) return NULL; | |
551 | |
552 while(1){ | |
553 subtitle *sub; | |
554 if(sub_num>=n_max){ | |
555 n_max+=16; | |
556 first=realloc(first,n_max*sizeof(subtitle)); | |
557 } | |
558 sub=func[sub_format](fd,&first[sub_num]); | |
559 if(!sub) break; // EOF | |
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
560 #ifdef USE_ICONV |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
561 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
|
562 #endif |
258 | 563 if(sub==ERR) ++sub_errs; else ++sub_num; // Error vs. Valid |
564 } | |
565 | |
566 fclose(fd); | |
567 | |
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
568 #ifdef USE_ICONV |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
569 subcp_close(); |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
570 #endif |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
571 |
258 | 572 // printf ("SUB: Subtitle format %s time.\n", sub_uses_time?"uses":"doesn't use"); |
269 | 573 printf ("SUB: Read %i subtitles", sub_num); |
624 | 574 if (sub_errs) printf (", %i bad line(s).\n", sub_errs); |
269 | 575 else printf (".\n"); |
258 | 576 |
577 return first; | |
578 } | |
579 | |
892 | 580 #if 0 |
509 | 581 char * strreplace( char * in,char * what,char * whereof ) |
582 { | |
583 int i; | |
584 char * tmp; | |
585 | |
586 if ( ( in == NULL )||( what == NULL )||( whereof == NULL )||( ( tmp=strstr( in,what ) ) == NULL ) ) return NULL; | |
587 for( i=0;i<strlen( whereof );i++ ) tmp[i]=whereof[i]; | |
588 if ( strlen( what ) > strlen( whereof ) ) tmp[i]=0; | |
589 return in; | |
590 } | |
892 | 591 #endif |
509 | 592 |
892 | 593 char * sub_filename(char* path, char * fname ) |
509 | 594 { |
892 | 595 char * sub_name1; |
596 char * sub_name2; | |
934
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
597 char * aviptr1, * aviptr2, * tmp; |
892 | 598 int i,j; |
599 FILE * f; | |
600 int pos=0; | |
601 char * sub_exts[] = | |
1501
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1081
diff
changeset
|
602 { ".utf", |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1081
diff
changeset
|
603 ".UTF", |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1081
diff
changeset
|
604 ".sub", |
509 | 605 ".SUB", |
606 ".srt", | |
706
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
607 ".SRT", |
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
608 ".smi", |
850 | 609 ".SMI", |
610 ".rt", | |
611 ".RT", | |
612 ".txt", | |
1081 | 613 ".TXT", |
614 ".ssa", | |
615 ".SSA"}; | |
892 | 616 |
934
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
617 |
509 | 618 if ( fname == NULL ) return NULL; |
892 | 619 |
620 sub_name1=strrchr(fname,'.'); | |
621 if (!sub_name1) return NULL; | |
622 pos=sub_name1-fname; | |
623 | |
934
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
624 sub_name1=malloc(strlen(fname)+8); |
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
625 strcpy(sub_name1,fname); |
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
626 |
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
627 sub_name2=malloc (strlen(path) + strlen(fname) + 8); |
1081 | 628 if ((tmp=strrchr(fname,'/'))) |
934
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
629 sprintf (sub_name2, "%s%s", path, tmp+1); |
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
630 else |
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
631 sprintf (sub_name2, "%s%s", path, fname); |
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
632 |
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
633 aviptr1=strrchr(sub_name1,'.'); |
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
634 aviptr2=strrchr(sub_name2,'.'); |
892 | 635 |
636 for(j=0;j<=1;j++){ | |
637 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
|
638 #ifdef USE_ICONV |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
639 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
|
640 #else |
892 | 641 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
|
642 #endif |
934
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
643 strcpy(j?aviptr1:aviptr2,sub_exts[i]); |
935 | 644 // printf("trying: '%s'\n",sub_name); |
892 | 645 if((f=fopen( sub_name,"rt" ))) { |
509 | 646 fclose( f ); |
647 printf( "SUB: Detected sub file: %s\n",sub_name ); | |
1501
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1081
diff
changeset
|
648 if (i<2) sub_utf8=1; |
509 | 649 return sub_name; |
892 | 650 } |
509 | 651 } |
892 | 652 } |
653 | |
509 | 654 return NULL; |
655 } | |
656 | |
1761 | 657 void list_sub_file(subtitle* subs){ |
658 int i,j; | |
659 | |
660 for(j=0;j<sub_num;j++){ | |
661 subtitle* egysub=&subs[j]; | |
662 printf ("%i line%c (%li-%li) ", | |
663 egysub->lines, | |
664 (1==egysub->lines)?' ':'s', | |
665 egysub->start, | |
666 egysub->end); | |
667 for (i=0; i<egysub->lines; i++) { | |
668 printf ("%s%s",egysub->text[i], i==egysub->lines-1?"":" <BREAK> "); | |
669 } | |
670 printf ("\n"); | |
671 } | |
672 | |
673 printf ("Subtitle format %s time.\n", sub_uses_time?"uses":"doesn't use"); | |
674 printf ("Read %i subtitles, %i errors.\n", sub_num, sub_errs); | |
675 | |
676 } | |
677 | |
2178 | 678 void dump_mpsub(subtitle* subs){ |
679 int i,j; | |
680 FILE *fd; | |
681 float a,b; | |
682 | |
683 mpsub_position=0.0; | |
684 | |
685 fd=fopen ("dump.mpsub", "w"); | |
686 if (!fd) { | |
687 perror ("dump_mpsub: fopen"); | |
688 return; | |
689 } | |
690 | |
691 | |
692 if (sub_uses_time) fprintf (fd,"FORMAT=TIME\n\n"); | |
693 else fprintf (fd, "FORMAT=25"); // FIXME: fps | |
694 | |
695 for(j=0;j<sub_num;j++){ | |
696 subtitle* egysub=&subs[j]; | |
697 a=((egysub->start-mpsub_position)/100.0); | |
698 b=((egysub->end-egysub->start)/100.0); | |
699 if ( (float)((int)a) == a) | |
700 fprintf (fd, "%.0f",a); | |
701 else | |
702 fprintf (fd, "%.2f",a); | |
703 | |
704 if ( (float)((int)b) == b) | |
705 fprintf (fd, " %.0f\n",b); | |
706 else | |
707 fprintf (fd, " %.2f\n",b); | |
708 | |
709 mpsub_position = egysub->end; | |
710 for (i=0; i<egysub->lines; i++) { | |
711 fprintf (fd, "%s\n",egysub->text[i]); | |
712 } | |
713 fprintf (fd, "\n"); | |
714 } | |
715 fclose (fd); | |
716 printf ("Subtitles dumped in \'dump.mpsub\'.\n"); | |
717 } | |
718 | |
719 | |
720 | |
625 | 721 #if 0 |
258 | 722 int main(int argc, char **argv) { // for testing |
723 | |
724 int i,j; | |
725 subtitle *subs; | |
726 subtitle *egysub; | |
727 | |
728 if(argc<2){ | |
729 printf("\nUsage: subreader filename.sub\n\n"); | |
730 exit(1); | |
731 } | |
732 | |
624 | 733 subs=sub_read_file(argv[1]); |
258 | 734 if(!subs){ |
735 printf("Couldn't load file... let's write a bugreport :)\n"); | |
736 exit(1); | |
737 } | |
1761 | 738 |
739 list_sub_file(subs); | |
258 | 740 |
741 return 0; | |
742 } | |
706
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
743 #endif |