2017-11-06 0:39 GMT+01:00 Aurelien Jacobs <au...@gnuage.org>:

> +static int aptx_probe(AVProbeData *p)
> +{
> +    int len, score = 0;
> +    if (!p || !p->filename)
> +        return 0;
> +    len = strlen(p->filename);
> +    if (len > 5 && !strcmp(&p->filename[len-4], ".aptx"))
> +        score = AVPROBE_SCORE_EXTENSION;
> +    return score;
> +}

Just remove the function;-)

Carl Eugen
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Reply via email to