mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-24 02:24:07 +00:00
15 lines
506 B
Bash
Executable file
15 lines
506 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Test all-intra coding.
|
|
|
|
set -eu
|
|
|
|
. "${0%/*}/util.sh"
|
|
|
|
common_args='256x128 10 -p1 --preset=ultrafast --threads=0 --no-wpp --no-tmvp --no-deblock --sao=0 --alf=full --cpuid=0'
|
|
valgrind_test $common_args --rd=1
|
|
valgrind_test $common_args --rd=2 --no-transform-skip --qp 37
|
|
valgrind_test $common_args --rd=2 --no-transform-skip --qp 37 --rdoq
|
|
valgrind_test $common_args --rd=2 --no-transform-skip --qp 37 --signhide
|
|
valgrind_test $common_args --rd=2 --no-transform-skip --qp 37 --signhide --rdoq
|