Browse Source

lavf/srtdec: fix indent

tags/n3.1
Rodger Combs 9 years ago
parent
commit
6ee7adb881
No known key found for this signature in database GPG Key ID: E3E54DCDCD3CB843
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/srtdec.c

+ 1
- 1
libavformat/srtdec.c View File

@@ -54,7 +54,7 @@ static int srt_probe(AVProbeData *p)
return 0;
pbuf = buf;
if (buf[0] == '-')
pbuf++;
pbuf++;
if (pbuf[0] >= '0' && pbuf[0] <= '9' && strstr(buf, " --> ")
&& sscanf(buf, "%*d:%*d:%*d%*1[,.]%*d --> %*d:%*d:%*d%*1[,.]%d", &v) == 1)
return AVPROBE_SCORE_MAX;


Loading…
Cancel
Save