summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2013-04-15 23:39:08 +0200
committerDiego Biurrun <diego@biurrun.de>2013-04-27 16:53:42 +0200
commit03b052c023e1f58d879cb7eeb6421ed39262d39d (patch)
tree79fb1e657f8b1f7162bf2f9d0b5f4cbc4b15d739 /tests
parentc14010541035454b4d3ad08399d70423be4e0c87 (diff)
fate: Invoke standard lavfi tests through fate-run.sh
Diffstat (limited to 'tests')
-rwxr-xr-xtests/fate-run.sh10
-rw-r--r--tests/fate/avfilter.mak12
-rw-r--r--tests/fate/filter-video.mak31
-rwxr-xr-xtests/lavfi-regression.sh17
-rw-r--r--tests/ref/fate/filter-crop (renamed from tests/ref/lavfi/crop)0
-rw-r--r--tests/ref/fate/filter-crop_scale (renamed from tests/ref/lavfi/crop_scale)0
-rw-r--r--tests/ref/fate/filter-crop_scale_vflip (renamed from tests/ref/lavfi/crop_scale_vflip)0
-rw-r--r--tests/ref/fate/filter-crop_vflip (renamed from tests/ref/lavfi/crop_vflip)0
-rw-r--r--tests/ref/fate/filter-null (renamed from tests/ref/lavfi/null)0
-rw-r--r--tests/ref/fate/filter-scale200 (renamed from tests/ref/lavfi/scale200)0
-rw-r--r--tests/ref/fate/filter-scale500 (renamed from tests/ref/lavfi/scale500)0
-rw-r--r--tests/ref/fate/filter-vflip (renamed from tests/ref/lavfi/vflip)0
-rw-r--r--tests/ref/fate/filter-vflip_crop (renamed from tests/ref/lavfi/vflip_crop)0
-rw-r--r--tests/ref/fate/filter-vflip_vflip (renamed from tests/ref/lavfi/vflip_vflip)0
14 files changed, 42 insertions, 28 deletions
diff --git a/tests/fate-run.sh b/tests/fate-run.sh
index 70821bbcec..72554ad988 100755
--- a/tests/fate-run.sh
+++ b/tests/fate-run.sh
@@ -161,6 +161,16 @@ lavfitest(){
regtest lavfi lavfi tests/vsynth1
}
+video_filter(){
+ filters=$1
+ shift
+ label=${test#filter-}
+ raw_src="${target_path}/tests/vsynth1/%02d.pgm"
+ printf '%-20s' $label
+ avconv $DEC_OPTS -f image2 -vcodec pgmyuv -i $raw_src \
+ $FLAGS $ENC_OPTS -vf "$filters" -vcodec rawvideo $* -f nut md5:
+}
+
mkdir -p "$outdir"
exec 3>&2
diff --git a/tests/fate/avfilter.mak b/tests/fate/avfilter.mak
index de5e9d1b20..e31f449c16 100644
--- a/tests/fate/avfilter.mak
+++ b/tests/fate/avfilter.mak
@@ -1,9 +1,4 @@
-FATE_LAVFI = fate-lavfi-crop \
- fate-lavfi-crop_scale \
- fate-lavfi-crop_scale_vflip \
- fate-lavfi-crop_vflip \
- fate-lavfi-null \
- fate-lavfi-pixdesc \
+FATE_LAVFI = fate-lavfi-pixdesc \
fate-lavfi-pixfmts_copy \
fate-lavfi-pixfmts_crop \
fate-lavfi-pixfmts_hflip \
@@ -11,11 +6,6 @@ FATE_LAVFI = fate-lavfi-crop \
fate-lavfi-pixfmts_pad \
fate-lavfi-pixfmts_scale \
fate-lavfi-pixfmts_vflip \
- fate-lavfi-scale200 \
- fate-lavfi-scale500 \
- fate-lavfi-vflip \
- fate-lavfi-vflip_crop \
- fate-lavfi-vflip_vflip \
$(FATE_LAVFI): $(VREF) libavfilter/filtfmts-test$(EXESUF)
$(FATE_LAVFI): CMD = lavfitest
diff --git a/tests/fate/filter-video.mak b/tests/fate/filter-video.mak
index 420b41fbf6..736b99f2fb 100644
--- a/tests/fate/filter-video.mak
+++ b/tests/fate/filter-video.mak
@@ -46,6 +46,37 @@ FATE_FILTER_VSYNTH-$(CONFIG_UNSHARP_FILTER) += fate-filter-unsharp
fate-filter-unsharp: CMD = framecrc -c:v pgmyuv -i $(SRC) -vf unsharp
+FATE_FILTER_VSYNTH-$(CONFIG_CROP_FILTER) += fate-filter-crop
+fate-filter-crop: CMD = video_filter "crop=iw-100:ih-100:100:100"
+
+FATE_FILTER_VSYNTH-$(call ALLYES, CROP_FILTER SCALE_FILTER) += fate-filter-crop_scale
+fate-filter-crop_scale: CMD = video_filter "crop=iw-100:ih-100:100:100,scale=400:-1"
+
+FATE_FILTER_VSYNTH-$(call ALLYES, CROP_FILTER SCALE_FILTER VFLIP_FILTER) += fate-filter-crop_scale_vflip
+fate-filter-crop_scale_vflip: CMD = video_filter "null,null,crop=iw-200:ih-200:200:200,crop=iw-20:ih-20:20:20,scale=200:200,scale=250:250,vflip,vflip,null,scale=200:200,crop=iw-100:ih-100:100:100,vflip,scale=200:200,null,vflip,crop=iw-100:ih-100:100:100,null"
+
+FATE_FILTER_VSYNTH-$(call ALLYES, CROP_FILTER VFLIP_FILTER) += fate-filter-crop_vflip
+fate-filter-crop_vflip: CMD = video_filter "crop=iw-100:ih-100:100:100,vflip"
+
+FATE_FILTER_VSYNTH-$(CONFIG_NULL_FILTER) += fate-filter-null
+fate-filter-null: CMD = video_filter "null"
+
+FATE_FILTER_VSYNTH-$(CONFIG_SCALE_FILTER) += fate-filter-scale200
+fate-filter-scale200: CMD = video_filter "scale=200:200"
+
+FATE_FILTER_VSYNTH-$(CONFIG_SCALE_FILTER) += fate-filter-scale500
+fate-filter-scale500: CMD = video_filter "scale=500:500"
+
+FATE_FILTER_VSYNTH-$(CONFIG_VFLIP_FILTER) += fate-filter-vflip
+fate-filter-vflip: CMD = video_filter "vflip"
+
+FATE_FILTER_VSYNTH-$(call ALLYES, CROP_FILTER VFLIP_FILTER) += fate-filter-vflip_crop
+fate-filter-vflip_crop: CMD = video_filter "vflip,crop=iw-100:ih-100:100:100"
+
+FATE_FILTER_VSYNTH-$(CONFIG_VFLIP_FILTER) += fate-filter-vflip_vflip
+fate-filter-vflip_vflip: CMD = video_filter "vflip,vflip"
+
+
$(FATE_FILTER_VSYNTH-yes): $(VREF)
$(FATE_FILTER_VSYNTH-yes): SRC = $(TARGET_PATH)/tests/vsynth1/%02d.pgm
diff --git a/tests/lavfi-regression.sh b/tests/lavfi-regression.sh
index fc7c153f0f..f2fc75212c 100755
--- a/tests/lavfi-regression.sh
+++ b/tests/lavfi-regression.sh
@@ -20,23 +20,6 @@ do_video_filter() {
$ENC_OPTS -vf "$filters" -vcodec rawvideo $* -f nut md5:
}
-do_lavfi() {
- if [ $test = $1 ] ; then
- do_video_filter $test "$2"
- fi
-}
-
-do_lavfi "crop" "crop=iw-100:ih-100:100:100"
-do_lavfi "crop_scale" "crop=iw-100:ih-100:100:100,scale=400:-1"
-do_lavfi "crop_scale_vflip" "null,null,crop=iw-200:ih-200:200:200,crop=iw-20:ih-20:20:20,scale=200:200,scale=250:250,vflip,vflip,null,scale=200:200,crop=iw-100:ih-100:100:100,vflip,scale=200:200,null,vflip,crop=iw-100:ih-100:100:100,null"
-do_lavfi "crop_vflip" "crop=iw-100:ih-100:100:100,vflip"
-do_lavfi "null" "null"
-do_lavfi "scale200" "scale=200:200"
-do_lavfi "scale500" "scale=500:500"
-do_lavfi "vflip" "vflip"
-do_lavfi "vflip_crop" "vflip,crop=iw-100:ih-100:100:100"
-do_lavfi "vflip_vflip" "vflip,vflip"
-
do_lavfi_pixfmts(){
test ${test%_[bl]e} = pixfmts_$1 || return 0
filter=$1
diff --git a/tests/ref/lavfi/crop b/tests/ref/fate/filter-crop
index 32041c2184..32041c2184 100644
--- a/tests/ref/lavfi/crop
+++ b/tests/ref/fate/filter-crop
diff --git a/tests/ref/lavfi/crop_scale b/tests/ref/fate/filter-crop_scale
index 82e5394496..82e5394496 100644
--- a/tests/ref/lavfi/crop_scale
+++ b/tests/ref/fate/filter-crop_scale
diff --git a/tests/ref/lavfi/crop_scale_vflip b/tests/ref/fate/filter-crop_scale_vflip
index 29574f769f..29574f769f 100644
--- a/tests/ref/lavfi/crop_scale_vflip
+++ b/tests/ref/fate/filter-crop_scale_vflip
diff --git a/tests/ref/lavfi/crop_vflip b/tests/ref/fate/filter-crop_vflip
index a3f8200222..a3f8200222 100644
--- a/tests/ref/lavfi/crop_vflip
+++ b/tests/ref/fate/filter-crop_vflip
diff --git a/tests/ref/lavfi/null b/tests/ref/fate/filter-null
index 3c3b7b742d..3c3b7b742d 100644
--- a/tests/ref/lavfi/null
+++ b/tests/ref/fate/filter-null
diff --git a/tests/ref/lavfi/scale200 b/tests/ref/fate/filter-scale200
index 17103a256d..17103a256d 100644
--- a/tests/ref/lavfi/scale200
+++ b/tests/ref/fate/filter-scale200
diff --git a/tests/ref/lavfi/scale500 b/tests/ref/fate/filter-scale500
index 93ba4f2485..93ba4f2485 100644
--- a/tests/ref/lavfi/scale500
+++ b/tests/ref/fate/filter-scale500
diff --git a/tests/ref/lavfi/vflip b/tests/ref/fate/filter-vflip
index 66b873270a..66b873270a 100644
--- a/tests/ref/lavfi/vflip
+++ b/tests/ref/fate/filter-vflip
diff --git a/tests/ref/lavfi/vflip_crop b/tests/ref/fate/filter-vflip_crop
index 6bb832f4cc..6bb832f4cc 100644
--- a/tests/ref/lavfi/vflip_crop
+++ b/tests/ref/fate/filter-vflip_crop
diff --git a/tests/ref/lavfi/vflip_vflip b/tests/ref/fate/filter-vflip_vflip
index b719745dc6..b719745dc6 100644
--- a/tests/ref/lavfi/vflip_vflip
+++ b/tests/ref/fate/filter-vflip_vflip