OSDN Git Service

avformat/rsd: increase probe score, as misdetections are fixed
authorMichael Niedermayer <michaelni@gmx.at>
Wed, 6 Nov 2013 10:51:16 +0000 (11:51 +0100)
committerMichael Niedermayer <michaelni@gmx.at>
Wed, 6 Nov 2013 10:57:57 +0000 (11:57 +0100)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavformat/rsd.c

index 7fad3e6..e9d2b79 100644 (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)