[FFmpeg-devel] [RFC] [PATCH] Cleanup obsoleted libavfilter notes

Diego Biurrun diego
Tue Jan 25 01:03:42 CET 2011


On Mon, Jan 24, 2011 at 10:57:27PM +0100, Stefano Sabatini wrote:
> On date Monday 2011-01-24 22:35:58 +0100, Reinhard Tartler encoded:
> > 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:
> > 
> > --- 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.
> 
> Thanks, applied.

This is not the correct solution.  Just check out the last revision in
Subversion.  You can ignore the error, use a fresh checkout.

Diego



More information about the ffmpeg-devel mailing list