[SCM] libav/experimental: fate: add some helper functions to simplify test rules
siretart at users.alioth.debian.org
siretart at users.alioth.debian.org
Sun Jun 30 17:11:41 UTC 2013
The following commit has been merged in the experimental branch:
commit 2b18c451bda2f12e30bb598af2c234031558d68a
Author: Måns Rullgård <mans at mansr.com>
Date: Sun Jul 18 20:19:30 2010 +0000
fate: add some helper functions to simplify test rules
Originally committed as revision 24314 to svn://svn.ffmpeg.org/ffmpeg/trunk
diff --git a/tests/fate-run.sh b/tests/fate-run.sh
index 541f87a..015aab4 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
--
Libav/FFmpeg packaging
More information about the pkg-multimedia-commits
mailing list