Mercurial > mplayer.hg
annotate subreader.c @ 2177:f723e4e8f4fd
mpsub read support
| author | laaz |
|---|---|
| date | Fri, 12 Oct 2001 13:51:58 +0000 |
| parents | a9d91476085a |
| children | e509abdbf195 |
| 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 |
| 26 static long int mpsub_position=0; | |
| 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]; | |
| 376 int a,b,num=0; | |
| 377 char *p, *q; | |
| 378 | |
| 379 do | |
| 380 { | |
| 381 if (!fgets(line, 1000, fd)) return NULL; | |
| 382 } while (sscanf (line, "%d %d", &a, &b) !=2); | |
| 383 | |
| 384 mpsub_position += (a*100); | |
| 385 current->start=mpsub_position+1; | |
| 386 mpsub_position += (b*100); | |
| 387 current->end=mpsub_position; | |
| 388 | |
| 389 while (num < SUB_MAX_TEXT) { | |
| 390 if (!fgets (line, 1000, fd)) return NULL; | |
| 391 p=line; | |
| 392 while (isspace(*p)) p++; | |
| 393 if (eol(*p) && num > 0) return current; | |
| 394 if (eol(*p)) return NULL; | |
| 395 | |
| 396 for (q=p; !eol(*q); q++); | |
| 397 *q='\0'; | |
| 398 if (strlen(p)) { | |
| 399 current->text[num]=strdup(p); | |
| 400 current->lines = ++num; | |
| 401 } else { | |
| 402 if (num) return current; | |
| 403 else return NULL; | |
| 404 } | |
| 405 } | |
| 406 } | |
| 407 | |
| 408 | |
| 258 | 409 int sub_autodetect (FILE *fd) { |
| 410 char line[1001]; | |
| 411 int i,j=0; | |
| 2177 | 412 char p; |
| 258 | 413 |
| 624 | 414 while (j < 100) { |
| 258 | 415 j++; |
| 416 if (!fgets (line, 1000, fd)) | |
| 417 return -1; | |
| 418 | |
| 624 | 419 if (sscanf (line, "{%d}{%d}", &i, &i)==2) |
| 258 | 420 {sub_uses_time=0;return 0;} |
| 269 | 421 if (sscanf (line, "%d:%d:%d.%d,%d:%d:%d.%d", &i, &i, &i, &i, &i, &i, &i, &i)==8) |
| 258 | 422 {sub_uses_time=1;return 1;} |
| 269 | 423 if (sscanf (line, "%d:%d:%d,%d --> %d:%d:%d,%d", &i, &i, &i, &i, &i, &i, &i, &i)==8) |
| 258 | 424 {sub_uses_time=1;return 2;} |
| 624 | 425 if (strstr (line, "<SAMI>")) |
|
706
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
426 {sub_uses_time=1; return 3;} |
| 818 | 427 if (sscanf (line, "%d:%d:%d:", &i, &i, &i )==3) |
| 428 {sub_uses_time=1;return 4;} | |
| 850 | 429 //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
|
430 // too weak test for RT |
|
18c43d261c35
corrected strcmp() bug, now it works again with every subs (it was broken)
laaz
parents:
896
diff
changeset
|
431 // Please someone who knows the format of RT... FIX IT!!! |
| 921 | 432 // 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
|
433 if ( *line == '<' ) |
| 850 | 434 {sub_uses_time=1;return 5;} |
| 921 | 435 |
| 436 // I have only seen only 1 piece of .ssa file. | |
| 437 // It may be not correct (tell me if it's not) | |
| 438 if (!memcmp(line, "Dialogue: Marked", 16)) | |
| 439 {sub_uses_time=1; return 6;} | |
| 1081 | 440 if (sscanf (line, "%d,%d,\"%c", &i, &i, (char *) &i) == 3) |
| 441 {sub_uses_time=0;return 7;} | |
| 2177 | 442 if (sscanf (line, "FORMAT=%d", &i) == 1) |
| 443 {sub_uses_time=0; return 8;} | |
| 444 if (sscanf (line, "FORMAT=TIM%c", &p)==1 && p=='E') | |
| 445 {sub_uses_time=1; return 8;} | |
| 258 | 446 } |
| 624 | 447 |
| 448 return -1; // too many bad lines | |
| 258 | 449 } |
|
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
450 |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
451 extern int sub_utf8; |
| 258 | 452 |
|
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
453 #ifdef USE_ICONV |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
454 static iconv_t icdsc; |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
455 |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
456 void subcp_open (void) |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
457 { |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
458 char *tocp = "UTF-8"; |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
459 icdsc = (iconv_t)(-1); |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
460 if (sub_cp){ |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
461 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
|
462 printf ("SUB: opened iconv descriptor.\n"); |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
463 sub_utf8 = 2; |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
464 } else |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
465 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
|
466 } |
|
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 void subcp_close (void) |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
470 { |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
471 if (icdsc != (iconv_t)(-1)){ |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
472 (void) iconv_close (icdsc); |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
473 printf ("SUB: closed iconv descriptor.\n"); |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
474 } |
|
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 #define ICBUFFSIZE 512 |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
478 static char icbuffer[ICBUFFSIZE]; |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
479 |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
480 subtitle* subcp_recode (subtitle *sub) |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
481 { |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
482 int l=sub->lines; |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
483 size_t ileft, oleft, otlen; |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
484 char *op, *ip, *ot; |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
485 |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
486 while (l){ |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
487 op = icbuffer; |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
488 ip = sub->text[--l]; |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
489 ileft = strlen(ip); |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
490 oleft = ICBUFFSIZE - 1; |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
491 |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
492 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
|
493 &op, &oleft) == (size_t)(-1)) { |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
494 printf ("SUB: error recoding line.\n"); |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
495 l++; |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
496 break; |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
497 } |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
498 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
|
499 printf ("SUB: error allocating mem.\n"); |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
500 l++; |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
501 break; |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
502 } |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
503 *op='\0' ; |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
504 strcpy (ot, icbuffer); |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
505 free (sub->text[l]); |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
506 sub->text[l] = ot; |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
507 } |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
508 if (l){ |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
509 for (l = sub->lines; l;) |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
510 free (sub->text[--l]); |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
511 return ERR; |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
512 } |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
513 return sub; |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
514 } |
|
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 #endif |
| 258 | 517 |
| 518 subtitle* sub_read_file (char *filename) { | |
| 519 FILE *fd; | |
| 520 int n_max; | |
| 521 subtitle *first; | |
| 1081 | 522 subtitle * (*func[])(FILE *fd,subtitle *dest)= |
| 258 | 523 { |
| 524 sub_read_line_microdvd, | |
| 525 sub_read_line_subrip, | |
| 624 | 526 sub_read_line_third, |
| 818 | 527 sub_read_line_sami, |
| 850 | 528 sub_read_line_vplayer, |
| 921 | 529 sub_read_line_rt, |
| 1081 | 530 sub_read_line_ssa, |
| 2177 | 531 sub_read_line_dunnowhat, |
| 532 sub_read_line_mpsub | |
| 258 | 533 }; |
| 534 | |
| 535 fd=fopen (filename, "r"); if (!fd) return NULL; | |
| 536 | |
| 537 sub_format=sub_autodetect (fd); | |
| 538 if (sub_format==-1) {printf ("SUB: Could not determine file format\n");return NULL;} | |
| 624 | 539 printf ("SUB: Detected subtitle file format: %d\n",sub_format); |
| 258 | 540 |
| 541 rewind (fd); | |
| 542 | |
|
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
543 #ifdef USE_ICONV |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
544 subcp_open(); |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
545 #endif |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
546 |
| 258 | 547 sub_num=0;n_max=32; |
| 548 first=(subtitle *)malloc(n_max*sizeof(subtitle)); | |
| 549 if(!first) return NULL; | |
| 550 | |
| 551 while(1){ | |
| 552 subtitle *sub; | |
| 553 if(sub_num>=n_max){ | |
| 554 n_max+=16; | |
| 555 first=realloc(first,n_max*sizeof(subtitle)); | |
| 556 } | |
| 557 sub=func[sub_format](fd,&first[sub_num]); | |
| 558 if(!sub) break; // EOF | |
|
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
559 #ifdef USE_ICONV |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
560 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
|
561 #endif |
| 258 | 562 if(sub==ERR) ++sub_errs; else ++sub_num; // Error vs. Valid |
| 563 } | |
| 564 | |
| 565 fclose(fd); | |
| 566 | |
|
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
567 #ifdef USE_ICONV |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
568 subcp_close(); |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
569 #endif |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
570 |
| 258 | 571 // printf ("SUB: Subtitle format %s time.\n", sub_uses_time?"uses":"doesn't use"); |
| 269 | 572 printf ("SUB: Read %i subtitles", sub_num); |
| 624 | 573 if (sub_errs) printf (", %i bad line(s).\n", sub_errs); |
| 269 | 574 else printf (".\n"); |
| 258 | 575 |
| 576 return first; | |
| 577 } | |
| 578 | |
| 892 | 579 #if 0 |
| 509 | 580 char * strreplace( char * in,char * what,char * whereof ) |
| 581 { | |
| 582 int i; | |
| 583 char * tmp; | |
| 584 | |
| 585 if ( ( in == NULL )||( what == NULL )||( whereof == NULL )||( ( tmp=strstr( in,what ) ) == NULL ) ) return NULL; | |
| 586 for( i=0;i<strlen( whereof );i++ ) tmp[i]=whereof[i]; | |
| 587 if ( strlen( what ) > strlen( whereof ) ) tmp[i]=0; | |
| 588 return in; | |
| 589 } | |
| 892 | 590 #endif |
| 509 | 591 |
| 892 | 592 char * sub_filename(char* path, char * fname ) |
| 509 | 593 { |
| 892 | 594 char * sub_name1; |
| 595 char * sub_name2; | |
|
934
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
596 char * aviptr1, * aviptr2, * tmp; |
| 892 | 597 int i,j; |
| 598 FILE * f; | |
| 599 int pos=0; | |
| 600 char * sub_exts[] = | |
|
1501
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1081
diff
changeset
|
601 { ".utf", |
|
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 ".sub", |
| 509 | 604 ".SUB", |
| 605 ".srt", | |
|
706
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
606 ".SRT", |
|
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
607 ".smi", |
| 850 | 608 ".SMI", |
| 609 ".rt", | |
| 610 ".RT", | |
| 611 ".txt", | |
| 1081 | 612 ".TXT", |
| 613 ".ssa", | |
| 614 ".SSA"}; | |
| 892 | 615 |
|
934
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
616 |
| 509 | 617 if ( fname == NULL ) return NULL; |
| 892 | 618 |
| 619 sub_name1=strrchr(fname,'.'); | |
| 620 if (!sub_name1) return NULL; | |
| 621 pos=sub_name1-fname; | |
| 622 | |
|
934
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
623 sub_name1=malloc(strlen(fname)+8); |
|
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
624 strcpy(sub_name1,fname); |
|
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
625 |
|
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
626 sub_name2=malloc (strlen(path) + strlen(fname) + 8); |
| 1081 | 627 if ((tmp=strrchr(fname,'/'))) |
|
934
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
628 sprintf (sub_name2, "%s%s", path, tmp+1); |
|
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
629 else |
|
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
630 sprintf (sub_name2, "%s%s", path, fname); |
|
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
631 |
|
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
632 aviptr1=strrchr(sub_name1,'.'); |
|
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
633 aviptr2=strrchr(sub_name2,'.'); |
| 892 | 634 |
| 635 for(j=0;j<=1;j++){ | |
| 636 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
|
637 #ifdef USE_ICONV |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
638 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
|
639 #else |
| 892 | 640 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
|
641 #endif |
|
934
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
642 strcpy(j?aviptr1:aviptr2,sub_exts[i]); |
| 935 | 643 // printf("trying: '%s'\n",sub_name); |
| 892 | 644 if((f=fopen( sub_name,"rt" ))) { |
| 509 | 645 fclose( f ); |
| 646 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
|
647 if (i<2) sub_utf8=1; |
| 509 | 648 return sub_name; |
| 892 | 649 } |
| 509 | 650 } |
| 892 | 651 } |
| 652 | |
| 509 | 653 return NULL; |
| 654 } | |
| 655 | |
| 1761 | 656 void list_sub_file(subtitle* subs){ |
| 657 int i,j; | |
| 658 | |
| 659 for(j=0;j<sub_num;j++){ | |
| 660 subtitle* egysub=&subs[j]; | |
| 661 printf ("%i line%c (%li-%li) ", | |
| 662 egysub->lines, | |
| 663 (1==egysub->lines)?' ':'s', | |
| 664 egysub->start, | |
| 665 egysub->end); | |
| 666 for (i=0; i<egysub->lines; i++) { | |
| 667 printf ("%s%s",egysub->text[i], i==egysub->lines-1?"":" <BREAK> "); | |
| 668 } | |
| 669 printf ("\n"); | |
| 670 } | |
| 671 | |
| 672 printf ("Subtitle format %s time.\n", sub_uses_time?"uses":"doesn't use"); | |
| 673 printf ("Read %i subtitles, %i errors.\n", sub_num, sub_errs); | |
| 674 | |
| 675 } | |
| 676 | |
| 625 | 677 #if 0 |
| 258 | 678 int main(int argc, char **argv) { // for testing |
| 679 | |
| 680 int i,j; | |
| 681 subtitle *subs; | |
| 682 subtitle *egysub; | |
| 683 | |
| 684 if(argc<2){ | |
| 685 printf("\nUsage: subreader filename.sub\n\n"); | |
| 686 exit(1); | |
| 687 } | |
| 688 | |
| 624 | 689 subs=sub_read_file(argv[1]); |
| 258 | 690 if(!subs){ |
| 691 printf("Couldn't load file... let's write a bugreport :)\n"); | |
| 692 exit(1); | |
| 693 } | |
| 1761 | 694 |
| 695 list_sub_file(subs); | |
| 258 | 696 |
| 697 return 0; | |
| 698 } | |
|
706
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
699 #endif |
