Browse Source

fate/filter: move gradfun filtergraph to a dedicated script.

tags/n2.0
Clément Bœsch 12 years ago
parent
commit
ef4020ca7d
2 changed files with 3 additions and 1 deletions
  1. +1
    -1
      tests/fate/filter.mak
  2. +2
    -0
      tests/filtergraphs/gradfun

+ 1
- 1
tests/fate/filter.mak View File

@@ -113,7 +113,7 @@ FATE_FILTER-$(call ALLYES, UTVIDEO_DECODER AVI_DEMUXER PERMS_FILTER CURVES_FILTE
fate-filter-curves: CMD = framecrc -i $(SAMPLES)/utvideo/utvideo_rgb_median.avi -vf perms=random,curves=vintage

FATE_FILTER-$(call ALLYES, VMD_DEMUXER VMDVIDEO_DECODER FORMAT_FILTER PERMS_FILTER GRADFUN_FILTER) += fate-filter-gradfun-sample
fate-filter-gradfun-sample: CMD = framecrc -i $(SAMPLES)/vmd/12.vmd -vf "sws_flags=+accurate_rnd+bitexact;format=gray,perms=random,gradfun=10:8" -an -frames:v 20
fate-filter-gradfun-sample: CMD = framecrc -i $(SAMPLES)/vmd/12.vmd -filter_script $(SRC_PATH)/tests/filtergraphs/gradfun -an -frames:v 20

FATE_FILTER-$(call ALLYES, TESTSRC_FILTER SINE_FILTER CONCAT_FILTER) += fate-filter-concat
fate-filter-concat: CMD = framecrc -filter_complex_script $(SRC_PATH)/tests/filtergraphs/concat


+ 2
- 0
tests/filtergraphs/gradfun View File

@@ -0,0 +1,2 @@
sws_flags=+accurate_rnd+bitexact;
format=gray, perms=random, gradfun=10:8

Loading…
Cancel
Save