mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-23 18:14:06 +00:00
7a12f6c8d4
- Moves travis package installations to addons.apt.packages. - Disables sudo in travis configuration. - Substitutes nasm for yasm in travis builds since yasm is not available on travis.
11 lines
408 B
Bash
Executable file
11 lines
408 B
Bash
Executable file
#!/bin/sh
|
|
set -ev
|
|
|
|
if [ -n "$VALGRIND_TEST" ]; then
|
|
wget http://ultravideo.cs.tut.fi/ffmpeg-release-32bit-static.tar.xz
|
|
7z x ffmpeg-release-32bit-static.tar.xz
|
|
7z x ffmpeg-release-32bit-static.tar
|
|
chmod +x ./ffmpeg-2.6.3-32bit-static/ffmpeg
|
|
./ffmpeg-2.6.3-32bit-static/ffmpeg -f lavfi -i "mandelbrot=size=${TEST_DIM}:end_pts=10" -vframes $TEST_FRAMES -pix_fmt yuv420p mandelbrot_${TEST_DIM}.yuv
|
|
fi
|