From 7b7697646b9b0effa02c1d318f2f76d56f98f8d2 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Wed, 6 Nov 2013 11:51:16 +0100 Subject: [PATCH] avformat/rsd: increase probe score, as misdetections are fixed Signed-off-by: Michael Niedermayer --- libavformat/rsd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/rsd.c b/libavformat/rsd.c index 7fad3e6bbc..e9d2b79d46 100644 --- a/libavformat/rsd.c +++ b/libavformat/rsd.c @@ -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)