Skip to content

Commit 49a26b4

Browse files
committed
3.1.0
Fix a severe bug caused by the incorrect theora version.
1 parent ef77ace commit 49a26b4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

install-ffmpeg-4_4.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,9 @@ sudo make install || fail
134134
# Install dependencies: libtheora
135135
msg "Install theora 1.1.1."
136136
cd $SOURCE_PATH || fail
137-
wget -O- http://downloads.xiph.org/releases/theora/libtheora-1.1.1.tar.bz2 | tar xj -C . || fail
138-
cd libtheora-1.1.1 || fail
137+
wget -O- http://downloads.xiph.org/releases/theora/libtheora-1.2.0alpha1.tar.xz | tar xJ -C . || fail
138+
cd libtheora-1.2.0alpha1 || fail
139+
./autogen.sh || fail
139140
PATH="$BIN_PATH:$PATH" ./configure --disable-examples --disable-oggtest --prefix="$BUILD_PATH" --bindir="$BIN_PATH" --enable-shared --enable-static || fail
140141
PATH="$BIN_PATH:$PATH" make -j$(nproc) || fail
141142
sudo make install || fail

0 commit comments

Comments
 (0)