[FFmpeg-soc] avfilter Makefile

Jeremy Mordkoff jlm at zazzletech.com
Tue Oct 23 22:23:43 CEST 2007


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

 

Was this dependency on swscaler  intentional?

 

JLM

 

 

 

 

____________________

 

Zazzle Technologies, Inc

238 Littleton Road, Suite 200

Westford, MA  01886

 

978-467-1395 x233

 

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.mplayerhq.hu/pipermail/ffmpeg-soc/attachments/20071023/a730b93f/attachment.htm>


More information about the FFmpeg-soc mailing list