Commit ac5565d8 authored by Michael Niedermayer's avatar Michael Niedermayer

file extension based probe is max/2

Originally committed as revision 8679 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 65a00bd6
...@@ -743,7 +743,7 @@ static int nsv_probe(AVProbeData *p) ...@@ -743,7 +743,7 @@ static int nsv_probe(AVProbeData *p)
} }
/* so we'll have more luck on extension... */ /* so we'll have more luck on extension... */
if (match_ext(p->filename, "nsv")) if (match_ext(p->filename, "nsv"))
return AVPROBE_SCORE_MAX-20; return AVPROBE_SCORE_MAX/2;
/* FIXME: add mime-type check */ /* FIXME: add mime-type check */
return 0; return 0;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment