Commit 2b18c451 authored by Måns Rullgård's avatar Måns Rullgård

fate: add some helper functions to simplify test rules

Originally committed as revision 24314 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent f0388cf7
......@@ -35,6 +35,30 @@ stddev(){
do_tiny_psnr "$1" "$2" stddev '<=' ${fuzz:-1}
}
ffmpeg(){
$target_exec $target_path/ffmpeg "$@"
}
framecrc(){
ffmpeg "$@" -f framecrc -
}
framemd5(){
ffmpeg "$@" -f framemd5 -
}
crc(){
ffmpeg "$@" -f crc -
}
md5(){
ffmpeg "$@" md5:
}
pcm(){
ffmpeg "$@" -vn -f s16le -
}
if ! test -e "$ref"; then
echo "reference file '$ref' not found"
exit 1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment