OSDN Git Service

Split codec-regression.sh again and create a lavfi-regression.sh for
authorStefano Sabatini <stefano.sabatini-lala@poste.it>
Tue, 27 Oct 2009 19:34:48 +0000 (19:34 +0000)
committerStefano Sabatini <stefano.sabatini-lala@poste.it>
Tue, 27 Oct 2009 19:34:48 +0000 (19:34 +0000)
running the libavfilter tests.

Originally committed as revision 20384 to svn://svn.ffmpeg.org/ffmpeg/trunk

Makefile
tests/codec-regression.sh
tests/lavfi-regression.sh [new file with mode: 0755]

index 543da18..3a70a8f 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -300,7 +300,7 @@ $(LAVF_TESTS):
        $(SRC_PATH)/tests/lavf-regression.sh $@ lavf tests/vsynth1 b "$(TARGET_EXEC)" "$(TARGET_PATH)"
 
 $(LAVFI_TESTS):
-       $(SRC_PATH)/tests/codec-regression.sh $@ lavfi tests/vsynth1 b "$(TARGET_EXEC)" "$(TARGET_PATH)"
+       $(SRC_PATH)/tests/lavfi-regression.sh $@ lavfi tests/vsynth1 b "$(TARGET_EXEC)" "$(TARGET_PATH)"
 
 seektest: codectest lavftest tests/seek_test$(EXESUF)
        $(SRC_PATH)/tests/seek-regression.sh $(SEEK_REFFILE) "$(TARGET_EXEC)" "$(TARGET_PATH)"
index cbc82cf..ca88bbb 100755 (executable)
@@ -342,26 +342,4 @@ do_audio_enc_dec wav s16 pcm_zork
 do_audio_enc_dec 302 s16 pcm_s24daud "-ac 6 -ar 96000"
 fi
 
-# libavfilter testing
-
-do_lavfi() {
-    test_name=$1
-    eval test=\$do_$test_name
-    vfilters=$2
-
-    if [ -n "$test" ] ; then
-        do_video_encoding ${test_name}.avi "" "-vcodec rawvideo -vfilters $vfilters"
-    fi
-}
-
-# example tests:
-# do_lavfi "crop" "crop=100:100:-1:-1"
-# do_lavfi "crop_scale" "crop=100:100,scale=200:-1"
-# do_lavfi "scale" "scale=200:200"
-
-# TODO: add tests for
-# direct rendering,
-# slices
-# chains with feedback loops
-
 rm -f "$bench" "$bench2"
diff --git a/tests/lavfi-regression.sh b/tests/lavfi-regression.sh
new file mode 100755 (executable)
index 0000000..1f52fd7
--- /dev/null
@@ -0,0 +1,37 @@
+#!/bin/sh
+#
+# automatic regression test for libavfilter
+#
+#
+#set -x
+
+set -e
+
+. $(dirname $0)/regression-funcs.sh
+
+eval do_$test=y
+
+rm -f "$logfile"
+rm -f "$benchfile"
+
+do_lavfi() {
+    test_name=$1
+    eval test=\$do_$test_name
+    vfilters=$2
+
+    if [ -n "$test" ] ; then
+        do_video_encoding ${test_name}.avi "" "-vcodec rawvideo -vfilters $vfilters"
+    fi
+}
+
+# example tests:
+# do_lavfi "crop" "crop=100:100:-1:-1"
+# do_lavfi "crop_scale" "crop=100:100,scale=200:-1"
+# do_lavfi "scale" "scale=200:200"
+
+# TODO: add tests for
+# direct rendering,
+# slices
+# chains with feedback loops
+
+rm -f "$bench" "$bench2"