mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-16 13:26:36 +00:00
scripts: update for gst-ffmpeg -> gst-libav
Now that we have a gst-libav git repository (symlinked to gst-ffmpeg).
This commit is contained in:
parent
4af5e05309
commit
2616e70a8b
2 changed files with 21 additions and 1 deletions
|
@ -36,7 +36,13 @@ BRANCH="master"
|
||||||
GIT_ACCESS="anongit"
|
GIT_ACCESS="anongit"
|
||||||
|
|
||||||
# git modules to clone
|
# git modules to clone
|
||||||
MODULES="gstreamer gst-plugins-base gst-plugins-good gst-plugins-ugly gst-plugins-bad gst-ffmpeg"
|
MODULES="gstreamer gst-plugins-base gst-plugins-good gst-plugins-ugly gst-plugins-bad"
|
||||||
|
|
||||||
|
if test "$BRANCH" != "0.10"; then
|
||||||
|
MODULES="$MODULES gst-libav"
|
||||||
|
else
|
||||||
|
MODULES="$MODULES gst-ffmpeg"
|
||||||
|
fi
|
||||||
|
|
||||||
# note: we use ~/gst because that's what the gst-uninstalled script
|
# note: we use ~/gst because that's what the gst-uninstalled script
|
||||||
# uses by default, so don't just change that to something else
|
# uses by default, so don't just change that to something else
|
||||||
|
|
|
@ -132,6 +132,7 @@ $GST/gstreamer/plugins\
|
||||||
:$GST/gst-plugins-bad/ext\
|
:$GST/gst-plugins-bad/ext\
|
||||||
:$GST/gst-plugins-bad/gst\
|
:$GST/gst-plugins-bad/gst\
|
||||||
:$GST/gst-plugins-bad/sys\
|
:$GST/gst-plugins-bad/sys\
|
||||||
|
:$GST/gst-libav/ext/\
|
||||||
:$GST/gst-ffmpeg/ext/\
|
:$GST/gst-ffmpeg/ext/\
|
||||||
:$GST/gnonlin/gnl/.libs\
|
:$GST/gnonlin/gnl/.libs\
|
||||||
:$GST/gst-openmax/omx/.libs\
|
:$GST/gst-openmax/omx/.libs\
|
||||||
|
@ -190,6 +191,19 @@ export LD_LIBRARY_PATH=$GST/gst-editing-services/ges/.libs:$LD_LIBRARY_PATH
|
||||||
export DYLD_LIBRARY_PATH=$GST/gst-editing-services/ges/.libs:$DYLD_LIBRARY_PATH
|
export DYLD_LIBRARY_PATH=$GST/gst-editing-services/ges/.libs:$DYLD_LIBRARY_PATH
|
||||||
export PATH=$GST/gst-editing-services/tools:$PATH
|
export PATH=$GST/gst-editing-services/tools:$PATH
|
||||||
|
|
||||||
|
if [ -d "$GST/gst-libav" -a -d "$GST/gst-ffmpeg" ]; then
|
||||||
|
echo
|
||||||
|
echo "====================================================================="
|
||||||
|
echo " You have both an uninstalled gst-ffmpeg checkout and a gst-libav"
|
||||||
|
echo " checkout. You need to remove one of those. You should remove"
|
||||||
|
echo
|
||||||
|
echo " $GST/gst-ffmpeg"
|
||||||
|
echo
|
||||||
|
echo " since gst-libav replaces gst-ffmpeg."
|
||||||
|
echo "====================================================================="
|
||||||
|
echo
|
||||||
|
fi
|
||||||
|
|
||||||
# if we got a command, run it, else start a shell
|
# if we got a command, run it, else start a shell
|
||||||
if test ! -z "$1";
|
if test ! -z "$1";
|
||||||
then
|
then
|
||||||
|
|
Loading…
Reference in a new issue