aboutsummaryrefslogtreecommitdiff
path: root/lib/Makefile.in
diff options
context:
space:
mode:
authorelupus <elupus@xbmc.org>2011-06-21 00:23:45 +0200
committerelupus <elupus@xbmc.org>2011-06-21 00:23:45 +0200
commit4f7753a65e696b062d48475d1e21498fba47bce4 (patch)
treeebcf6d3c47834d6e145e646e39927806029543d2 /lib/Makefile.in
parent93f657e560241c62006ef78e5d2bdb491f1eebdb (diff)
added: build libavfilter and add dll loader for it
Original Author: CrHasher <farkas.szilard@gmail.com>
Diffstat (limited to 'lib/Makefile.in')
-rw-r--r--lib/Makefile.in10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/Makefile.in b/lib/Makefile.in
index ce4605cf1c..7daced351e 100644
--- a/lib/Makefile.in
+++ b/lib/Makefile.in
@@ -30,6 +30,7 @@ ifneq (@USE_EXTERNAL_FFMPEG@,1)
avcore-0-$(ARCH).so \
avformat-52-$(ARCH).so \
postproc-51-$(ARCH).so \
+ avfilter-1-$(ARCH).so \
swscale-0-$(ARCH).so
endif
@@ -72,6 +73,10 @@ $(SYSDIR)/avformat-52-$(ARCH).so: $(WRAPPER) ffmpeg/libavformat/libavformat.dyli
$(LD) $(LDFLAGS) -alias_list $(WRAPPER_MACH_ALIAS) -o $@ \
$(WRAPPER) ffmpeg/libavformat/*.o $(BUNDLE1_O)
+$(SYSDIR)/avfilter-1-$(ARCH).so: $(WRAPPER) ffmpeg/libavfilter/libavfilter.dylib
+ $(LD) $(LDFLAGS) -alias_list $(WRAPPER_MACH_ALIAS) -o $@ \
+ $(WRAPPER) ffmpeg/libavfilter/*.o $(BUNDLE1_O)
+
ifneq ($(findstring arm,$(ARCH)), arm)
$(SYSDIR)/swscale-0-$(ARCH).so: $(WRAPPER) ffmpeg/libswscale/libswscale.dylib
$(LD) $(LDFLAGS) -alias_list $(WRAPPER_MACH_ALIAS) -o $@ \
@@ -91,6 +96,7 @@ ffmpeg/libavutil/libavutil.dylib : ffmpeg;
ffmpeg/libavcodec/libavcodec.dylib : ffmpeg;
ffmpeg/libavcore/libavcore.dylib : ffmpeg;
ffmpeg/libavformat/libavformat.dylib : ffmpeg;
+ffmpeg/libavformat/libavfilter.dylib : ffmpeg;
ffmpeg/libswscale/libswscale.dylib : ffmpeg;
ffmpeg/libpostproc/libpostproc.dylib : ffmpeg;
ffmpeg:
@@ -110,6 +116,9 @@ $(SYSDIR)/avcore-0-$(ARCH).so: $(WRAPPER) ffmpeg/libavcore/libavcore.so
$(SYSDIR)/avformat-52-$(ARCH).so: $(WRAPPER) ffmpeg/libavformat/libavformat.so
cp ffmpeg/libavformat/libavformat.so $@
+$(SYSDIR)/avfilter-1-$(ARCH).so: $(WRAPPER) ffmpeg/libavfilter/libavfilter.so
+ cp ffmpeg/libavfilter/libavfilter.so $@
+
ifneq ($(ARCH), arm)
$(SYSDIR)/swscale-0-$(ARCH).so: $(WRAPPER) ffmpeg/libswscale/libswscale.so
cp ffmpeg/libswscale/libswscale.so $@
@@ -127,6 +136,7 @@ ffmpeg/libavutil/libavutil.so : ffmpeg;
ffmpeg/libavcodec/libavcodec.so : ffmpeg;
ffmpeg/libavcore/libavcore.so : ffmpeg;
ffmpeg/libavformat/libavformat.so : ffmpeg;
+ffmpeg/libavfilter/libavfilter.so : ffmpeg;
ffmpeg/libswscale/libswscale.so : ffmpeg;
ffmpeg/libpostproc/libpostproc.so : ffmpeg;
ffmpeg: