Mercurial > mplayer.hg
annotate subreader.c @ 6597:4e543bd6cc0a
support for SSA v4 by Dirk <noisyb at gmx.net>
| author | alex |
|---|---|
| date | Sat, 29 Jun 2002 10:39:58 +0000 |
| parents | 74115095d9fe |
| children | 766b6fb28ebf |
| 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) { |
| 6597 | 379 /* |
| 380 * Sub Station Alpha v4 (and v2?) scripts have 9 commas before subtitle | |
| 381 * other Sub Station Alpha scripts have only 8 commas before subtitle | |
| 382 * Reading the "ScriptType:" field is not reliable since many scripts appear | |
| 383 * w/o it | |
| 384 * | |
| 385 * http://www.scriptclub.org is a good place to find more examples | |
| 386 * http://www.eswat.demon.co.uk is where the SSA specs can be found | |
| 387 */ | |
| 388 int comma; | |
| 389 static int max_comma = 32; /* let's use 32 for the case that the */ | |
| 390 /* amount of commas increase with newer SSA versions */ | |
| 391 | |
| 921 | 392 int hour1, min1, sec1, hunsec1, |
| 393 hour2, min2, sec2, hunsec2, nothing; | |
| 2141 | 394 int num; |
| 921 | 395 |
| 2912 | 396 char line[LINE_LEN+1], |
| 397 line3[LINE_LEN+1], | |
| 2140 | 398 *line2; |
| 2141 | 399 char *tmp; |
| 400 | |
| 921 | 401 do { |
| 2912 | 402 if (!fgets (line, LINE_LEN, fd)) return NULL; |
| 921 | 403 } while (sscanf (line, "Dialogue: Marked=%d,%d:%d:%d.%d,%d:%d:%d.%d," |
| 2140 | 404 "%[^\n\r]", ¬hing, |
| 405 &hour1, &min1, &sec1, &hunsec1, | |
| 406 &hour2, &min2, &sec2, &hunsec2, | |
| 407 line3) < 9); | |
| 6597 | 408 |
| 409 line2=strchr(line3, ','); | |
| 410 | |
| 411 for (comma = 4; comma < max_comma; comma ++) | |
| 412 { | |
| 413 tmp = line2; | |
| 414 if(!(tmp=strchr(++tmp, ','))) break; | |
| 415 if(*(++tmp) == ' ') break; | |
| 416 /* a space after a comma means we're already in a sentence */ | |
| 417 line2 = tmp; | |
| 418 } | |
| 419 | |
| 420 if(comma < max_comma)max_comma = comma; | |
| 2140 | 421 |
|
6247
0b8660d79efe
sub_read_line_ssa sig11 fix by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
arpi
parents:
6242
diff
changeset
|
422 current->lines=0;num=0; |
| 921 | 423 current->start = 360000*hour1 + 6000*min1 + 100*sec1 + hunsec1; |
| 424 current->end = 360000*hour2 + 6000*min2 + 100*sec2 + hunsec2; | |
| 2141 | 425 |
|
5990
e5b3385775b3
accept \N too, patch by Reinder <r.cuperus@student.utwente.nl>
arpi
parents:
5828
diff
changeset
|
426 while (((tmp=strstr(line2, "\\n")) != NULL) || ((tmp=strstr(line2, "\\N")) != NULL) ){ |
| 2141 | 427 current->text[num]=(char *)malloc(tmp-line2+1); |
| 428 strncpy (current->text[num], line2, tmp-line2); | |
| 429 current->text[num][tmp-line2]='\0'; | |
| 430 line2=tmp+2; | |
| 431 num++; | |
| 432 current->lines++; | |
| 433 if (current->lines >= SUB_MAX_TEXT) return current; | |
| 434 } | |
| 435 | |
| 3701 | 436 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
|
437 current->lines++; |
| 818 | 438 |
| 921 | 439 return current; |
| 440 } | |
| 258 | 441 |
| 1081 | 442 subtitle *sub_read_line_dunnowhat(FILE *fd,subtitle *current) { |
| 2912 | 443 char line[LINE_LEN+1]; |
| 444 char text[LINE_LEN+1]; | |
| 1081 | 445 |
| 2912 | 446 if (!fgets (line, LINE_LEN, fd)) |
| 1081 | 447 return NULL; |
| 448 if (sscanf (line, "%ld,%ld,\"%[^\"]", &(current->start), | |
| 449 &(current->end), text) <3) | |
| 450 return ERR; | |
| 451 current->text[0] = strdup(text); | |
| 452 current->lines = 1; | |
| 453 | |
| 454 return current; | |
| 455 } | |
| 456 | |
| 2177 | 457 subtitle *sub_read_line_mpsub(FILE *fd, subtitle *current) { |
| 2912 | 458 char line[LINE_LEN+1]; |
| 2178 | 459 float a,b; |
| 460 int num=0; | |
| 2177 | 461 char *p, *q; |
| 462 | |
| 463 do | |
| 464 { | |
| 2912 | 465 if (!fgets(line, LINE_LEN, fd)) return NULL; |
| 2178 | 466 } while (sscanf (line, "%f %f", &a, &b) !=2); |
| 2177 | 467 |
|
5828
880008901169
frame-based mpsub parser fix - patch by Rizsanyi Zsolt <rizsanyi@myrealbox.com>
arpi
parents:
5363
diff
changeset
|
468 mpsub_position += a*(sub_uses_time ? 100.0 : 1.0); |
| 2178 | 469 current->start=(int) mpsub_position; |
|
5828
880008901169
frame-based mpsub parser fix - patch by Rizsanyi Zsolt <rizsanyi@myrealbox.com>
arpi
parents:
5363
diff
changeset
|
470 mpsub_position += b*(sub_uses_time ? 100.0 : 1.0); |
| 2178 | 471 current->end=(int) mpsub_position; |
| 2177 | 472 |
| 473 while (num < SUB_MAX_TEXT) { | |
| 4098 | 474 if (!fgets (line, LINE_LEN, fd)) { |
| 475 if (num == 0) return NULL; | |
| 476 else return current; | |
| 477 } | |
| 2177 | 478 p=line; |
| 479 while (isspace(*p)) p++; | |
| 480 if (eol(*p) && num > 0) return current; | |
| 481 if (eol(*p)) return NULL; | |
| 482 | |
| 483 for (q=p; !eol(*q); q++); | |
| 484 *q='\0'; | |
| 485 if (strlen(p)) { | |
| 486 current->text[num]=strdup(p); | |
| 4098 | 487 // printf (">%s<\n",p); |
| 2177 | 488 current->lines = ++num; |
| 489 } else { | |
| 490 if (num) return current; | |
| 491 else return NULL; | |
| 492 } | |
| 493 } | |
| 3735 | 494 return NULL; // we should have returned before if it's OK |
| 2177 | 495 } |
| 496 | |
| 2343 | 497 subtitle *previous_aqt_sub = NULL; |
| 498 | |
| 499 subtitle *sub_read_line_aqt(FILE *fd,subtitle *current) { | |
| 2912 | 500 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
|
501 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
|
502 int i; |
| 2343 | 503 |
| 504 while (1) { | |
| 505 // try to locate next subtitle | |
| 2912 | 506 if (!fgets (line, LINE_LEN, fd)) |
| 2343 | 507 return NULL; |
| 508 if (!(sscanf (line, "-->> %ld", &(current->start)) <1)) | |
| 509 break; | |
| 510 } | |
| 511 | |
| 512 if (previous_aqt_sub != NULL) | |
| 513 previous_aqt_sub->end = current->start-1; | |
| 514 | |
| 515 previous_aqt_sub = current; | |
| 516 | |
| 2912 | 517 if (!fgets (line, LINE_LEN, fd)) |
| 2343 | 518 return NULL; |
| 519 | |
| 2468 | 520 sub_readtext((char *) &line,¤t->text[0]); |
| 2343 | 521 current->lines = 1; |
| 522 current->end = current->start; // will be corrected by next subtitle | |
| 523 | |
| 2912 | 524 if (!fgets (line, LINE_LEN, fd)) |
| 2343 | 525 return current;; |
| 526 | |
|
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
|
527 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
|
528 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
|
529 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
|
530 i++; |
| 6296 | 531 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
|
532 } |
|
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 current->lines=i+1; |
| 2343 | 534 |
| 535 if ((current->text[0]=="") && (current->text[1]=="")) { | |
| 536 // void subtitle -> end of previous marked and exit | |
| 537 previous_aqt_sub = NULL; | |
| 538 return NULL; | |
| 539 } | |
| 540 | |
| 541 return current; | |
| 542 } | |
| 2177 | 543 |
|
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
|
544 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
|
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 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
|
547 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
|
548 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
|
549 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
|
550 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
|
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 (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
|
553 // 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
|
554 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
|
555 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
|
556 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
|
557 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
|
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 |
|
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 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
|
561 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
|
562 |
|
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 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
|
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 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
|
566 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
|
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 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
|
569 |
|
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
570 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
|
571 |
|
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
572 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
|
573 |
|
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
574 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
|
575 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
|
576 i++; |
| 6296 | 577 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
|
578 } |
|
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
579 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
|
580 |
|
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
581 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
|
582 // 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
|
583 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
|
584 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
|
585 } |
|
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
586 |
|
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
587 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
|
588 } |
|
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
589 |
|
eff64fb1ffea
patch fixes broken detecniou of AQTitle subtiles and adds support for subtitles created by subrip 0.9 - by Jiri.Svoboda@seznam.cz
arpi
parents:
6012
diff
changeset
|
590 |
| 258 | 591 int sub_autodetect (FILE *fd) { |
| 2912 | 592 char line[LINE_LEN+1]; |
| 258 | 593 int i,j=0; |
| 2177 | 594 char p; |
| 258 | 595 |
| 624 | 596 while (j < 100) { |
| 258 | 597 j++; |
| 2912 | 598 if (!fgets (line, LINE_LEN, fd)) |
| 599 return SUB_INVALID; | |
| 258 | 600 |
| 624 | 601 if (sscanf (line, "{%d}{%d}", &i, &i)==2) |
| 2912 | 602 {sub_uses_time=0;return SUB_MICRODVD;} |
| 4519 | 603 if (sscanf (line, "{%d}{}", &i)==1) |
| 4444 | 604 {sub_uses_time=0;return SUB_MICRODVD;} |
| 269 | 605 if (sscanf (line, "%d:%d:%d.%d,%d:%d:%d.%d", &i, &i, &i, &i, &i, &i, &i, &i)==8) |
| 2912 | 606 {sub_uses_time=1;return SUB_SUBRIP;} |
| 269 | 607 if (sscanf (line, "%d:%d:%d,%d --> %d:%d:%d,%d", &i, &i, &i, &i, &i, &i, &i, &i)==8) |
| 2912 | 608 {sub_uses_time=1;return SUB_SUBVIEWER;} |
| 6012 | 609 if (sscanf (line, "{T %d:%d:%d:%d",&i, &i, &i, &i)) |
| 610 {sub_uses_time=1;return SUB_SUBVIEWER2;} | |
| 624 | 611 if (strstr (line, "<SAMI>")) |
| 2912 | 612 {sub_uses_time=1; return SUB_SAMI;} |
| 818 | 613 if (sscanf (line, "%d:%d:%d:", &i, &i, &i )==3) |
| 2912 | 614 {sub_uses_time=1;return SUB_VPLAYER;} |
|
5363
1f068f4bb6e7
vplayer sub fix by Arkadiusz Podgorski <wodzu@softomat.com.pl>
arpi
parents:
4886
diff
changeset
|
615 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
|
616 {sub_uses_time=1;return SUB_VPLAYER;} |
| 850 | 617 //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
|
618 // too weak test for RT |
|
18c43d261c35
corrected strcmp() bug, now it works again with every subs (it was broken)
laaz
parents:
896
diff
changeset
|
619 // Please someone who knows the format of RT... FIX IT!!! |
| 921 | 620 // 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
|
621 if ( *line == '<' ) |
| 2912 | 622 {sub_uses_time=1;return SUB_RT;} |
| 921 | 623 |
| 624 if (!memcmp(line, "Dialogue: Marked", 16)) | |
| 2912 | 625 {sub_uses_time=1; return SUB_SSA;} |
| 1081 | 626 if (sscanf (line, "%d,%d,\"%c", &i, &i, (char *) &i) == 3) |
| 2912 | 627 {sub_uses_time=0;return SUB_DUNNOWHAT;} |
| 2177 | 628 if (sscanf (line, "FORMAT=%d", &i) == 1) |
| 2912 | 629 {sub_uses_time=0; return SUB_MPSUB;} |
| 2177 | 630 if (sscanf (line, "FORMAT=TIM%c", &p)==1 && p=='E') |
| 2912 | 631 {sub_uses_time=1; return SUB_MPSUB;} |
| 2343 | 632 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
|
633 {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
|
634 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
|
635 {sub_uses_time=1;return SUB_SUBRIP09;} |
| 258 | 636 } |
| 624 | 637 |
| 2912 | 638 return SUB_INVALID; // too many bad lines |
| 258 | 639 } |
|
2449
7ef89d9b06ed
added DUMPSUBS recognition if we need compile only subreader.c alone
atlka
parents:
2358
diff
changeset
|
640 |
|
7ef89d9b06ed
added DUMPSUBS recognition if we need compile only subreader.c alone
atlka
parents:
2358
diff
changeset
|
641 #ifdef DUMPSUBS |
|
7ef89d9b06ed
added DUMPSUBS recognition if we need compile only subreader.c alone
atlka
parents:
2358
diff
changeset
|
642 int sub_utf8=0; |
|
7ef89d9b06ed
added DUMPSUBS recognition if we need compile only subreader.c alone
atlka
parents:
2358
diff
changeset
|
643 #else |
|
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
644 extern int sub_utf8; |
|
2449
7ef89d9b06ed
added DUMPSUBS recognition if we need compile only subreader.c alone
atlka
parents:
2358
diff
changeset
|
645 #endif |
| 258 | 646 |
| 4886 | 647 extern float sub_delay; |
| 648 extern float sub_fps; | |
| 649 | |
|
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
650 #ifdef USE_ICONV |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
651 static iconv_t icdsc; |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
652 |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
653 void subcp_open (void) |
|
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 char *tocp = "UTF-8"; |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
656 icdsc = (iconv_t)(-1); |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
657 if (sub_cp){ |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
658 if ((icdsc = iconv_open (tocp, sub_cp)) != (iconv_t)(-1)){ |
| 6296 | 659 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
|
660 sub_utf8 = 2; |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
661 } else |
| 6296 | 662 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
|
663 } |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
664 } |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
665 |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
666 void subcp_close (void) |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
667 { |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
668 if (icdsc != (iconv_t)(-1)){ |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
669 (void) iconv_close (icdsc); |
| 6296 | 670 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
|
671 } |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
672 } |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
673 |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
674 #define ICBUFFSIZE 512 |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
675 static char icbuffer[ICBUFFSIZE]; |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
676 |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
677 subtitle* subcp_recode (subtitle *sub) |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
678 { |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
679 int l=sub->lines; |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
680 size_t ileft, oleft, otlen; |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
681 char *op, *ip, *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 while (l){ |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
684 op = icbuffer; |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
685 ip = sub->text[--l]; |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
686 ileft = strlen(ip); |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
687 oleft = ICBUFFSIZE - 1; |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
688 |
|
6163
141a082e6da6
applied 64bit patch from Ulrich Hecht <uli at suse dot de>
alex
parents:
6076
diff
changeset
|
689 if (iconv(icdsc, &ip, &ileft, |
|
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
690 &op, &oleft) == (size_t)(-1)) { |
| 6296 | 691 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
|
692 l++; |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
693 break; |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
694 } |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
695 if (!(ot = (char *)malloc(op - icbuffer + 1))){ |
| 6296 | 696 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
|
697 l++; |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
698 break; |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
699 } |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
700 *op='\0' ; |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
701 strcpy (ot, icbuffer); |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
702 free (sub->text[l]); |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
703 sub->text[l] = ot; |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
704 } |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
705 if (l){ |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
706 for (l = sub->lines; l;) |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
707 free (sub->text[--l]); |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
708 return ERR; |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
709 } |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
710 return sub; |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
711 } |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
712 |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
713 #endif |
| 258 | 714 |
|
4064
3c747168eb6e
1. subs know are readed after reading AVI header so we already know fps
atlka
parents:
4052
diff
changeset
|
715 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
|
716 int n,m; |
|
4052
505f206d80d1
corrections to adjust_subs_time function which now uses fps if needed
atlka
parents:
4051
diff
changeset
|
717 subtitle* nextsub; |
|
4051
0e7c382bc53a
added adjust_subs_time function which corrects bad sub->end time
atlka
parents:
4048
diff
changeset
|
718 int i = sub_num; |
|
4052
505f206d80d1
corrections to adjust_subs_time function which now uses fps if needed
atlka
parents:
4051
diff
changeset
|
719 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
|
720 |
|
3c747168eb6e
1. subs know are readed after reading AVI header so we already know fps
atlka
parents:
4052
diff
changeset
|
721 n=m=0; |
|
4052
505f206d80d1
corrections to adjust_subs_time function which now uses fps if needed
atlka
parents:
4051
diff
changeset
|
722 if (i) for (;;){ |
|
4064
3c747168eb6e
1. subs know are readed after reading AVI header so we already know fps
atlka
parents:
4052
diff
changeset
|
723 if (sub->end <= sub->start){ |
|
4052
505f206d80d1
corrections to adjust_subs_time function which now uses fps if needed
atlka
parents:
4051
diff
changeset
|
724 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
|
725 m++; |
|
3c747168eb6e
1. subs know are readed after reading AVI header so we already know fps
atlka
parents:
4052
diff
changeset
|
726 n++; |
|
3c747168eb6e
1. subs know are readed after reading AVI header so we already know fps
atlka
parents:
4052
diff
changeset
|
727 } |
|
3c747168eb6e
1. subs know are readed after reading AVI header so we already know fps
atlka
parents:
4052
diff
changeset
|
728 if (!--i) break; |
|
4051
0e7c382bc53a
added adjust_subs_time function which corrects bad sub->end time
atlka
parents:
4048
diff
changeset
|
729 nextsub = sub + 1; |
|
0e7c382bc53a
added adjust_subs_time function which corrects bad sub->end time
atlka
parents:
4048
diff
changeset
|
730 if (sub->end >= nextsub->start){ |
|
0e7c382bc53a
added adjust_subs_time function which corrects bad sub->end time
atlka
parents:
4048
diff
changeset
|
731 sub->end = nextsub->start - 1; |
|
4052
505f206d80d1
corrections to adjust_subs_time function which now uses fps if needed
atlka
parents:
4051
diff
changeset
|
732 if (sub->end - sub->start > subfms) |
|
505f206d80d1
corrections to adjust_subs_time function which now uses fps if needed
atlka
parents:
4051
diff
changeset
|
733 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
|
734 if (!m) |
|
3c747168eb6e
1. subs know are readed after reading AVI header so we already know fps
atlka
parents:
4052
diff
changeset
|
735 n++; |
|
4051
0e7c382bc53a
added adjust_subs_time function which corrects bad sub->end time
atlka
parents:
4048
diff
changeset
|
736 } |
|
0e7c382bc53a
added adjust_subs_time function which corrects bad sub->end time
atlka
parents:
4048
diff
changeset
|
737 sub = nextsub; |
|
4064
3c747168eb6e
1. subs know are readed after reading AVI header so we already know fps
atlka
parents:
4052
diff
changeset
|
738 m = 0; |
|
4051
0e7c382bc53a
added adjust_subs_time function which corrects bad sub->end time
atlka
parents:
4048
diff
changeset
|
739 } |
| 6296 | 740 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
|
741 } |
|
0e7c382bc53a
added adjust_subs_time function which corrects bad sub->end time
atlka
parents:
4048
diff
changeset
|
742 |
|
4064
3c747168eb6e
1. subs know are readed after reading AVI header so we already know fps
atlka
parents:
4052
diff
changeset
|
743 subtitle* sub_read_file (char *filename, float fps) { |
| 258 | 744 FILE *fd; |
| 745 int n_max; | |
| 746 subtitle *first; | |
|
4064
3c747168eb6e
1. subs know are readed after reading AVI header so we already know fps
atlka
parents:
4052
diff
changeset
|
747 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
|
748 "rt", "ssa", "dunnowhat", "mpsub", "aqt", "subviewer 2.0", "subrip 0.9" }; |
| 1081 | 749 subtitle * (*func[])(FILE *fd,subtitle *dest)= |
| 258 | 750 { |
| 751 sub_read_line_microdvd, | |
| 752 sub_read_line_subrip, | |
| 2912 | 753 sub_read_line_subviewer, |
| 818 | 754 sub_read_line_sami, |
| 850 | 755 sub_read_line_vplayer, |
| 921 | 756 sub_read_line_rt, |
| 1081 | 757 sub_read_line_ssa, |
| 2177 | 758 sub_read_line_dunnowhat, |
| 2343 | 759 sub_read_line_mpsub, |
| 6012 | 760 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
|
761 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
|
762 sub_read_line_subrip09 |
| 2343 | 763 |
| 258 | 764 }; |
| 2915 | 765 if(filename==NULL) return NULL; //qnx segfault |
| 258 | 766 fd=fopen (filename, "r"); if (!fd) return NULL; |
| 767 | |
| 768 sub_format=sub_autodetect (fd); | |
| 6296 | 769 if (sub_format==SUB_INVALID) {mp_msg(MSGT_SUBREADER,MSGL_WARN,"SUB: Could not determine file format\n");return NULL;} |
| 770 mp_msg(MSGT_SUBREADER,MSGL_INFO,"SUB: Detected subtitle file format: %s\n", fmtname[sub_format]); | |
| 258 | 771 |
| 772 rewind (fd); | |
| 773 | |
|
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
774 #ifdef USE_ICONV |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
775 subcp_open(); |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
776 #endif |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
777 |
| 258 | 778 sub_num=0;n_max=32; |
| 779 first=(subtitle *)malloc(n_max*sizeof(subtitle)); | |
| 780 if(!first) return NULL; | |
| 781 | |
| 782 while(1){ | |
| 783 subtitle *sub; | |
| 784 if(sub_num>=n_max){ | |
| 785 n_max+=16; | |
| 786 first=realloc(first,n_max*sizeof(subtitle)); | |
| 787 } | |
|
4064
3c747168eb6e
1. subs know are readed after reading AVI header so we already know fps
atlka
parents:
4052
diff
changeset
|
788 sub = &first[sub_num]; |
|
3c747168eb6e
1. subs know are readed after reading AVI header so we already know fps
atlka
parents:
4052
diff
changeset
|
789 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
|
790 sub=func[sub_format](fd,sub); |
| 258 | 791 if(!sub) break; // EOF |
|
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
792 #ifdef USE_ICONV |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
793 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
|
794 #endif |
| 258 | 795 if(sub==ERR) ++sub_errs; else ++sub_num; // Error vs. Valid |
| 796 } | |
| 797 | |
| 798 fclose(fd); | |
| 799 | |
|
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
800 #ifdef USE_ICONV |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
801 subcp_close(); |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
802 #endif |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
803 |
| 258 | 804 // printf ("SUB: Subtitle format %s time.\n", sub_uses_time?"uses":"doesn't use"); |
| 6296 | 805 mp_msg(MSGT_SUBREADER,MSGL_INFO,"SUB: Read %i subtitles", sub_num); |
| 806 if (sub_errs) mp_msg(MSGT_SUBREADER,MSGL_INFO,", %i bad line(s).\n", sub_errs); | |
| 807 else mp_msg(MSGT_SUBREADER,MSGL_INFO,".\n"); | |
| 258 | 808 |
| 2880 | 809 if(sub_num<=0){ |
| 810 free(first); | |
| 811 return NULL; | |
| 812 } | |
| 813 | |
|
4064
3c747168eb6e
1. subs know are readed after reading AVI header so we already know fps
atlka
parents:
4052
diff
changeset
|
814 adjust_subs_time(first, 6.0, fps); /* ~6 secs AST */ |
| 258 | 815 return first; |
| 816 } | |
| 817 | |
| 892 | 818 #if 0 |
| 509 | 819 char * strreplace( char * in,char * what,char * whereof ) |
| 820 { | |
| 821 int i; | |
| 822 char * tmp; | |
| 823 | |
| 824 if ( ( in == NULL )||( what == NULL )||( whereof == NULL )||( ( tmp=strstr( in,what ) ) == NULL ) ) return NULL; | |
| 825 for( i=0;i<strlen( whereof );i++ ) tmp[i]=whereof[i]; | |
| 826 if ( strlen( what ) > strlen( whereof ) ) tmp[i]=0; | |
| 827 return in; | |
| 828 } | |
| 892 | 829 #endif |
| 509 | 830 |
| 892 | 831 char * sub_filename(char* path, char * fname ) |
| 509 | 832 { |
| 892 | 833 char * sub_name1; |
| 834 char * sub_name2; | |
|
934
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
835 char * aviptr1, * aviptr2, * tmp; |
| 892 | 836 int i,j; |
| 837 FILE * f; | |
| 838 int pos=0; | |
| 839 char * sub_exts[] = | |
|
1501
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1081
diff
changeset
|
840 { ".utf", |
|
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1081
diff
changeset
|
841 ".UTF", |
|
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1081
diff
changeset
|
842 ".sub", |
| 509 | 843 ".SUB", |
| 844 ".srt", | |
|
706
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
845 ".SRT", |
|
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
846 ".smi", |
| 850 | 847 ".SMI", |
| 848 ".rt", | |
| 849 ".RT", | |
| 850 ".txt", | |
| 1081 | 851 ".TXT", |
| 852 ".ssa", | |
| 2343 | 853 ".SSA", |
| 854 ".aqt", | |
| 855 ".AQT"}; | |
| 892 | 856 |
|
934
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
857 |
| 509 | 858 if ( fname == NULL ) return NULL; |
| 892 | 859 |
| 860 sub_name1=strrchr(fname,'.'); | |
| 861 if (!sub_name1) return NULL; | |
| 862 pos=sub_name1-fname; | |
| 863 | |
|
934
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
864 sub_name1=malloc(strlen(fname)+8); |
|
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
865 strcpy(sub_name1,fname); |
|
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
866 |
|
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
867 sub_name2=malloc (strlen(path) + strlen(fname) + 8); |
| 1081 | 868 if ((tmp=strrchr(fname,'/'))) |
|
934
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
869 sprintf (sub_name2, "%s%s", path, tmp+1); |
|
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
870 else |
|
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
871 sprintf (sub_name2, "%s%s", path, fname); |
|
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
872 |
|
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
873 aviptr1=strrchr(sub_name1,'.'); |
|
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
874 aviptr2=strrchr(sub_name2,'.'); |
| 892 | 875 |
| 876 for(j=0;j<=1;j++){ | |
| 877 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
|
878 #ifdef USE_ICONV |
|
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2141
diff
changeset
|
879 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
|
880 #else |
| 892 | 881 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
|
882 #endif |
|
934
b2c7c4b49948
Gabucino (CGA user)'s request (finds default.subs well)
laaz
parents:
932
diff
changeset
|
883 strcpy(j?aviptr1:aviptr2,sub_exts[i]); |
| 935 | 884 // printf("trying: '%s'\n",sub_name); |
| 892 | 885 if((f=fopen( sub_name,"rt" ))) { |
| 509 | 886 fclose( f ); |
| 6296 | 887 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
|
888 if (i<2) sub_utf8=1; |
| 509 | 889 return sub_name; |
| 892 | 890 } |
| 509 | 891 } |
| 892 | 892 } |
| 893 | |
| 509 | 894 return NULL; |
| 895 } | |
| 896 | |
| 1761 | 897 void list_sub_file(subtitle* subs){ |
| 898 int i,j; | |
| 899 | |
| 900 for(j=0;j<sub_num;j++){ | |
| 901 subtitle* egysub=&subs[j]; | |
| 902 printf ("%i line%c (%li-%li) ", | |
| 903 egysub->lines, | |
| 904 (1==egysub->lines)?' ':'s', | |
| 905 egysub->start, | |
| 906 egysub->end); | |
| 907 for (i=0; i<egysub->lines; i++) { | |
| 908 printf ("%s%s",egysub->text[i], i==egysub->lines-1?"":" <BREAK> "); | |
| 909 } | |
| 910 printf ("\n"); | |
| 911 } | |
| 912 | |
| 913 printf ("Subtitle format %s time.\n", sub_uses_time?"uses":"doesn't use"); | |
| 914 printf ("Read %i subtitles, %i errors.\n", sub_num, sub_errs); | |
| 915 | |
| 916 } | |
| 6208 | 917 void dump_srt(subtitle* subs){ |
| 918 int i,j; | |
| 919 int h,m,s,ms; | |
| 920 FILE * fd; | |
| 921 subtitle * onesub; | |
| 922 unsigned long temp; | |
| 923 | |
| 924 fd=fopen("dumpsub.srt","w"); | |
| 925 if(!fd) | |
| 926 { | |
| 927 perror("dump_srt: fopen"); | |
| 928 return; | |
| 929 } | |
| 930 for(i=0;i<sub_num;i++) | |
| 931 { | |
| 932 onesub=subs+i; //=&subs[i]; | |
| 933 fprintf(fd,"%d\n",i+1);//line number | |
| 934 | |
| 935 temp=onesub->start; | |
| 936 h=temp/360000;temp%=360000; //h =1*100*60*60 | |
| 937 m=temp/6000; temp%=6000; //m =1*100*60 | |
| 938 s=temp/100; temp%=100; //s =1*100 | |
| 939 ms=temp; //ms=1 | |
| 940 fprintf(fd,"%02d:%02d:%02d,%03d --> ",h,m,s,ms); | |
| 941 | |
| 942 temp=onesub->end; | |
| 943 h=temp/360000;temp%=360000; | |
| 944 m=temp/6000; temp%=6000; | |
| 945 s=temp/100; temp%=100; | |
| 946 ms=temp; | |
| 947 fprintf(fd,"%02d:%02d:%02d,%03d\n",h,m,s,ms); | |
| 948 | |
| 949 for(j=0;j<onesub->lines;j++) | |
| 950 fprintf(fd,"%s\n",onesub->text[j]); | |
| 951 | |
| 952 fprintf(fd,"\n"); | |
| 953 } | |
| 954 fclose(fd); | |
| 6296 | 955 mp_msg(MSGT_SUBREADER,MSGL_INFO,"SUB: Subtitles dumped in \'dumpsub.srt\'.\n"); |
| 6208 | 956 } |
| 1761 | 957 |
|
4064
3c747168eb6e
1. subs know are readed after reading AVI header so we already know fps
atlka
parents:
4052
diff
changeset
|
958 void dump_mpsub(subtitle* subs, float fps){ |
| 2178 | 959 int i,j; |
| 960 FILE *fd; | |
| 961 float a,b; | |
| 962 | |
| 4886 | 963 mpsub_position=sub_uses_time?(sub_delay*100):(sub_delay*fps); |
| 964 if (sub_fps==0) sub_fps=fps; | |
| 2178 | 965 |
| 966 fd=fopen ("dump.mpsub", "w"); | |
| 967 if (!fd) { | |
| 968 perror ("dump_mpsub: fopen"); | |
| 969 return; | |
| 970 } | |
| 971 | |
| 972 | |
| 973 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
|
974 else fprintf (fd, "FORMAT=%5.2f\n\n", fps); |
| 2178 | 975 |
| 976 for(j=0;j<sub_num;j++){ | |
| 2495 | 977 subtitle* egysub=&subs[j]; |
| 978 if (sub_uses_time) { | |
| 979 a=((egysub->start-mpsub_position)/100.0); | |
| 980 b=((egysub->end-egysub->start)/100.0); | |
| 981 if ( (float)((int)a) == a) | |
| 982 fprintf (fd, "%.0f",a); | |
| 983 else | |
| 984 fprintf (fd, "%.2f",a); | |
| 985 | |
| 986 if ( (float)((int)b) == b) | |
| 987 fprintf (fd, " %.0f\n",b); | |
| 988 else | |
| 989 fprintf (fd, " %.2f\n",b); | |
| 990 } else { | |
| 4886 | 991 fprintf (fd, "%ld %ld\n", (long)((egysub->start*(fps/sub_fps))-((mpsub_position*(fps/sub_fps)))), |
| 992 (long)(((egysub->end)-(egysub->start))*(fps/sub_fps))); | |
| 2495 | 993 } |
| 994 | |
| 995 mpsub_position = egysub->end; | |
| 996 for (i=0; i<egysub->lines; i++) { | |
| 997 fprintf (fd, "%s\n",egysub->text[i]); | |
| 998 } | |
| 999 fprintf (fd, "\n"); | |
| 2178 | 1000 } |
| 1001 fclose (fd); | |
| 6296 | 1002 mp_msg(MSGT_SUBREADER,MSGL_INFO,"SUB: Subtitles dumped in \'dump.mpsub\'.\n"); |
| 2178 | 1003 } |
| 1004 | |
| 3543 | 1005 void sub_free( subtitle * subs ) |
| 1006 { | |
| 1007 int i; | |
| 1008 | |
| 1009 if ( !subs ) return; | |
| 1010 | |
| 1011 sub_num=0; | |
| 1012 sub_errs=0; | |
| 1013 for ( i=0;i<subs->lines;i++ ) free( subs->text[i] ); | |
| 1014 free( subs ); | |
| 1015 subs=NULL; | |
| 1016 } | |
| 2178 | 1017 |
|
2449
7ef89d9b06ed
added DUMPSUBS recognition if we need compile only subreader.c alone
atlka
parents:
2358
diff
changeset
|
1018 #ifdef DUMPSUBS |
| 258 | 1019 int main(int argc, char **argv) { // for testing |
| 1020 | |
| 1021 int i,j; | |
| 1022 subtitle *subs; | |
| 1023 subtitle *egysub; | |
| 1024 | |
| 1025 if(argc<2){ | |
| 1026 printf("\nUsage: subreader filename.sub\n\n"); | |
| 1027 exit(1); | |
| 1028 } | |
|
2449
7ef89d9b06ed
added DUMPSUBS recognition if we need compile only subreader.c alone
atlka
parents:
2358
diff
changeset
|
1029 sub_cp = argv[2]; |
| 624 | 1030 subs=sub_read_file(argv[1]); |
| 258 | 1031 if(!subs){ |
| 4886 | 1032 printf("Couldn't load file.\n"); |
| 258 | 1033 exit(1); |
| 1034 } | |
| 1761 | 1035 |
| 1036 list_sub_file(subs); | |
| 258 | 1037 |
| 1038 return 0; | |
| 1039 } | |
|
706
8a7666a78f83
better .smi support and display two-byte characters- patch by Sunjin Yang
arpi_esp
parents:
678
diff
changeset
|
1040 #endif |
