Commit d99f3dc6 authored by Zane van Iperen's avatar Zane van Iperen Committed by Carl Eugen Hoyos

avformat/alp: tweak probe function to return MAX-1

Signed-off-by: 's avatarZane van Iperen <zane@zanevaniperen.com>
parent 608b8a8c
......@@ -51,7 +51,7 @@ static int alp_probe(const AVProbeData *p)
if (strncmp("ADPCM", p->buf + 8, 6) != 0)
return 0;
return AVPROBE_SCORE_EXTENSION + 1;
return AVPROBE_SCORE_MAX - 1;
}
static int alp_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