-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcompile_tools.sh
executable file
·106 lines (90 loc) · 2.65 KB
/
compile_tools.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
#!/bin/sh
# Copyright 2014 Google.
#
# 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.
#
# Compile and install required software tools to run the tests.
#
# This script has been tested on Ubuntu, Trusty Tahr.
#
set -e
if [ -z "$WORKDIR" -o ! -d "$WORKDIR" ]; then
echo "Workdir not set correctly: $WORKDIR"
echo "Did you run init.sh?"
exit 1
fi
TOOLDIR=$CODEC_TOOLPATH
if [ -z "$TOOLDIR" -o ! -d "$TOOLDIR" ]; then
echo Tooldir not set correctly: $TOOLDIR
echo "Did you run init.sh?"
exit 1
fi
echo "Compiling into $TOOLDIR"
cd $WORKDIR
# Build the psnr binary.
echo "Compiling psnr"
gcc -o $TOOLDIR/psnr src/psnr.c -lm
# Build third party source
cd $WORKDIR/third_party
# Build the vpxenc and vpxdec binaries
if [ ! -d libvpx ]; then
git clone http://git.chromium.org/webm/libvpx.git
fi
cd libvpx
# Ensure we check out exactly a consistent version.
git checkout -f master
#git checkout v1.3.0
# Check out the Oct 20 2014 version of libvpx.
git checkout 9c98fb2bab6125a0614576bf7635981163b1cc79
./configure
# Leftovers from previous compilations may be troublesome.
make clean
# There's something wrong in the make for libvpx at this version.
# Ignore the result code from make. We'll bail if vpxenc and vpxdec
# were not built.
make || echo "Something went wrong building libvpx, continuing"
cp vpxenc $TOOLDIR
cp vpxdec $TOOLDIR
# Build a patched version of vpxenc that supports setting
# the q-value for key-frames, golden frames and alt-frames separately
# from the generic fixed q value that is used for all other frames.
patch -p1 < ../vp8_fixed_q.patch
make
cp vpxenc $TOOLDIR/vpxenc-mpeg
cd ..
# Build the x264 binary.
if [ ! -d x264 ]; then
git clone git://git.videolan.org/x264.git
fi
cd x264
# This version of x264 is chosen because the next step requires yasm 1.2.
# Was: git checkout d967c09
# git checkout 8a9608
# Latest version as of Oct 20 2014 - version above crashes on trusty.
git checkout dd79a61
./configure
make x264
cp x264 $TOOLDIR
cd ..
# Build the ffmpeg binary.
if [ ! -d ffmpeg ]; then
git clone git://source.ffmpeg.org/ffmpeg.git ffmpeg
fi
cd ffmpeg
git checkout ae04493
./configure
make ffmpeg
cp ffmpeg $TOOLDIR
make ffprobe
cp ffprobe $TOOLDIR
cd ..