Applied new fdk patch

This commit is contained in:
Daniel Stankewitz 2018-09-04 15:33:00 +02:00 committed by GitHub
parent 92f8d70f68
commit 0d55908cb0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -115,6 +115,13 @@ elif [ "$STEP" == "ffmpeg" ]; then
echo "### Applying patches ..." echo "### Applying patches ..."
cd $SRC/ffmpeg cd $SRC/ffmpeg
patch -N -p1 --dry-run --silent -i ../../patches/0002-patch-ffmpeg-to-new-fdk-api.patch
if [ $? -eq 0 ];
then
patch -N -p1 -i ../../0002-patch-ffmpeg-to-new-fdk-api.patch
fi
patch -N -p1 --dry-run --silent -i ../../patches/0001-dynamic-loading-of-shared-fdk-aac-library.patch patch -N -p1 --dry-run --silent -i ../../patches/0001-dynamic-loading-of-shared-fdk-aac-library.patch
if [ $? -eq 0 ]; if [ $? -eq 0 ];
then then