[FFmpeg-devel] [PATCH] Adobe HTTP Dynamic Streaming (HDS) demuxer improvements

Carl Eugen Hoyos cehoyos at ag.or.at
Tue Apr 28 15:00:17 CEST 2015


Gorilla Maguila <gorilla.maguila <at> gmail.com> writes:

> +static int hds_probe(AVProbeData *p)
> +{
> +    if(p->filename && av_stristr(p->filename, ".f4m"))
> +        return AVPROBE_SCORE_MAX;
> +    return 0;
> +}

Remove this function, instead add ".f4m" as 
.extentions to the AVInputFormat.

Carl Eugen



More information about the ffmpeg-devel mailing list