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
_______________________________________________
FFmpeg-soc mailing list
[email protected]
http://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc