Mercurial > mplayer.hg
changeset 932:c3073fae3120
more stabile
author | laaz |
---|---|
date | Fri, 01 Jun 2001 20:05:12 +0000 |
parents | faf065bed46f |
children | f5dbe3470eae |
files | subreader.c |
diffstat | 1 files changed, 8 insertions(+), 10 deletions(-) [+] |
line wrap: on
line diff
--- a/subreader.c Fri Jun 01 18:52:12 2001 +0000 +++ b/subreader.c Fri Jun 01 20:05:12 2001 +0000 @@ -110,9 +110,11 @@ char *sub_readtext(char *source, char **dest) { int len=0; - char *p; + char *p=source; - for (p=source;*p!='\r' && *p!='\n' && *p!='|'; p++,len++); + while ( !eol(*p) && *p!= '|' ) { + p++,len++; + } *dest= (char *)malloc (len+1); if (!dest) {return ERR;} @@ -136,21 +138,17 @@ do { if (!fgets (line, 1000, fd)) return NULL; - } while (*line=='\n' || *line == '\r' || !*line); - - if (sscanf (line, "{%ld}{%ld}%s", &(current->start), &(current->end),line2) <2) {return ERR;} + } while (sscanf (line, "{%ld}{%ld}%[^\r\n]", &(current->start), &(current->end),line2) <3); - p=line; - while (*p++!='}'); - while (*p++!='}'); + p=line2; next=p, i=0; - while ((next =sub_readtext (next, &(current->text[i])))) { + while (next =sub_readtext (next, &(current->text[i]))) { if (current->text[i]==ERR) {return ERR;} i++; if (i>=SUB_MAX_TEXT) { printf ("Too many lines in a subtitle\n");current->lines=i;return;} } - current->lines=i+1; + current->lines= ++i; return current; }