Commit 52e563bb authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/cavsvideodec: Fix probing when the file extension is avs

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 345f2234
...@@ -61,7 +61,7 @@ static int cavsvideo_probe(AVProbeData *p) ...@@ -61,7 +61,7 @@ static int cavsvideo_probe(AVProbeData *p)
} }
} }
if(seq && seq*9<=pic*10) if(seq && seq*9<=pic*10)
return AVPROBE_SCORE_EXTENSION; return AVPROBE_SCORE_EXTENSION+1;
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