Commit 7b769764 authored by Michael Niedermayer's avatar Michael Niedermayer

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

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 50a3c4c5
...@@ -49,7 +49,7 @@ static int rsd_probe(AVProbeData *p) ...@@ -49,7 +49,7 @@ static int rsd_probe(AVProbeData *p)
return 1; return 1;
if (AV_RL32(p->buf + 16) > 8*48000 || !AV_RL32(p->buf + 16)) if (AV_RL32(p->buf + 16) > 8*48000 || !AV_RL32(p->buf + 16))
return 1; return 1;
return AVPROBE_SCORE_EXTENSION; return AVPROBE_SCORE_MAX;
} }
static int rsd_read_header(AVFormatContext *s) static int rsd_read_header(AVFormatContext *s)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment