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

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit 52e563bb2f)

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2014-06-09 05:17:34 +02:00
parent c2c922460a
commit a45a665991
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ static int cavsvideo_probe(AVProbeData *p)
}
}
if(seq && seq*9<=pic*10)
return AVPROBE_SCORE_EXTENSION;
return AVPROBE_SCORE_EXTENSION+1;
return 0;
}