mirror of
https://github.com/mpv-player/mpv
synced 2024-12-24 15:52:25 +00:00
minor cleanups:
a few #define's in subreader.h are now used instead of -1..9 same thing for line length instead of 1000..1001 renamed *_third() to *_subviewer() since it is what it is git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2913 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
82829c6419
commit
e107700e17
115
subreader.c
115
subreader.c
@ -26,22 +26,17 @@
|
|||||||
char *sub_cp=NULL;
|
char *sub_cp=NULL;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* Maximal length of line of a subtitle */
|
||||||
|
#define LINE_LEN 1000
|
||||||
|
|
||||||
static float mpsub_position=0;
|
static float mpsub_position=0;
|
||||||
|
|
||||||
int sub_uses_time=0;
|
int sub_uses_time=0;
|
||||||
int sub_errs=0;
|
int sub_errs=0;
|
||||||
int sub_num=0; // number of subtitle structs
|
int sub_num=0; // number of subtitle structs
|
||||||
int sub_format=-1; // 0 for microdvd
|
|
||||||
// 1 for SubRip
|
/* Use the SUB_* constant defined in the header file */
|
||||||
// 2 for SubViewer
|
int sub_format=SUB_INVALID;
|
||||||
// 3 for SAMI (smi)
|
|
||||||
// 4 for vplayer format
|
|
||||||
// 5 for RT format
|
|
||||||
// 6 for ssa (Sub Station Alpha)
|
|
||||||
// 7 for ... erm ... dunnowhat. tell me if you know
|
|
||||||
// 8 for the glorious MPsub
|
|
||||||
// 9 for AQTitle
|
|
||||||
|
|
||||||
int eol(char p) {
|
int eol(char p) {
|
||||||
return (p=='\r' || p=='\n' || p=='\0');
|
return (p=='\r' || p=='\n' || p=='\0');
|
||||||
@ -56,9 +51,9 @@ static inline void trail_space(char *s) {
|
|||||||
|
|
||||||
|
|
||||||
subtitle *sub_read_line_sami(FILE *fd, subtitle *current) {
|
subtitle *sub_read_line_sami(FILE *fd, subtitle *current) {
|
||||||
static char line[1001];
|
static char line[LINE_LEN+1];
|
||||||
static char *s = NULL;
|
static char *s = NULL;
|
||||||
char text[1000], *p, *q;
|
char text[LINE_LEN+1], *p, *q;
|
||||||
int state;
|
int state;
|
||||||
|
|
||||||
current->lines = current->start = current->end = 0;
|
current->lines = current->start = current->end = 0;
|
||||||
@ -66,7 +61,7 @@ subtitle *sub_read_line_sami(FILE *fd, subtitle *current) {
|
|||||||
|
|
||||||
/* read the first line */
|
/* read the first line */
|
||||||
if (!s)
|
if (!s)
|
||||||
if (!(s = fgets(line, 1000, fd))) return 0;
|
if (!(s = fgets(line, LINE_LEN, fd))) return 0;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
switch (state) {
|
switch (state) {
|
||||||
@ -122,7 +117,7 @@ subtitle *sub_read_line_sami(FILE *fd, subtitle *current) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* read next line */
|
/* read next line */
|
||||||
if (state != 99 && !(s = fgets (line, 1000, fd))) return 0;
|
if (state != 99 && !(s = fgets (line, LINE_LEN, fd))) return 0;
|
||||||
|
|
||||||
} while (state != 99);
|
} while (state != 99);
|
||||||
|
|
||||||
@ -151,15 +146,15 @@ char *sub_readtext(char *source, char **dest) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
subtitle *sub_read_line_microdvd(FILE *fd,subtitle *current) {
|
subtitle *sub_read_line_microdvd(FILE *fd,subtitle *current) {
|
||||||
char line[1001];
|
char line[LINE_LEN+1];
|
||||||
char line2[1001];
|
char line2[LINE_LEN+1];
|
||||||
char *p, *next;
|
char *p, *next;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
bzero (current, sizeof(subtitle));
|
bzero (current, sizeof(subtitle));
|
||||||
|
|
||||||
do {
|
do {
|
||||||
if (!fgets (line, 1000, fd)) return NULL;
|
if (!fgets (line, LINE_LEN, fd)) return NULL;
|
||||||
} while (sscanf (line, "{%ld}{%ld}%[^\r\n]", &(current->start), &(current->end),line2) <3);
|
} while (sscanf (line, "{%ld}{%ld}%[^\r\n]", &(current->start), &(current->end),line2) <3);
|
||||||
|
|
||||||
p=line2;
|
p=line2;
|
||||||
@ -176,7 +171,7 @@ subtitle *sub_read_line_microdvd(FILE *fd,subtitle *current) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
subtitle *sub_read_line_subrip(FILE *fd, subtitle *current) {
|
subtitle *sub_read_line_subrip(FILE *fd, subtitle *current) {
|
||||||
char line[1001];
|
char line[LINE_LEN+1];
|
||||||
int a1,a2,a3,a4,b1,b2,b3,b4;
|
int a1,a2,a3,a4,b1,b2,b3,b4;
|
||||||
char *p=NULL, *q=NULL;
|
char *p=NULL, *q=NULL;
|
||||||
int len;
|
int len;
|
||||||
@ -184,12 +179,12 @@ subtitle *sub_read_line_subrip(FILE *fd, subtitle *current) {
|
|||||||
bzero (current, sizeof(subtitle));
|
bzero (current, sizeof(subtitle));
|
||||||
|
|
||||||
while (1) {
|
while (1) {
|
||||||
if (!fgets (line, 1000, fd)) return NULL;
|
if (!fgets (line, LINE_LEN, fd)) return NULL;
|
||||||
if (sscanf (line, "%d:%d:%d.%d,%d:%d:%d.%d",&a1,&a2,&a3,&a4,&b1,&b2,&b3,&b4) < 8) continue;
|
if (sscanf (line, "%d:%d:%d.%d,%d:%d:%d.%d",&a1,&a2,&a3,&a4,&b1,&b2,&b3,&b4) < 8) continue;
|
||||||
current->start = a1*360000+a2*6000+a3*100+a4;
|
current->start = a1*360000+a2*6000+a3*100+a4;
|
||||||
current->end = b1*360000+b2*6000+b3*100+b4;
|
current->end = b1*360000+b2*6000+b3*100+b4;
|
||||||
|
|
||||||
if (!fgets (line, 1000, fd)) return NULL;
|
if (!fgets (line, LINE_LEN, fd)) return NULL;
|
||||||
|
|
||||||
p=q=line;
|
p=q=line;
|
||||||
for (current->lines=1; current->lines < SUB_MAX_TEXT; current->lines++) {
|
for (current->lines=1; current->lines < SUB_MAX_TEXT; current->lines++) {
|
||||||
@ -206,8 +201,8 @@ subtitle *sub_read_line_subrip(FILE *fd, subtitle *current) {
|
|||||||
return current;
|
return current;
|
||||||
}
|
}
|
||||||
|
|
||||||
subtitle *sub_read_line_third(FILE *fd,subtitle *current) {
|
subtitle *sub_read_line_subviewer(FILE *fd,subtitle *current) {
|
||||||
char line[1001];
|
char line[LINE_LEN+1];
|
||||||
int a1,a2,a3,a4,b1,b2,b3,b4;
|
int a1,a2,a3,a4,b1,b2,b3,b4;
|
||||||
char *p=NULL;
|
char *p=NULL;
|
||||||
int i,len;
|
int i,len;
|
||||||
@ -215,13 +210,13 @@ subtitle *sub_read_line_third(FILE *fd,subtitle *current) {
|
|||||||
bzero (current, sizeof(subtitle));
|
bzero (current, sizeof(subtitle));
|
||||||
|
|
||||||
while (!current->text[0]) {
|
while (!current->text[0]) {
|
||||||
if (!fgets (line, 1000, fd)) return NULL;
|
if (!fgets (line, LINE_LEN, fd)) return NULL;
|
||||||
if ((len=sscanf (line, "%d:%d:%d,%d --> %d:%d:%d,%d",&a1,&a2,&a3,&a4,&b1,&b2,&b3,&b4)) < 8)
|
if ((len=sscanf (line, "%d:%d:%d,%d --> %d:%d:%d,%d",&a1,&a2,&a3,&a4,&b1,&b2,&b3,&b4)) < 8)
|
||||||
continue;
|
continue;
|
||||||
current->start = a1*360000+a2*6000+a3*100+a4/10;
|
current->start = a1*360000+a2*6000+a3*100+a4/10;
|
||||||
current->end = b1*360000+b2*6000+b3*100+b4/10;
|
current->end = b1*360000+b2*6000+b3*100+b4/10;
|
||||||
for (i=0; i<SUB_MAX_TEXT;) {
|
for (i=0; i<SUB_MAX_TEXT;) {
|
||||||
if (!fgets (line, 1000, fd)) break;
|
if (!fgets (line, LINE_LEN, fd)) break;
|
||||||
len=0;
|
len=0;
|
||||||
for (p=line; *p!='\n' && *p!='\r' && *p; p++,len++);
|
for (p=line; *p!='\n' && *p!='\r' && *p; p++,len++);
|
||||||
if (len) {
|
if (len) {
|
||||||
@ -239,8 +234,8 @@ subtitle *sub_read_line_third(FILE *fd,subtitle *current) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
subtitle *sub_read_line_vplayer(FILE *fd,subtitle *current) {
|
subtitle *sub_read_line_vplayer(FILE *fd,subtitle *current) {
|
||||||
char line[1001];
|
char line[LINE_LEN+1];
|
||||||
char line2[1001];
|
char line2[LINE_LEN+1];
|
||||||
int a1,a2,a3,b1,b2,b3;
|
int a1,a2,a3,b1,b2,b3;
|
||||||
char *p=NULL, *next;
|
char *p=NULL, *next;
|
||||||
int i,len,len2,plen;
|
int i,len,len2,plen;
|
||||||
@ -248,10 +243,10 @@ subtitle *sub_read_line_vplayer(FILE *fd,subtitle *current) {
|
|||||||
bzero (current, sizeof(subtitle));
|
bzero (current, sizeof(subtitle));
|
||||||
|
|
||||||
while (!current->text[0]) {
|
while (!current->text[0]) {
|
||||||
if (!fgets (line, 1000, fd)) return NULL;
|
if (!fgets (line, LINE_LEN, fd)) return NULL;
|
||||||
if ((len=sscanf (line, "%d:%d:%d:%n",&a1,&a2,&a3,&plen)) < 3)
|
if ((len=sscanf (line, "%d:%d:%d:%n",&a1,&a2,&a3,&plen)) < 3)
|
||||||
continue;
|
continue;
|
||||||
if (!fgets (line2, 1000, fd)) return NULL;
|
if (!fgets (line2, LINE_LEN, fd)) return NULL;
|
||||||
if ((len2=sscanf (line2, "%d:%d:%d:",&b1,&b2,&b3)) < 3)
|
if ((len2=sscanf (line2, "%d:%d:%d:",&b1,&b2,&b3)) < 3)
|
||||||
continue;
|
continue;
|
||||||
// przewiñ o linijkê do ty³u:
|
// przewiñ o linijkê do ty³u:
|
||||||
@ -286,7 +281,7 @@ subtitle *sub_read_line_rt(FILE *fd,subtitle *current) {
|
|||||||
//TODO: This format uses quite rich (sub/super)set of xhtml
|
//TODO: This format uses quite rich (sub/super)set of xhtml
|
||||||
// I couldn't check it since DTD is not included.
|
// I couldn't check it since DTD is not included.
|
||||||
// WARNING: full XML parses can be required for proper parsing
|
// WARNING: full XML parses can be required for proper parsing
|
||||||
char line[1001];
|
char line[LINE_LEN+1];
|
||||||
int a1,a2,a3,a4,b1,b2,b3,b4;
|
int a1,a2,a3,a4,b1,b2,b3,b4;
|
||||||
char *p=NULL,*next=NULL;
|
char *p=NULL,*next=NULL;
|
||||||
int i,len,plen;
|
int i,len,plen;
|
||||||
@ -294,7 +289,7 @@ subtitle *sub_read_line_rt(FILE *fd,subtitle *current) {
|
|||||||
bzero (current, sizeof(subtitle));
|
bzero (current, sizeof(subtitle));
|
||||||
|
|
||||||
while (!current->text[0]) {
|
while (!current->text[0]) {
|
||||||
if (!fgets (line, 1000, fd)) return NULL;
|
if (!fgets (line, LINE_LEN, fd)) return NULL;
|
||||||
//TODO: it seems that format of time is not easily determined, it may be 1:12, 1:12.0 or 0:1:12.0
|
//TODO: it seems that format of time is not easily determined, it may be 1:12, 1:12.0 or 0:1:12.0
|
||||||
//to describe the same moment in time. Maybe there are even more formats in use.
|
//to describe the same moment in time. Maybe there are even more formats in use.
|
||||||
//if ((len=sscanf (line, "<Time Begin=\"%d:%d:%d.%d\" End=\"%d:%d:%d.%d\"",&a1,&a2,&a3,&a4,&b1,&b2,&b3,&b4)) < 8)
|
//if ((len=sscanf (line, "<Time Begin=\"%d:%d:%d.%d\" End=\"%d:%d:%d.%d\"",&a1,&a2,&a3,&a4,&b1,&b2,&b3,&b4)) < 8)
|
||||||
@ -327,13 +322,13 @@ subtitle *sub_read_line_ssa(FILE *fd,subtitle *current) {
|
|||||||
hour2, min2, sec2, hunsec2, nothing;
|
hour2, min2, sec2, hunsec2, nothing;
|
||||||
int num;
|
int num;
|
||||||
|
|
||||||
char line[1000],
|
char line[LINE_LEN+1],
|
||||||
line3[1000],
|
line3[LINE_LEN+1],
|
||||||
*line2;
|
*line2;
|
||||||
char *tmp;
|
char *tmp;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
if (!fgets (line, 1000, fd)) return NULL;
|
if (!fgets (line, LINE_LEN, fd)) return NULL;
|
||||||
} while (sscanf (line, "Dialogue: Marked=%d,%d:%d:%d.%d,%d:%d:%d.%d,"
|
} while (sscanf (line, "Dialogue: Marked=%d,%d:%d:%d.%d,%d:%d:%d.%d,"
|
||||||
"%[^\n\r]", ¬hing,
|
"%[^\n\r]", ¬hing,
|
||||||
&hour1, &min1, &sec1, &hunsec1,
|
&hour1, &min1, &sec1, &hunsec1,
|
||||||
@ -366,12 +361,12 @@ subtitle *sub_read_line_ssa(FILE *fd,subtitle *current) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
subtitle *sub_read_line_dunnowhat(FILE *fd,subtitle *current) {
|
subtitle *sub_read_line_dunnowhat(FILE *fd,subtitle *current) {
|
||||||
char line[1001];
|
char line[LINE_LEN+1];
|
||||||
char text[1001];
|
char text[LINE_LEN+1];
|
||||||
|
|
||||||
bzero (current, sizeof(subtitle));
|
bzero (current, sizeof(subtitle));
|
||||||
|
|
||||||
if (!fgets (line, 1000, fd))
|
if (!fgets (line, LINE_LEN, fd))
|
||||||
return NULL;
|
return NULL;
|
||||||
if (sscanf (line, "%ld,%ld,\"%[^\"]", &(current->start),
|
if (sscanf (line, "%ld,%ld,\"%[^\"]", &(current->start),
|
||||||
&(current->end), text) <3)
|
&(current->end), text) <3)
|
||||||
@ -383,14 +378,14 @@ subtitle *sub_read_line_dunnowhat(FILE *fd,subtitle *current) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
subtitle *sub_read_line_mpsub(FILE *fd, subtitle *current) {
|
subtitle *sub_read_line_mpsub(FILE *fd, subtitle *current) {
|
||||||
char line[1000];
|
char line[LINE_LEN+1];
|
||||||
float a,b;
|
float a,b;
|
||||||
int num=0;
|
int num=0;
|
||||||
char *p, *q;
|
char *p, *q;
|
||||||
|
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
if (!fgets(line, 1000, fd)) return NULL;
|
if (!fgets(line, LINE_LEN, fd)) return NULL;
|
||||||
} while (sscanf (line, "%f %f", &a, &b) !=2);
|
} while (sscanf (line, "%f %f", &a, &b) !=2);
|
||||||
|
|
||||||
mpsub_position += (a*100.0);
|
mpsub_position += (a*100.0);
|
||||||
@ -399,7 +394,7 @@ subtitle *sub_read_line_mpsub(FILE *fd, subtitle *current) {
|
|||||||
current->end=(int) mpsub_position;
|
current->end=(int) mpsub_position;
|
||||||
|
|
||||||
while (num < SUB_MAX_TEXT) {
|
while (num < SUB_MAX_TEXT) {
|
||||||
if (!fgets (line, 1000, fd)) return NULL;
|
if (!fgets (line, LINE_LEN, fd)) return NULL;
|
||||||
p=line;
|
p=line;
|
||||||
while (isspace(*p)) p++;
|
while (isspace(*p)) p++;
|
||||||
if (eol(*p) && num > 0) return current;
|
if (eol(*p) && num > 0) return current;
|
||||||
@ -421,13 +416,13 @@ subtitle *sub_read_line_mpsub(FILE *fd, subtitle *current) {
|
|||||||
subtitle *previous_aqt_sub = NULL;
|
subtitle *previous_aqt_sub = NULL;
|
||||||
|
|
||||||
subtitle *sub_read_line_aqt(FILE *fd,subtitle *current) {
|
subtitle *sub_read_line_aqt(FILE *fd,subtitle *current) {
|
||||||
char line[1001];
|
char line[LINE_LEN+1];
|
||||||
|
|
||||||
bzero (current, sizeof(subtitle));
|
bzero (current, sizeof(subtitle));
|
||||||
|
|
||||||
while (1) {
|
while (1) {
|
||||||
// try to locate next subtitle
|
// try to locate next subtitle
|
||||||
if (!fgets (line, 1000, fd))
|
if (!fgets (line, LINE_LEN, fd))
|
||||||
return NULL;
|
return NULL;
|
||||||
if (!(sscanf (line, "-->> %ld", &(current->start)) <1))
|
if (!(sscanf (line, "-->> %ld", &(current->start)) <1))
|
||||||
break;
|
break;
|
||||||
@ -438,14 +433,14 @@ subtitle *sub_read_line_aqt(FILE *fd,subtitle *current) {
|
|||||||
|
|
||||||
previous_aqt_sub = current;
|
previous_aqt_sub = current;
|
||||||
|
|
||||||
if (!fgets (line, 1000, fd))
|
if (!fgets (line, LINE_LEN, fd))
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
sub_readtext((char *) &line,¤t->text[0]);
|
sub_readtext((char *) &line,¤t->text[0]);
|
||||||
current->lines = 1;
|
current->lines = 1;
|
||||||
current->end = current->start; // will be corrected by next subtitle
|
current->end = current->start; // will be corrected by next subtitle
|
||||||
|
|
||||||
if (!fgets (line, 1000, fd))
|
if (!fgets (line, LINE_LEN, fd))
|
||||||
return current;;
|
return current;;
|
||||||
|
|
||||||
sub_readtext((char *) &line,¤t->text[1]);
|
sub_readtext((char *) &line,¤t->text[1]);
|
||||||
@ -461,45 +456,45 @@ subtitle *sub_read_line_aqt(FILE *fd,subtitle *current) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
int sub_autodetect (FILE *fd) {
|
int sub_autodetect (FILE *fd) {
|
||||||
char line[1001];
|
char line[LINE_LEN+1];
|
||||||
int i,j=0;
|
int i,j=0;
|
||||||
char p;
|
char p;
|
||||||
|
|
||||||
while (j < 100) {
|
while (j < 100) {
|
||||||
j++;
|
j++;
|
||||||
if (!fgets (line, 1000, fd))
|
if (!fgets (line, LINE_LEN, fd))
|
||||||
return -1;
|
return SUB_INVALID;
|
||||||
|
|
||||||
if (sscanf (line, "{%d}{%d}", &i, &i)==2)
|
if (sscanf (line, "{%d}{%d}", &i, &i)==2)
|
||||||
{sub_uses_time=0;return 0;}
|
{sub_uses_time=0;return SUB_MICRODVD;}
|
||||||
if (sscanf (line, "%d:%d:%d.%d,%d:%d:%d.%d", &i, &i, &i, &i, &i, &i, &i, &i)==8)
|
if (sscanf (line, "%d:%d:%d.%d,%d:%d:%d.%d", &i, &i, &i, &i, &i, &i, &i, &i)==8)
|
||||||
{sub_uses_time=1;return 1;}
|
{sub_uses_time=1;return SUB_SUBRIP;}
|
||||||
if (sscanf (line, "%d:%d:%d,%d --> %d:%d:%d,%d", &i, &i, &i, &i, &i, &i, &i, &i)==8)
|
if (sscanf (line, "%d:%d:%d,%d --> %d:%d:%d,%d", &i, &i, &i, &i, &i, &i, &i, &i)==8)
|
||||||
{sub_uses_time=1;return 2;}
|
{sub_uses_time=1;return SUB_SUBVIEWER;}
|
||||||
if (strstr (line, "<SAMI>"))
|
if (strstr (line, "<SAMI>"))
|
||||||
{sub_uses_time=1; return 3;}
|
{sub_uses_time=1; return SUB_SAMI;}
|
||||||
if (sscanf (line, "%d:%d:%d:", &i, &i, &i )==3)
|
if (sscanf (line, "%d:%d:%d:", &i, &i, &i )==3)
|
||||||
{sub_uses_time=1;return 4;}
|
{sub_uses_time=1;return SUB_VPLAYER;}
|
||||||
//TODO: just checking if first line of sub starts with "<" is WAY
|
//TODO: just checking if first line of sub starts with "<" is WAY
|
||||||
// too weak test for RT
|
// too weak test for RT
|
||||||
// Please someone who knows the format of RT... FIX IT!!!
|
// Please someone who knows the format of RT... FIX IT!!!
|
||||||
// It may conflict with other sub formats in the future (actually it doesn't)
|
// It may conflict with other sub formats in the future (actually it doesn't)
|
||||||
if ( *line == '<' )
|
if ( *line == '<' )
|
||||||
{sub_uses_time=1;return 5;}
|
{sub_uses_time=1;return SUB_RT;}
|
||||||
|
|
||||||
if (!memcmp(line, "Dialogue: Marked", 16))
|
if (!memcmp(line, "Dialogue: Marked", 16))
|
||||||
{sub_uses_time=1; return 6;}
|
{sub_uses_time=1; return SUB_SSA;}
|
||||||
if (sscanf (line, "%d,%d,\"%c", &i, &i, (char *) &i) == 3)
|
if (sscanf (line, "%d,%d,\"%c", &i, &i, (char *) &i) == 3)
|
||||||
{sub_uses_time=0;return 7;}
|
{sub_uses_time=0;return SUB_DUNNOWHAT;}
|
||||||
if (sscanf (line, "FORMAT=%d", &i) == 1)
|
if (sscanf (line, "FORMAT=%d", &i) == 1)
|
||||||
{sub_uses_time=0; return 8;}
|
{sub_uses_time=0; return SUB_MPSUB;}
|
||||||
if (sscanf (line, "FORMAT=TIM%c", &p)==1 && p=='E')
|
if (sscanf (line, "FORMAT=TIM%c", &p)==1 && p=='E')
|
||||||
{sub_uses_time=1; return 8;}
|
{sub_uses_time=1; return SUB_MPSUB;}
|
||||||
if (strstr (line, "-->>"))
|
if (strstr (line, "-->>"))
|
||||||
{sub_uses_time=0; return 9;}
|
{sub_uses_time=0; return SUB_MPSUB;}
|
||||||
}
|
}
|
||||||
|
|
||||||
return -1; // too many bad lines
|
return SUB_INVALID; // too many bad lines
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef DUMPSUBS
|
#ifdef DUMPSUBS
|
||||||
@ -581,7 +576,7 @@ subtitle* sub_read_file (char *filename) {
|
|||||||
{
|
{
|
||||||
sub_read_line_microdvd,
|
sub_read_line_microdvd,
|
||||||
sub_read_line_subrip,
|
sub_read_line_subrip,
|
||||||
sub_read_line_third,
|
sub_read_line_subviewer,
|
||||||
sub_read_line_sami,
|
sub_read_line_sami,
|
||||||
sub_read_line_vplayer,
|
sub_read_line_vplayer,
|
||||||
sub_read_line_rt,
|
sub_read_line_rt,
|
||||||
@ -595,7 +590,7 @@ subtitle* sub_read_file (char *filename) {
|
|||||||
fd=fopen (filename, "r"); if (!fd) return NULL;
|
fd=fopen (filename, "r"); if (!fd) return NULL;
|
||||||
|
|
||||||
sub_format=sub_autodetect (fd);
|
sub_format=sub_autodetect (fd);
|
||||||
if (sub_format==-1) {printf ("SUB: Could not determine file format\n");return NULL;}
|
if (sub_format==SUB_INVALID) {printf ("SUB: Could not determine file format\n");return NULL;}
|
||||||
printf ("SUB: Detected subtitle file format: %d\n",sub_format);
|
printf ("SUB: Detected subtitle file format: %d\n",sub_format);
|
||||||
|
|
||||||
rewind (fd);
|
rewind (fd);
|
||||||
|
23
subreader.h
23
subreader.h
@ -5,12 +5,23 @@
|
|||||||
extern int sub_uses_time;
|
extern int sub_uses_time;
|
||||||
extern int sub_errs;
|
extern int sub_errs;
|
||||||
extern int sub_num; // number of subtitle structs
|
extern int sub_num; // number of subtitle structs
|
||||||
extern int sub_format; // 0 for microdvd
|
|
||||||
// 1 for SubRip
|
// subtitle formats
|
||||||
// 2 for the third format
|
#define SUB_INVALID -1
|
||||||
// 3 for SAMI (smi)
|
#define SUB_MICRODVD 0
|
||||||
// 4 for vplayer format
|
#define SUB_SUBRIP 1
|
||||||
// other stuff in subreader.c
|
#define SUB_SUBVIEWER 2
|
||||||
|
#define SUB_SAMI 3
|
||||||
|
#define SUB_VPLAYER 4
|
||||||
|
#define SUB_RT 5
|
||||||
|
#define SUB_SSA 6
|
||||||
|
#define SUB_DUNNOWHAT 7 // FIXME what format is it ?
|
||||||
|
#define SUB_MPSUB 8
|
||||||
|
#define SUB_AQTITLE 9
|
||||||
|
|
||||||
|
// One of the SUB_* constant above
|
||||||
|
extern int sub_format;
|
||||||
|
|
||||||
#define SUB_MAX_TEXT 5
|
#define SUB_MAX_TEXT 5
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
|
Loading…
Reference in New Issue
Block a user