Anton Khirnov <[email protected]> writes: > It's a part of public API. > --- > configure | 3 +-- > libavfilter/Makefile | 2 +- > 2 files changed, 2 insertions(+), 3 deletions(-) > > diff --git a/configure b/configure > index 1c7fb3b..3773960 100755 > --- a/configure > +++ b/configure > @@ -1520,19 +1520,18 @@ yadif_filter_deps="gpl" > > # libraries > avdevice_deps="avcodec avformat" > +avfilter_select="buffer_filter" > avformat_deps="avcodec" > postproc_deps="gpl"
This makes --disable-filter=buffer disable libavfilter entirely, which is probably not what we want. If vsrc_buffer is considered part of the API, it does not make much sense for it to be part of the CONFIG settings at all. Registering it unconditionally, without using the REGISTER_FILTER macro, would do the right thing and also remove it from the configurable list. -- Måns Rullgård [email protected] _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
