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