diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-11-06 11:51:16 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-11-06 11:57:57 +0100 |
commit | 7b7697646b9b0effa02c1d318f2f76d56f98f8d2 (patch) | |
tree | 75082172c9932c82275fa0afc7bc61b2e94a1a79 /libavformat/rsd.c | |
parent | 50a3c4c5d2634b5d4076a5b7c099729cbd59ac45 (diff) | |
download | ffmpeg-7b7697646b9b0effa02c1d318f2f76d56f98f8d2.tar.gz |
avformat/rsd: increase probe score, as misdetections are fixed
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/rsd.c')
-rw-r--r-- | libavformat/rsd.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) |