mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-23 18:14:06 +00:00
12 lines
249 B
Bash
12 lines
249 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Test all-intra coding.
|
||
|
|
||
|
set -eu
|
||
|
|
||
|
source util.bash
|
||
|
|
||
|
common_args='264x130 10 -p1 --threads=2 --owf=1 --no-rdoq --no-deblock --no-sao --no-signhide'
|
||
|
valgrind_test $common_args --rd=1
|
||
|
valgrind_test $common_args --rd=2 --no-transform-skip
|