[FFmpeg-soc] avfilter Makefile

Vitor vitor1001 at gmail.com
Tue Oct 23 23:25:16 CEST 2007


Hi

Jeremy Mordkoff wrote:
> After applying the diffs, I got a top level Makefile with this:
> 
>  
> 
> ifeq ($(CONFIG_SWSCALER),yes)
> 
>                 $(MAKE) -C libswscale  all
> 
> ifeq ($(CONFIG_AVFILTER),yes)
> 
>                 $(MAKE) -C libavfilter all
> 
> endif
> 
> endif
> 
>  
> 
> and it would not link because it never built libavfilter.
> 
>  
> 
> I changed it to
> 
> ifeq ($(CONFIG_SWSCALER),yes)
> 
>                 $(MAKE) -C libswscale  all
> 
> endif
> 
> ifeq ($(CONFIG_AVFILTER),yes)
> 
>                 $(MAKE) -C libavfilter all
> 
> endif
> 
>  
> 
> and it builds and runs

Thanks for reporting it. It's the kind of thing that goes unnoticed 
after you built it once... (I'll fix it tomorrow)

> Was this dependency on swscaler  intentional?

Probably not. Bobby?

-Vitor

PS: do not hesitate in reporting any other bugs you found...




More information about the FFmpeg-soc mailing list