[FFmpeg-soc] [soc]: r3756 - in libavfilter: README checkout.sh
stefano
subversion at mplayerhq.hu
Thu Oct 2 21:16:38 CEST 2008
Author: stefano
Date: Thu Oct 2 21:16:37 2008
New Revision: 3756
Log:
Add the checkout.sh script and update the README file accordingly.
Added:
libavfilter/checkout.sh (contents, props changed)
Modified:
libavfilter/README
Modified: libavfilter/README
==============================================================================
--- libavfilter/README (original)
+++ libavfilter/README Thu Oct 2 21:16:37 2008
@@ -2,15 +2,10 @@ This is the libavfilter SoC project!
Here is what to do to try it out:
-1) download current ffmpeg SVN
-2) put the directory containing this README in an unrelated directory and copy
- all the files to the libavfilter/ directory of current SVN, overwriting
- allcodecs.c and Makefile.
-3) apply the patches under libavfilter/diffs to the main ffmpeg source tree
- in sequential order
-4) run configure with --enable-avfilter
-5) make
-6) run it!
+1) execute the checkout.sh script
+2) change directory to ffmpeg and run configure with --enable-avfilter
+3) make
+4) run it!
WRITING FILTERS:
Added: libavfilter/checkout.sh
==============================================================================
--- (empty file)
+++ libavfilter/checkout.sh Thu Oct 2 21:16:37 2008
@@ -0,0 +1,10 @@
+#! /bin/sh
+
+echo "checking out pristine ffmpeg"
+svn checkout svn://svn.mplayerhq.hu/ffmpeg/trunk/ ffmpeg -r15000
+
+echo "patching ffmpeg"
+for diff in $(ls $(pwd)/diffs/*.diff); do patch -d ffmpeg -p0 -i $diff; done
+
+echo "copying files to libavfilter"
+find -maxdepth 1 -type f -not -name $(basename $0) -exec cp {} ffmpeg/libavfilter \;
More information about the FFmpeg-soc
mailing list