On Sun, Nov 13, 2016 at 11:11:22PM -0500, Vittorio Giovara wrote: > On Sun, Nov 13, 2016 at 1:27 PM, Diego Biurrun <[email protected]> wrote: > > --- a/libavfilter/avfilter.c > > +++ b/libavfilter/avfilter.c > > @@ -304,7 +304,11 @@ AVFilter *avfilter_get_by_name(const char *name) > > > > while ((f = avfilter_next(f))) > > if (!strcmp(f->name, name)) > > +#if !FF_API_NOCONST_GET_NAME > > return f; > > +#else > > + return (AVFilter *) f; > > +#endif > > > > return NULL; > > } > > I think this FF_API is scheduled for removal in the next bump, if so > might as well endure for a few weeks rather than adding to the history > imo
When is that fabled global bump going to happen? Diego _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
