summaryrefslogtreecommitdiff
path: root/tests/fate-run.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/fate-run.sh')
-rwxr-xr-xtests/fate-run.sh24
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/fate-run.sh b/tests/fate-run.sh
index 541f87a524..015aab4291 100755
--- a/tests/fate-run.sh
+++ b/tests/fate-run.sh
@@ -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