[FFmpeg-devel] [RFC] [PATCH] Cleanup obsoleted libavfilter notes
Reinhard Tartler
siretart
Mon Jan 24 22:35:58 CET 2011
On Mon, Jan 24, 2011 at 22:19:08 (CET), Stefano Sabatini wrote:
> unfortunately from what I can read libavfilter-soc checkout.sh is
> broken due to the missing libswscale:
>
> svn: warning: Error handling externals definition for 'ffmpeg/libswscale':
> svn: warning: URL 'svn://svn.ffmpeg.org/mplayer/trunk/libswscale' at revision 32814 doesn't exist
> Checked out revision 26400.
>
> (I was believing that the checkout was going to work even after the
> git transition, what happened to libswscale SVN?)
checkout.sh is broken, this diff fixes the problem:
Index: checkout.sh
===================================================================
--- checkout.sh (Revision 5945)
+++ checkout.sh (Arbeitskopie)
@@ -1,12 +1,10 @@
#! /bin/sh
echo "checking out pristine ffmpeg"
-svn checkout svn://svn.ffmpeg.org/ffmpeg/trunk/ ffmpeg -r26400
+svn checkout svn://svn.ffmpeg.org/ffmpeg/trunk at 26400 ffmpeg
echo "downloading the corresponding version of swscale"
-cd ffmpeg/libswscale
-svn up -r32676
-cd ../..
+svn checkout svn://svn.ffmpeg.org/mplayer/trunk/libswscale at 32676 ffmpeg/libswscale
echo "patching ffmpeg"
for diff in $(ls $(pwd)/diffs/*.diff); do patch -d ffmpeg -p0 -i $diff; done
the warning remains and I guess this is a bug/limitation in svn.
--
Gruesse/greetings,
Reinhard Tartler, KeyID 945348A4
More information about the ffmpeg-devel
mailing list