2017-06-28 03:21:29 +00:00
|
|
|
#!/bin/sh
|
2017-06-15 12:17:04 +00:00
|
|
|
|
|
|
|
# Test all-intra coding.
|
|
|
|
|
|
|
|
set -eu
|
|
|
|
|
2017-06-28 06:21:00 +00:00
|
|
|
. "${0%/*}/util.sh"
|
2017-06-15 12:17:04 +00:00
|
|
|
|
2021-09-14 07:48:31 +00:00
|
|
|
common_args='256x128 10 yuv420p -p1 --preset=ultrafast --threads=0 --no-wpp --no-tmvp --no-deblock --sao=0 --pu-depth-intra 0-4'
|
2017-06-15 12:17:04 +00:00
|
|
|
valgrind_test $common_args --rd=1
|
2020-10-13 11:06:59 +00:00
|
|
|
valgrind_test $common_args --rd=2 --no-transform-skip --qp 37
|
2021-04-23 08:28:36 +00:00
|
|
|
valgrind_test $common_args --rd=2 --no-transform-skip --qp 37 --signhide --rdoq
|
2021-12-08 12:48:44 +00:00
|
|
|
valgrind_test $common_args --rd=2 --mrl
|
2021-11-17 11:01:06 +00:00
|
|
|
valgrind_test $common_args --rd=3
|
2021-07-25 17:57:32 +00:00
|
|
|
valgrind_test $common_args --alf=full --no-wpp --threads=0 --owf=0
|
|
|
|
valgrind_test $common_args --alf=full --wpp --threads=1
|
2021-08-20 08:55:35 +00:00
|
|
|
valgrind_test $common_args --jccr --rdoq --rd=2 --mts=intra
|
2021-11-17 11:01:06 +00:00
|
|
|
valgrind_test $common_args --rd=3 --cclm --jccr
|
2021-05-24 17:22:36 +00:00
|
|
|
|