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