The av_sscanf() will filter lines like "Scenarist_SCC V1.0" out. Signed-off-by: Andreas Rheinhardt <andreas.rheinha...@outlook.com> --- libavformat/sccdec.c | 2 -- 1 file changed, 2 deletions(-)
diff --git a/libavformat/sccdec.c b/libavformat/sccdec.c index 1861a99aad..efd6024001 100644 --- a/libavformat/sccdec.c +++ b/libavformat/sccdec.c @@ -88,8 +88,6 @@ static int scc_read_header(AVFormatContext *s) break; continue; } - if (!strncmp(line, "Scenarist_SCC V1.0", 18)) - continue; if (av_sscanf(line, "%d:%d:%d%*[:;]%d", &hh, &mm, &ss, &fs) != 4) continue; -- 2.30.2 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".