[FFmpeg-soc] [soc]: r1907 - in libavfilter: Makefile allfilters.c

Diego Biurrun diego at biurrun.de
Wed Feb 13 01:48:20 CET 2008


On Wed, Feb 13, 2008 at 01:03:11AM +0100, Aurelien Jacobs wrote:
> On Tue, 12 Feb 2008 21:51:02 +0100 (CET)
> vitor <subversion at mplayerhq.hu> wrote:
> 
> > Log:
> > Fix compilation of vsrc_movie
> > 
> > --- libavfilter/allfilters.c	(original)
> > +++ libavfilter/allfilters.c	Tue Feb 12 21:51:02 2008
> > @@ -57,5 +57,6 @@ void avfilter_register_all(void)
> >  
> > -    REGISTER_VSRC(MOVIE,movie);
> > +    if (ENABLE_AVFILTER_LAVF)
> > +        REGISTER_VSRC(MOVIE,movie);
> 
> It's not very nice, and IMO, not needed.
> I think ENABLE_VSRC_MOVIE should never be true when
> ENABLE_AVFILTER_LAVF is not true. Else, there is a
> bug in the configure script.

Shouldn't be hard to do, just check how configure sets the dependencies
for single demuxers, etc.

Diego



More information about the FFmpeg-soc mailing list