[FFmpeg-soc] [soc]: r5873 - libavfilter/checkout.sh
stefano
subversion at mplayerhq.hu
Tue Jul 27 18:28:44 CEST 2010
Author: stefano
Date: Tue Jul 27 18:28:44 2010
New Revision: 5873
Log:
Make checkout.sh copy to ffmpeg/libavfilter the list of files
explicitely stated in the script, rather than all the files
indiscriminately. More robust.
Modified:
libavfilter/checkout.sh
Modified: libavfilter/checkout.sh
==============================================================================
--- libavfilter/checkout.sh Tue Jul 27 18:17:15 2010 (r5872)
+++ libavfilter/checkout.sh Tue Jul 27 18:28:44 2010 (r5873)
@@ -12,4 +12,21 @@ echo "patching ffmpeg"
for diff in $(ls $(pwd)/diffs/*.diff); do patch -d ffmpeg -p0 -i $diff; done
echo "copying files to libavfilter"
-find $(pwd) -maxdepth 1 -type f -not -name $(basename $0) -exec cp {} ffmpeg/libavfilter \;
+cp \
+ vf_clone.c \
+ vf_concatenate.c \
+ vf_drawbox.c \
+ vf_drawtext.c \
+ vf_fade.c \
+ vf_fifo.c \
+ vf_fps.c \
+ vf_hflip.c \
+ vf_negate.c \
+ vf_overlay.c \
+ vf_rotate.c \
+ vf_setpts.c \
+ vf_split.c \
+ vf_transpose.c \
+ vsrc_movie.c \
+ ffmpeg/libavfilter
+
More information about the FFmpeg-soc
mailing list