[FFmpeg-devel] [PATCH] avformat/alp: tweak probe function to return MAX-1

Carl Eugen Hoyos ceffmpeg at gmail.com
Mon Mar 9 14:43:15 EET 2020


Am Mo., 9. März 2020 um 12:55 Uhr schrieb Zane van Iperen
<zane at zanevaniperen.com>:
>
> Signed-off-by: Zane van Iperen <zane at zanevaniperen.com>
> ---
>  libavformat/alp.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/libavformat/alp.c b/libavformat/alp.c
> index c0c7905380..4c2e8f0652 100644
> --- a/libavformat/alp.c
> +++ b/libavformat/alp.c
> @@ -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;

Patch applied.

Thank you, Carl Eugen


More information about the ffmpeg-devel mailing list