You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avformat/alp: tweak probe function to return MAX-1
Signed-off-by: Zane van Iperen <zane@zanevaniperen.com>
This commit is contained in:
committed by
Carl Eugen Hoyos
parent
608b8a8c82
commit
d99f3dc6b2
@@ -51,7 +51,7 @@ static int alp_probe(const AVProbeData *p)
|
|||||||
if (strncmp("ADPCM", p->buf + 8, 6) != 0)
|
if (strncmp("ADPCM", p->buf + 8, 6) != 0)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
return AVPROBE_SCORE_EXTENSION + 1;
|
return AVPROBE_SCORE_MAX - 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int alp_read_header(AVFormatContext *s)
|
static int alp_read_header(AVFormatContext *s)
|
||||||
|
Reference in New Issue
Block a user