[FFmpeg-cvslog] avformat/rsd: increase probe score, as misdetections are fixed

Michael Niedermayer git at videolan.org
Wed Nov 6 11:58:47 CET 2013


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Wed Nov  6 11:51:16 2013 +0100| [7b7697646b9b0effa02c1d318f2f76d56f98f8d2] | committer: Michael Niedermayer

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

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7b7697646b9b0effa02c1d318f2f76d56f98f8d2
---

 libavformat/rsd.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/rsd.c b/libavformat/rsd.c
index 7fad3e6..e9d2b79 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)



More information about the ffmpeg-cvslog mailing list