mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
Because ffmpeg checks out libswscale via an svn:externals, checking out an old ffmpeg does not check out a correspond...
Original commit message from CVS: 2008-04-14 Andy Wingo <wingo@pobox.com> * autogen.sh: * ffmpegrev (FFMPEG_EXTERNALS_UPDATE): Because ffmpeg checks out libswscale via an svn:externals, checking out an old ffmpeg does not check out a corresponding libswscale. Keep the swscale checkout manually synchronized, then. Update this when you update FFMPEG_REVISION.
This commit is contained in:
parent
a71f35fefe
commit
a93257590c
4 changed files with 19 additions and 1 deletions
|
@ -1,3 +1,12 @@
|
||||||
|
2008-04-14 Andy Wingo <wingo@pobox.com>
|
||||||
|
|
||||||
|
* autogen.sh:
|
||||||
|
* ffmpegrev (FFMPEG_EXTERNALS_UPDATE): Because ffmpeg checks out
|
||||||
|
libswscale via an svn:externals, checking out an old ffmpeg does
|
||||||
|
not check out a corresponding libswscale. Keep the swscale
|
||||||
|
checkout manually synchronized, then. Update this when you update
|
||||||
|
FFMPEG_REVISION.
|
||||||
|
|
||||||
2008-04-06 Sebastian Dröge <slomo@circular-chaos.org>
|
2008-04-06 Sebastian Dröge <slomo@circular-chaos.org>
|
||||||
|
|
||||||
Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
|
Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
|
||||||
|
|
|
@ -22,10 +22,14 @@ then
|
||||||
rm -rf $FFMPEG_CO_DIR
|
rm -rf $FFMPEG_CO_DIR
|
||||||
echo "+ getting ffmpeg from svn"
|
echo "+ getting ffmpeg from svn"
|
||||||
svn -r $FFMPEG_REVISION co $FFMPEG_SVN $FFMPEG_CO_DIR
|
svn -r $FFMPEG_REVISION co $FFMPEG_SVN $FFMPEG_CO_DIR
|
||||||
|
echo "+ updating externals"
|
||||||
|
sh -c "$FFMPEG_EXTERNALS_UPDATE"
|
||||||
else
|
else
|
||||||
# update ffmpeg from its repository
|
# update ffmpeg from its repository
|
||||||
echo "+ updating ffmpeg checkout"
|
echo "+ updating ffmpeg checkout"
|
||||||
svn -r $FFMPEG_REVISION up $FFMPEG_CO_DIR
|
svn -r $FFMPEG_REVISION up $FFMPEG_CO_DIR
|
||||||
|
echo "+ updating externals"
|
||||||
|
sh -c "$FFMPEG_EXTERNALS_UPDATE"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
||||||
Subproject commit fda6da5f2b9b000f7e1df8ffb44a6185ffd9799b
|
Subproject commit f88ff852da7631ad2d0be835763da6d551a63883
|
|
@ -2,3 +2,8 @@
|
||||||
FFMPEG_REVISION=12672
|
FFMPEG_REVISION=12672
|
||||||
FFMPEG_CO_DIR=gst-libs/ext/ffmpeg
|
FFMPEG_CO_DIR=gst-libs/ext/ffmpeg
|
||||||
FFMPEG_SVN=svn://svn.mplayerhq.hu/ffmpeg/trunk
|
FFMPEG_SVN=svn://svn.mplayerhq.hu/ffmpeg/trunk
|
||||||
|
# Because ffmpeg checks out libswscale via an svn:externals, checking
|
||||||
|
# out an old ffmpeg does not check out a corresponding libswscale.
|
||||||
|
# Keep the swscale checkout manually synchronized, then. Update this
|
||||||
|
# when you update FFMPEG_REVISION.
|
||||||
|
FFMPEG_EXTERNALS_UPDATE="cd $FFMPEG_CO_DIR/libswscale && svn up -r '{2008-04-03 00:07:21 +0200}'"
|
||||||
|
|
Loading…
Reference in a new issue