avformat/rsd: increase probe score, as misdetections are fixed

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2013-11-06 11:51:16 +01:00
parent 50a3c4c5d2
commit 7b7697646b

View File

@ -49,7 +49,7 @@ static int rsd_probe(AVProbeData *p)
return 1;
if (AV_RL32(p->buf + 16) > 8*48000 || !AV_RL32(p->buf + 16))
return 1;
return AVPROBE_SCORE_EXTENSION;
return AVPROBE_SCORE_MAX;
}
static int rsd_read_header(AVFormatContext *s)