[FFmpeg-cvslog] avformat/srtdec: fix number check for the first character

Clément Bœsch git at videolan.org
Thu Oct 8 16:24:57 CEST 2015


ffmpeg | branch: release/2.8 | Clément Bœsch <clement at stupeflix.com> | Thu Oct  1 11:46:05 2015 +0200| [1d9d300d6514de851504255e4eb1e52117c6992f] | committer: Michael Niedermayer

avformat/srtdec: fix number check for the first character
(cherry picked from commit d161a2a72b083c51ec8fad33a29283703f5fd0cc)

Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1d9d300d6514de851504255e4eb1e52117c6992f
---

 libavformat/srtdec.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/srtdec.c b/libavformat/srtdec.c
index b35e50f..fda055b 100644
--- a/libavformat/srtdec.c
+++ b/libavformat/srtdec.c
@@ -49,7 +49,7 @@ static int srt_probe(AVProbeData *p)
     /* Check if the next line matches a SRT timestamp */
     if (ff_subtitles_read_line(&tr, buf, sizeof(buf)) < 0)
         return 0;
-    if (buf[0] >= '0' && buf[1] <= '9' && strstr(buf, " --> ")
+    if (buf[0] >= '0' && buf[0] <= '9' && strstr(buf, " --> ")
         && sscanf(buf, "%*d:%*2d:%*2d%*1[,.]%*3d --> %*d:%*2d:%*2d%*1[,.]%3d", &v) == 1)
         return AVPROBE_SCORE_MAX;
 



More information about the ffmpeg-cvslog mailing list