forked from bilibili/ijkplayer
-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
29 changed files
with
745 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ build | |
ffmpeg-* | ||
libsoxr-* | ||
openssl-* | ||
libsrt-* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
#! /usr/bin/env bash | ||
# | ||
# Copyright (C) 2013-2014 Zhang Rui <bbcallen@gmail.com> | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
#---------- | ||
UNI_BUILD_ROOT=`pwd` | ||
FF_TARGET=$1 | ||
set -e | ||
set +x | ||
|
||
FF_ACT_ARCHS_32="armv5 armv7a x86" | ||
FF_ACT_ARCHS_64="armv5 armv7a arm64 x86 x86_64" | ||
FF_ACT_ARCHS_ALL=$FF_ACT_ARCHS_64 | ||
|
||
echo_archs() { | ||
echo "====================" | ||
echo "[*] check archs" | ||
echo "====================" | ||
echo "FF_ALL_ARCHS = $FF_ACT_ARCHS_ALL" | ||
echo "FF_ACT_ARCHS = $*" | ||
echo "" | ||
} | ||
|
||
echo_usage() { | ||
echo "Usage:" | ||
echo " compile-libsrt.sh armv5|armv7a|arm64|x86|x86_64" | ||
echo " compile-libsrt.sh all|all32" | ||
echo " compile-libsrt.sh all64" | ||
echo " compile-libsrt.sh clean" | ||
echo " compile-libsrt.sh check" | ||
exit 1 | ||
} | ||
|
||
echo_nextstep_help() { | ||
#---------- | ||
echo "" | ||
echo "--------------------" | ||
echo "[*] Finished" | ||
echo "--------------------" | ||
echo "# to continue to build ffmpeg, run script below," | ||
echo "sh compile-ffmpeg.sh " | ||
echo "# to continue to build ijkplayer, run script below," | ||
echo "sh compile-ijk.sh " | ||
} | ||
|
||
#---------- | ||
case "$FF_TARGET" in | ||
"") | ||
echo_archs armv7a | ||
sh tools/do-compile-libsrt.sh armv7a | ||
;; | ||
armv5|armv7a|arm64|x86|x86_64) | ||
echo_archs $FF_TARGET | ||
sh tools/do-compile-libsrt.sh $FF_TARGET | ||
echo_nextstep_help | ||
;; | ||
all32) | ||
echo_archs $FF_ACT_ARCHS_32 | ||
for ARCH in $FF_ACT_ARCHS_32 | ||
do | ||
sh tools/do-compile-libsrt.sh $ARCH | ||
done | ||
echo_nextstep_help | ||
;; | ||
all|all64) | ||
echo_archs $FF_ACT_ARCHS_64 | ||
for ARCH in $FF_ACT_ARCHS_64 | ||
do | ||
sh tools/do-compile-libsrt.sh $ARCH | ||
done | ||
echo_nextstep_help | ||
;; | ||
clean) | ||
echo_archs FF_ACT_ARCHS_64 | ||
for ARCH in $FF_ACT_ARCHS_ALL | ||
do | ||
if [ -d libsrt-$ARCH ]; then | ||
cd libsrt-$ARCH && git clean -xdf && cd - | ||
fi | ||
done | ||
rm -rf ./build/libsrt-* | ||
;; | ||
check) | ||
echo_archs FF_ACT_ARCHS_ALL | ||
;; | ||
*) | ||
echo_usage | ||
exit 1 | ||
;; | ||
esac |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.