[FFmpeg-cvslog] jacosub_probe: slightly increase the score to limit misdetection.

Clément Bœsch git at videolan.org
Thu May 31 22:16:21 CEST 2012


ffmpeg | branch: master | Clément Bœsch <ubitux at gmail.com> | Thu May 31 22:12:46 2012 +0200| [303619d3ca9efa0031f6fede7dedeb27fcfb1756] | committer: Clément Bœsch

jacosub_probe: slightly increase the score to limit misdetection.

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

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

diff --git a/libavformat/jacosubdec.c b/libavformat/jacosubdec.c
index 615191e..67f4c37 100644
--- a/libavformat/jacosubdec.c
+++ b/libavformat/jacosubdec.c
@@ -67,7 +67,7 @@ static int jacosub_probe(AVProbeData *p)
             ptr++;
         if (*ptr != '#' && *ptr != '\n') {
             if (timed_line(ptr))
-                return AVPROBE_SCORE_MAX / 2;
+                return AVPROBE_SCORE_MAX/2 + 1;
             return 0;
         }
         ptr += strcspn(ptr, "\n") + 1;



More information about the ffmpeg-cvslog mailing list