Skip to content

Commit 2e61259

Browse files
author
Clement Champetier
committed
Merge branch 'develop' of https://github.com/avTranscoder/avTranscoder into dev_transcoderUseComplexFilterToMapAudio
2 parents f05574b + dfe757e commit 2e61259

File tree

2 files changed

+16
-15
lines changed

2 files changed

+16
-15
lines changed

tools/travis/linux.install.deps.sh

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ if [ -z ${TRAVIS_JOB_ID} ] || [ ! -d "${DEPENDENCY_INSTALL_PATH}/lib/" ]; then
5757
curl -L -Os http://downloads.sourceforge.net/faac/faac-${FAAC_VERSION}.tar.gz && \
5858
tar xzf faac-${FAAC_VERSION}.tar.gz && \
5959
cd faac-${FAAC_VERSION} && \
60-
#sed -i '126d' common/mp4v2/mpeg4ip.h && \
60+
sed -i '126d' common/mp4v2/mpeg4ip.h && \
6161
./bootstrap && \
6262
./configure --prefix="${DEPENDENCY_INSTALL_PATH}" --bindir="${DEPENDENCY_INSTALL_PATH}/bin" --enable-shared --with-mp4v2=no && \
6363
make -k > ${DEPENDENCY_LOG_FILE} 2>&1 && \
@@ -115,17 +115,18 @@ if [ -z ${TRAVIS_JOB_ID} ] || [ ! -d "${DEPENDENCY_INSTALL_PATH}/lib/" ]; then
115115
rm -rf ${DIR}
116116

117117
# libtheora
118-
echo ""
119-
echo "Building libtheora (${THEORA_VERSION})"
120-
DIR=$(mktemp -d libtheoraXXX) && cd ${DIR} && \
121-
curl -O http://downloads.xiph.org/releases/theora/libtheora-${THEORA_VERSION}.tar.bz2 && \
122-
tar xvjf libtheora-${THEORA_VERSION}.tar.bz2 && \
123-
cd libtheora-${THEORA_VERSION} && \
124-
./configure --prefix="${DEPENDENCY_INSTALL_PATH}" && \
125-
make -k > ${DEPENDENCY_LOG_FILE} 2>&1 && \
126-
make install && \
127-
make check && \
128-
rm -rf ${DIR}
118+
# Compilation error with clang
119+
# echo ""
120+
# echo "Building libtheora (${THEORA_VERSION})"
121+
# DIR=$(mktemp -d libtheoraXXX) && cd ${DIR} && \
122+
# curl -O http://downloads.xiph.org/releases/theora/libtheora-${THEORA_VERSION}.tar.bz2 && \
123+
# tar xvjf libtheora-${THEORA_VERSION}.tar.bz2 && \
124+
# cd libtheora-${THEORA_VERSION} && \
125+
# ./configure --prefix="${DEPENDENCY_INSTALL_PATH}" && \
126+
# make -k > ${DEPENDENCY_LOG_FILE} 2>&1 && \
127+
# make install && \
128+
# make check && \
129+
# rm -rf ${DIR}
129130

130131
# libvpx
131132
# https://trac.ffmpeg.org/ticket/4956
@@ -141,7 +142,7 @@ if [ -z ${TRAVIS_JOB_ID} ] || [ ! -d "${DEPENDENCY_INSTALL_PATH}/lib/" ]; then
141142
rm -rf ${DIR}
142143

143144
# libopus
144-
# Compile error on OSX
145+
# Compilation error on OSX
145146
# echo ""
146147
# echo "Building libopus (last version)"
147148
# DIR=$(mktemp -d libopusXXX) && cd ${DIR} && \
@@ -157,7 +158,7 @@ if [ -z ${TRAVIS_JOB_ID} ] || [ ! -d "${DEPENDENCY_INSTALL_PATH}/lib/" ]; then
157158
export RELEASE_OPTIONS=--disable-debug
158159
export DEBUG_OPTIONS=--enable-debug=3\ --disable-optimizations\ --disable-sse\ --disable-stripping
159160
export LICENSING_OPTIONS=--enable-gpl\ --enable-nonfree
160-
export THIRD_PARTIES_OPTIONS=--enable-libfaac\ --enable-libmp3lame\ --enable-libx264\ --enable-libxvid\ --enable-avresample\ --enable-libfdk_aac\ --enable-libvorbis\ --enable-libtheora\ --enable-libvpx
161+
export THIRD_PARTIES_OPTIONS=--enable-libfaac\ --enable-libmp3lame\ --enable-libx264\ --enable-libxvid\ --enable-avresample\ --enable-libfdk_aac\ --enable-libvorbis\ --enable-libvpx
161162

162163
if [[ ${DEPENDENCY_NAME} == "ffmpeg" ]]; then
163164

tools/travis/osx.install.deps.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ pip install nose
1616
brew install freeglut
1717

1818
# Main dependency
19-
./tools/travis/linux.install.deps.sh
19+
brew install ${DEPENDENCY_NAME}

0 commit comments

Comments
 (0)