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

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

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

Reply via email to