mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-23 18:14:06 +00:00
13 lines
276 B
Bash
Executable file
13 lines
276 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
. "${0%/*}/util.sh"
|
|
|
|
cabacfile="$(mktemp)"
|
|
|
|
valgrind_test 256x128 10 yuv420p --preset veryslow --rd 3 --mip --jccr --mrl -p 1 --owf 0 --no-wpp --cabac-debug-file="${cabacfile}"
|
|
python3 check_cabac_state_consistency.py "${cabacfile}"
|
|
rm -rf "${cabacfile}"
|
|
|