File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 31
31
- FDKAAC_VERSION=0.1.3
32
32
- OGG_VERSION=1.3.2
33
33
- VORBIS_VERSION=1.3.4
34
+ - THEORA_VERSION=1.1.1
34
35
- VPX_VERSION=1.4.0
35
36
matrix :
36
37
- DEPENDENCY_NAME=libav DEPENDENCY_VERSION=11.3 ENABLE_COVERAGE=true
Original file line number Diff line number Diff line change @@ -114,6 +114,19 @@ if [ -z ${TRAVIS_JOB_ID} ] || [ ! -d "${DEPENDENCY_INSTALL_PATH}/lib/" ]; then
114
114
make install && \
115
115
rm -rf ${DIR}
116
116
117
+ # 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}
129
+
117
130
# libvpx
118
131
# https://trac.ffmpeg.org/ticket/4956
119
132
echo " "
@@ -144,7 +157,7 @@ if [ -z ${TRAVIS_JOB_ID} ] || [ ! -d "${DEPENDENCY_INSTALL_PATH}/lib/" ]; then
144
157
export RELEASE_OPTIONS=--disable-debug
145
158
export DEBUG_OPTIONS=--enable-debug=3\ --disable-optimizations\ --disable-sse\ --disable-stripping
146
159
export LICENSING_OPTIONS=--enable-gpl\ --enable-nonfree
147
- export THIRD_PARTIES_OPTIONS=--enable-libfaac\ --enable-libmp3lame\ --enable-libx264\ --enable-libxvid\ --enable-avresample\ --enable-libfdk_aac\ --enable-libvorbis\ --enable-libvpx
160
+ export THIRD_PARTIES_OPTIONS=--enable-libfaac\ --enable-libmp3lame\ --enable-libx264\ --enable-libxvid\ --enable-avresample\ --enable-libfdk_aac\ --enable-libvorbis\ --enable-libtheora \ --enable- libvpx
148
161
149
162
if [[ ${DEPENDENCY_NAME} == " ffmpeg" ]]; then
150
163
You can’t perform that action at this time.
0 commit comments