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