2017-06-28 03:21:29 +00:00
|
|
|
#!/bin/sh
|
2017-06-15 12:17:04 +00:00
|
|
|
|
|
|
|
# Test GOP, with and without OWF.
|
|
|
|
|
|
|
|
set -eu
|
2017-06-28 06:21:00 +00:00
|
|
|
. "${0%/*}/util.sh"
|
2017-06-15 12:17:04 +00:00
|
|
|
|
2017-06-22 06:44:01 +00:00
|
|
|
common_args='-p0 --threads=2 --wpp --rd=0 --no-rdoq --no-deblock --no-sao --no-signhide --subme=0 --pu-depth-inter=1-3 --pu-depth-intra=2-3'
|
|
|
|
valgrind_test 264x130 10 $common_args --gop=8 -p0 --owf=1
|
|
|
|
valgrind_test 264x130 10 $common_args --gop=8 -p0 --owf=4
|
|
|
|
valgrind_test 264x130 20 $common_args --gop=8 -p16 --owf=0
|
2018-06-18 09:14:32 +00:00
|
|
|
valgrind_test 264x130 10 $common_args --gop=8 -p1 --owf=4
|
2017-06-22 06:44:01 +00:00
|
|
|
valgrind_test 264x130 10 $common_args --gop=lp-g4d3t1 -p5 --owf=4
|
2018-10-04 11:33:54 +00:00
|
|
|
valgrind_test 264x130 10 $common_args --gop=8 -p8 --owf=4 --no-open-gop
|
|
|
|
# Do more extensive tests in a private gitlab CI runner
|
2018-10-05 05:49:15 +00:00
|
|
|
if [ ! -z ${GITLAB_CI+x} ];then valgrind_test 264x130 20 $common_args --gop=8 -p8 --owf=0 --no-open-gop; fi
|
|
|
|
if [ ! -z ${GITLAB_CI+x} ];then valgrind_test 264x130 40 $common_args --gop=8 -p32 --owf=4 --no-open-gop; fi
|
|
|
|
if [ ! -z ${GITLAB_CI+x} ];then valgrind_test 264x130 70 $common_args --gop=8 -p64 --owf=4 --no-open-gop; fi
|
|
|
|
if [ ! -z ${GITLAB_CI+x} ];then valgrind_test 264x130 50 $common_args --gop=8 -p40 --owf=4 --no-open-gop; fi
|
|
|
|
if [ ! -z ${GITLAB_CI+x} ];then valgrind_test 264x130 10 $common_args --gop=8 -p8 --owf=0 --no-open-gop --bipred; fi
|