mirror of
https://github.com/mpv-player/mpv
synced 2024-12-24 07:42:17 +00:00
subreader: SAMI subs: wrap line if needed
Start a new line if there's no space left to append to the previous one. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@33471 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
dc6fe9692b
commit
27b88a09c5
@ -177,6 +177,8 @@ static subtitle *sub_read_line_sami(stream_t* st, subtitle *current,
|
||||
break;
|
||||
|
||||
case 3: /* get all text until '<' appears */
|
||||
if (p - text >= LINE_LEN)
|
||||
sami_add_line(current, text, &p);
|
||||
if (*s == '\0') break;
|
||||
else if (!strncasecmp (s, "<br>", 4)) {
|
||||
sami_add_line(current, text, &p);
|
||||
|
Loading…
Reference in New Issue
Block a user