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

Aurelien Jacobs aurel at gnuage.org
Mon Nov 6 02:22:17 EET 2017


On Mon, Nov 06, 2017 at 12:51:19AM +0100, Carl Eugen Hoyos wrote:
> 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;-)

Indeed, I don't know how I ended up writing this...
I will remove it.

--
Aurel


More information about the ffmpeg-devel mailing list