| 
									
										
										
										
											2009-10-27 19:34:48 +00:00
										 |  |  | #!/bin/sh
 | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # automatic regression test for libavfilter | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | #set -x | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | set -e | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | . $(dirname $0)/regression-funcs.sh | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | eval do_$test=y | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-21 21:31:21 +00:00
										 |  |  | do_video_filter() { | 
					
						
							|  |  |  |     label=$1 | 
					
						
							|  |  |  |     filters=$2 | 
					
						
							|  |  |  |     shift 2 | 
					
						
							| 
									
										
										
										
											2011-06-19 16:19:06 +01:00
										 |  |  |     printf '%-20s' $label | 
					
						
							| 
									
										
										
										
											2011-07-27 20:56:59 +02:00
										 |  |  |     run_avconv $DEC_OPTS -f image2 -vcodec pgmyuv -i $raw_src    \
 | 
					
						
							| 
									
										
										
										
											2011-06-19 16:19:06 +01:00
										 |  |  |         $ENC_OPTS -vf "$filters" -vcodec rawvideo $* -f nut md5: | 
					
						
							| 
									
										
										
										
											2011-01-21 21:31:21 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-27 19:34:48 +00:00
										 |  |  | do_lavfi() { | 
					
						
							| 
									
										
										
										
											2010-03-17 23:23:48 +00:00
										 |  |  |     vfilters="slicify=random,$2" | 
					
						
							| 
									
										
										
										
											2009-10-27 19:34:48 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-24 17:13:35 +00:00
										 |  |  |     if [ $test = $1 ] ; then | 
					
						
							| 
									
										
										
										
											2011-01-21 21:31:21 +00:00
										 |  |  |         do_video_filter $test "$vfilters" | 
					
						
							| 
									
										
										
										
											2009-10-27 19:34:48 +00:00
										 |  |  |     fi | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:18:43 +00:00
										 |  |  | 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" | 
					
						
							| 
									
										
										
										
											2010-03-17 23:23:44 +00:00
										 |  |  | do_lavfi "null"               "null" | 
					
						
							|  |  |  | do_lavfi "scale200"           "scale=200:200" | 
					
						
							|  |  |  | do_lavfi "scale500"           "scale=500:500" | 
					
						
							|  |  |  | do_lavfi "vflip"              "vflip" | 
					
						
							| 
									
										
										
										
											2010-09-25 01:18:43 +00:00
										 |  |  | do_lavfi "vflip_crop"         "vflip,crop=iw-100:ih-100:100:100" | 
					
						
							| 
									
										
										
										
											2010-03-17 23:23:44 +00:00
										 |  |  | do_lavfi "vflip_vflip"        "vflip,vflip" | 
					
						
							| 
									
										
										
										
											2009-10-27 19:34:48 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-01 23:04:13 +00:00
										 |  |  | do_lavfi_pixfmts(){ | 
					
						
							|  |  |  |     test ${test%_[bl]e} = pixfmts_$1 || return 0 | 
					
						
							|  |  |  |     filter=$1 | 
					
						
							|  |  |  |     filter_args=$2 | 
					
						
							| 
									
										
										
										
											2010-05-24 20:38:50 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-01 10:27:04 +00:00
										 |  |  |     showfiltfmts="$target_exec $target_path/tools/lavfi-showfiltfmts" | 
					
						
							| 
									
										
										
										
											2010-08-01 23:34:48 +00:00
										 |  |  |     exclude_fmts=${outfile}${1}_exclude_fmts | 
					
						
							|  |  |  |     out_fmts=${outfile}${1}_out_fmts | 
					
						
							| 
									
										
										
										
											2010-06-03 22:17:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-01 11:34:59 +00:00
										 |  |  |     # exclude pixel formats which are not supported as input | 
					
						
							| 
									
										
										
										
											2011-07-27 20:56:59 +02:00
										 |  |  |     $avconv -pix_fmts list 2>/dev/null | sed -ne '9,$p' | grep '^\..\.' | cut -d' ' -f2 | sort >$exclude_fmts | 
					
						
							| 
									
										
										
										
											2011-07-16 21:29:05 +02:00
										 |  |  |     $showfiltfmts scale | awk -F '[ \r]' '/^OUTPUT/{ fmt=substr($3, 5); print fmt }' | sort | comm -23 - $exclude_fmts >$out_fmts | 
					
						
							| 
									
										
										
										
											2010-05-24 20:38:50 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-16 21:29:05 +02:00
										 |  |  |     pix_fmts=$($showfiltfmts $filter $filter_args | awk -F '[ \r]' '/^INPUT/{ fmt=substr($3, 5); print fmt }' | sort | comm -12 - $out_fmts) | 
					
						
							| 
									
										
										
										
											2010-08-01 23:04:16 +00:00
										 |  |  |     for pix_fmt in $pix_fmts; do | 
					
						
							| 
									
										
										
										
											2011-01-21 21:31:21 +00:00
										 |  |  |         do_video_filter $pix_fmt "slicify=random,format=$pix_fmt,$filter=$filter_args" -pix_fmt $pix_fmt | 
					
						
							| 
									
										
										
										
											2010-08-01 23:04:16 +00:00
										 |  |  |     done | 
					
						
							| 
									
										
										
										
											2010-08-01 11:34:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     rm $exclude_fmts $out_fmts | 
					
						
							| 
									
										
										
										
											2010-08-01 23:04:13 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # all these filters have exactly one input and exactly one output | 
					
						
							| 
									
										
										
										
											2010-12-28 01:01:09 +00:00
										 |  |  | do_lavfi_pixfmts "copy"    "" | 
					
						
							| 
									
										
										
										
											2010-08-01 23:04:13 +00:00
										 |  |  | do_lavfi_pixfmts "crop"    "100:100:100:100" | 
					
						
							| 
									
										
										
										
											2010-08-17 14:59:12 +00:00
										 |  |  | do_lavfi_pixfmts "hflip"   "" | 
					
						
							| 
									
										
										
										
											2010-08-01 23:04:13 +00:00
										 |  |  | do_lavfi_pixfmts "null"    "" | 
					
						
							|  |  |  | do_lavfi_pixfmts "pad"     "500:400:20:20" | 
					
						
							|  |  |  | do_lavfi_pixfmts "scale"   "200:100" | 
					
						
							|  |  |  | do_lavfi_pixfmts "vflip"   "" | 
					
						
							| 
									
										
										
										
											2010-05-24 20:38:50 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-28 21:24:35 +01:00
										 |  |  | if [ -n "$do_pixdesc" ]; then | 
					
						
							| 
									
										
										
										
											2011-07-27 20:56:59 +02:00
										 |  |  |     pix_fmts="$($avconv -pix_fmts list 2>/dev/null | sed -ne '9,$p' | grep '^IO' | cut -d' ' -f2 | sort)" | 
					
						
							| 
									
										
										
										
											2010-07-07 18:24:55 +00:00
										 |  |  |     for pix_fmt in $pix_fmts; do | 
					
						
							| 
									
										
										
										
											2011-01-21 21:31:21 +00:00
										 |  |  |         do_video_filter $pix_fmt "slicify=random,format=$pix_fmt,pixdesctest" -pix_fmt $pix_fmt | 
					
						
							| 
									
										
										
										
											2010-07-07 18:24:55 +00:00
										 |  |  |     done | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-27 19:34:48 +00:00
										 |  |  | # TODO: add tests for | 
					
						
							|  |  |  | # direct rendering, | 
					
						
							|  |  |  | # chains with feedback loops |