[FFmpeg-devel] [PATCH] lavf/srtdec: recognize subtitles starting at event index 0.

Philip Langdale philipl at overt.org
Mon Nov 5 00:15:15 CET 2012


On Sun,  4 Nov 2012 23:22:57 +0100
Clément Bœsch <ubitux at gmail.com> wrote:

> ---
>  libavformat/srtdec.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/libavformat/srtdec.c b/libavformat/srtdec.c
> index 4f5f095..9089331 100644
> --- a/libavformat/srtdec.c
> +++ b/libavformat/srtdec.c
> @@ -32,7 +32,8 @@ static int srt_probe(AVProbeData *p)
>          ptr += 3;  /* skip UTF-8 BOM */
>  
>      for (i=0; i<2; i++) {
> -        if (num == i && sscanf(ptr, "%*d:%*2d:%*2d%*1[,.]%*3d -->
> %*d:%*2d:%*2d%*1[,.]%3d", &v) == 1)
> +        if ((num == i || num + 1 == i)
> +            && sscanf(ptr, "%*d:%*2d:%*2d%*1[,.]%*3d -->
> %*d:%*2d:%*2d%*1[,.]%3d", &v) == 1) return AVPROBE_SCORE_MAX;
>          num = atoi(ptr);
>          ptr += strcspn(ptr, "\n") + 1;

LGTM


--phil


More information about the ffmpeg-devel mailing list