]> git.sesse.net Git - ffmpeg/commitdiff
avformat/webvttdec: Accept \r as newline
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Sat, 20 Jun 2020 05:06:04 +0000 (07:06 +0200)
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Fri, 26 Jun 2020 05:48:10 +0000 (07:48 +0200)
After parsing the end timestamp of a WebVTT cue block, the current code
skips everything after the start of the timestamp that is not a \t, ' '
or \n and treats what is next as the start of a WebVTT cue settings list.
Yet if there is no such list, but a single \r, this will skip a part of
the cue payload (namely everything until the first occurence of \t, ' '
or \n) and treat what has not been skipped as the beginning of the
WebVTT cue settings list that extends until the next \r or \n (or the
end).

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
libavformat/webvttdec.c

index bd3d45b3829ec1ba6954646badc15d4efad194b5..8d2fdfed37dc83036d5318011a1579819f62fd88 100644 (file)
@@ -125,7 +125,7 @@ static int webvtt_read_header(AVFormatContext *s)
             break;
 
         /* optional cue settings */
-        p += strcspn(p, "\n\t ");
+        p += strcspn(p, "\n\r\t ");
         while (*p == '\t' || *p == ' ')
             p++;
         settings = p;