[FFmpeg-devel] [PATCH 2/2] aptx: add raw muxer and demuxer for aptX

Carl Eugen Hoyos ceffmpeg at gmail.com
Mon Nov 6 01:51:19 EET 2017


2017-11-06 0:39 GMT+01:00 Aurelien Jacobs <aurel at 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


More information about the ffmpeg-devel mailing list