1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

Merge pull request #763 from HungMingWu/develop

Replace ffmpeg version from 2.1.1 to 3.2.4
This commit is contained in:
winlin 2017-02-18 14:04:39 +08:00 committed by GitHub
commit 711b58e0b2
6 changed files with 25 additions and 13 deletions

Binary file not shown.

BIN
trunk/3rdparty/ffmpeg-3.2.4.zip vendored Normal file

Binary file not shown.

View file

@ -0,0 +1,13 @@
--- configure 2017-02-10 21:25:25.000000000 +0800
+++ ../ffmpeg-3.2.4-patch/configure 2017-02-13 22:39:22.676288196 +0800
@@ -5739,7 +5739,9 @@
enabled libsnappy && require snappy snappy-c.h snappy_compress -lsnappy
enabled libsoxr && require libsoxr soxr.h soxr_create -lsoxr && LIBSOXR="-lsoxr"
enabled libssh && require_pkg_config libssh libssh/sftp.h sftp_init
-enabled libspeex && require_pkg_config speex speex/speex.h speex_decoder_init -lspeex
+enabled libspeex && { use_pkg_config speex speex/speex.h speex_decoder_init -lspeex ||
+ { require libspeex speex/speex.h speex_decoder_init -lspeex &&
+ warn "using libspeex without pkg-config"; } }
enabled libtesseract && require_pkg_config tesseract tesseract/capi.h TessBaseAPICreate
enabled libtheora && require libtheora theora/theoraenc.h th_info_init -ltheoraenc -ltheoradec -logg
enabled libtwolame && require libtwolame twolame.h twolame_init -ltwolame &&

View file

@ -13,7 +13,7 @@ openssl-1.0.1f.zip
CherryPy-3.2.4.zip CherryPy-3.2.4.zip
sample api server for srs. sample api server for srs.
ffmpeg-2.1.1.tar.gz ffmpeg-3.2.4.tar.gz
yasm-1.2.0.tar.gz yasm-1.2.0.tar.gz
lame-3.99.5.tar.gz lame-3.99.5.tar.gz
speex-1.2rc1.zip speex-1.2rc1.zip
@ -45,7 +45,7 @@ links:
http://sourceforge.net/projects/state-threads http://sourceforge.net/projects/state-threads
ffmpeg: ffmpeg:
http://ffmpeg.org/ http://ffmpeg.org/
http://ffmpeg.org/releases/ffmpeg-2.1.1.tar.gz http://ffmpeg.org/releases/ffmpeg-3.2.4.tar.gz
x264: x264:
http://www.videolan.org/ http://www.videolan.org/
ftp://ftp.videolan.org/pub/videolan/x264/snapshots/x264-snapshot-20131129-2245-stable.tar.bz2 ftp://ftp.videolan.org/pub/videolan/x264/snapshots/x264-snapshot-20131129-2245-stable.tar.bz2

View file

@ -84,19 +84,18 @@ else
ret=$?; if [[ 0 -ne ${ret} ]]; then echo "build x264 failed"; exit 1; fi ret=$?; if [[ 0 -ne ${ret} ]]; then echo "build x264 failed"; exit 1; fi
fi fi
# ffmpeg-2.1.1 # ffmpeg-3.2.4
if [[ -f ${ff_release_dir}/bin/ffmpeg ]]; then if [[ -f ${ff_release_dir}/bin/ffmpeg ]]; then
echo "ffmpeg-2.1.1 is ok" echo "ffmpeg-3.2.4 is ok"
else else
echo "build ffmpeg-2.1.1" echo "build ffmpeg-3.2.4"
cd $ff_current_dir && cd $ff_current_dir &&
rm -rf ffmpeg-2.1.1 && unzip -q ${ff_src_dir}/ffmpeg-2.1.1.zip && rm -rf ffmpeg-3.2.4 && unzip -q ${ff_src_dir}/ffmpeg-3.2.4.zip &&
echo "remove all so to force the ffmpeg to build in static" && echo "remove all so to force the ffmpeg to build in static" &&
rm -f ${ff_release_dir}/lib/*.so* && rm -f ${ff_release_dir}/lib/*.so* &&
echo "export the dir to enable the build command canbe use." && echo "export the dir to enable the build command canbe use." &&
export ffmpeg_exported_release_dir=${ff_release_dir} && export ffmpeg_exported_release_dir=${ff_release_dir} &&
cd ffmpeg-2.1.1 && cd ffmpeg-3.2.4 && patch -p0 <../../../3rdparty/patches/6.ffmpeg.speex.patch && ./configure \
./configure \
--enable-gpl --enable-nonfree \ --enable-gpl --enable-nonfree \
--yasmexe=${ff_yasm_bin} \ --yasmexe=${ff_yasm_bin} \
--prefix=${ff_release_dir} --cc= \ --prefix=${ff_release_dir} --cc= \

View file

@ -656,13 +656,13 @@ if [ $SRS_SSL = YES ]; then
fi fi
##################################################################################### #####################################################################################
# live transcoding, ffmpeg-2.1, x264-core138, lame-3.99.5, libaacplus-2.0.2. # live transcoding, ffmpeg-3.2.4, x264-core138, lame-3.99.5, libaacplus-2.0.2.
##################################################################################### #####################################################################################
if [ $SRS_FFMPEG_TOOL = YES ]; then if [ $SRS_FFMPEG_TOOL = YES ]; then
if [[ -f ${SRS_OBJS}/ffmpeg/bin/ffmpeg ]]; then if [[ -f ${SRS_OBJS}/ffmpeg/bin/ffmpeg ]]; then
echo "The ffmpeg-2.1 is ok."; echo "ffmpeg-3.2.4 is ok.";
else else
echo "Building ffmpeg-2.1."; echo "build ffmpeg-3.2.4";
( (
cd ${SRS_OBJS} && pwd_dir=`pwd` && cd ${SRS_OBJS} && pwd_dir=`pwd` &&
rm -rf ffmepg.src && mkdir -p ffmpeg.src && cd ffmpeg.src && rm -rf ffmepg.src && mkdir -p ffmpeg.src && cd ffmpeg.src &&
@ -671,8 +671,8 @@ if [ $SRS_FFMPEG_TOOL = YES ]; then
) )
fi fi
# check status # check status
ret=$?; if [[ $ret -ne 0 ]]; then echo "Build ffmpeg-2.1 failed, ret=$ret"; exit $ret; fi ret=$?; if [[ $ret -ne 0 ]]; then echo "build ffmpeg-3.2.4 failed, ret=$ret"; exit $ret; fi
if [ ! -f ${SRS_OBJS}/ffmpeg/bin/ffmpeg ]; then echo "Build ffmpeg-2.1 failed."; exit -1; fi if [ ! -f ${SRS_OBJS}/ffmpeg/bin/ffmpeg ]; then echo "build ffmpeg-3.2.4 failed."; exit -1; fi
fi fi
##################################################################################### #####################################################################################