| 
									
										
										
										
											2002-05-18 23:18:22 +00:00
										 |  |  | #!/bin/sh
 | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # automatic regression test for ffmpeg | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | #set -x | 
					
						
							| 
									
										
										
										
											2007-01-14 23:20:05 +00:00
										 |  |  | # Even in the 21st century some diffs do not support -u. | 
					
						
							| 
									
										
										
										
											2005-01-01 23:38:09 +00:00
										 |  |  | diff -u "$0" "$0" > /dev/null 2>&1 | 
					
						
							| 
									
										
										
										
											2003-04-15 22:29:37 +00:00
										 |  |  | if [ $? -eq 0 ]; then | 
					
						
							|  |  |  |   diff_cmd="diff -u" | 
					
						
							|  |  |  | else | 
					
						
							|  |  |  |   diff_cmd="diff" | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-01-01 23:38:09 +00:00
										 |  |  | diff -w "$0" "$0" > /dev/null 2>&1 | 
					
						
							| 
									
										
										
										
											2004-03-26 22:08:57 +00:00
										 |  |  | if [ $? -eq 0 ]; then | 
					
						
							|  |  |  |   diff_cmd="$diff_cmd -w" | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-05-18 23:18:22 +00:00
										 |  |  | set -e | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-06-07 22:36:39 +00:00
										 |  |  | datadir="./tests/data" | 
					
						
							| 
									
										
										
										
											2002-06-05 18:14:21 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | logfile="$datadir/ffmpeg.regression" | 
					
						
							| 
									
										
										
										
											2003-07-16 19:13:33 +00:00
										 |  |  | outfile="$datadir/a-" | 
					
						
							| 
									
										
										
										
											2002-05-20 16:20:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-01-14 23:20:05 +00:00
										 |  |  | # tests to run | 
					
						
							| 
									
										
										
										
											2002-05-18 23:18:22 +00:00
										 |  |  | if [ "$1" = "mpeg4" ] ; then | 
					
						
							|  |  |  |     do_mpeg4=y | 
					
						
							|  |  |  | elif [ "$1" = "mpeg" ] ; then | 
					
						
							|  |  |  |     do_mpeg=y | 
					
						
							| 
									
										
										
										
											2004-02-28 15:15:58 +00:00
										 |  |  |     do_mpeg2=y | 
					
						
							| 
									
										
										
										
											2003-01-11 05:32:29 +00:00
										 |  |  | elif [ "$1" = "ac3" ] ; then | 
					
						
							|  |  |  |     do_ac3=y | 
					
						
							| 
									
										
										
										
											2004-11-12 22:57:07 +00:00
										 |  |  | elif [ "$1" = "huffyuv" ] ; then | 
					
						
							|  |  |  |     do_huffyuv=y | 
					
						
							| 
									
										
										
										
											2004-11-16 14:02:41 +00:00
										 |  |  | elif [ "$1" = "mpeg2thread" ] ; then | 
					
						
							|  |  |  |     do_mpeg2thread=y | 
					
						
							| 
									
										
										
										
											2005-04-03 15:39:17 +00:00
										 |  |  | elif [ "$1" = "snow" ] ; then | 
					
						
							|  |  |  |     do_snow=y | 
					
						
							| 
									
										
										
										
											2006-01-14 01:58:38 +00:00
										 |  |  | elif [ "$1" = "snowll" ] ; then | 
					
						
							|  |  |  |     do_snowll=y | 
					
						
							| 
									
										
										
										
											2002-05-20 16:20:05 +00:00
										 |  |  | elif [ "$1" = "libavtest" ] ; then | 
					
						
							| 
									
										
										
										
											2007-01-18 08:21:55 +00:00
										 |  |  |     do_libavtest=y | 
					
						
							| 
									
										
										
										
											2002-06-05 18:14:21 +00:00
										 |  |  |     logfile="$datadir/libav.regression" | 
					
						
							| 
									
										
										
										
											2003-07-16 19:13:33 +00:00
										 |  |  |     outfile="$datadir/b-" | 
					
						
							| 
									
										
										
										
											2002-05-18 23:18:22 +00:00
										 |  |  | else | 
					
						
							|  |  |  |     do_mpeg=y | 
					
						
							| 
									
										
										
										
											2003-08-26 07:42:25 +00:00
										 |  |  |     do_mpeg2=y | 
					
						
							| 
									
										
										
										
											2004-02-13 17:54:10 +00:00
										 |  |  |     do_mpeg2thread=y | 
					
						
							| 
									
										
										
										
											2002-09-06 22:59:44 +00:00
										 |  |  |     do_msmpeg4v2=y | 
					
						
							| 
									
										
										
										
											2002-05-18 23:18:22 +00:00
										 |  |  |     do_msmpeg4=y | 
					
						
							| 
									
										
										
										
											2002-09-06 22:59:44 +00:00
										 |  |  |     do_wmv1=y | 
					
						
							| 
									
										
										
										
											2003-03-08 11:50:26 +00:00
										 |  |  |     do_wmv2=y | 
					
						
							| 
									
										
										
										
											2004-10-28 10:24:02 +00:00
										 |  |  |     do_h261=y | 
					
						
							| 
									
										
										
										
											2002-05-18 23:18:22 +00:00
										 |  |  |     do_h263=y | 
					
						
							| 
									
										
										
										
											2002-10-25 10:50:02 +00:00
										 |  |  |     do_h263p=y | 
					
						
							| 
									
										
										
										
											2002-05-18 23:18:22 +00:00
										 |  |  |     do_mpeg4=y | 
					
						
							| 
									
										
										
										
											2006-01-24 08:03:42 +00:00
										 |  |  |     do_mp4psp=y | 
					
						
							| 
									
										
										
										
											2003-03-08 11:50:26 +00:00
										 |  |  |     do_huffyuv=y | 
					
						
							| 
									
										
										
										
											2002-05-18 23:18:22 +00:00
										 |  |  |     do_mjpeg=y | 
					
						
							| 
									
										
										
										
											2003-07-12 16:26:08 +00:00
										 |  |  |     do_ljpeg=y | 
					
						
							| 
									
										
										
										
											2006-02-02 15:34:09 +00:00
										 |  |  |     do_jpegls=y | 
					
						
							| 
									
										
										
										
											2002-09-03 20:41:12 +00:00
										 |  |  |     do_rv10=y | 
					
						
							| 
									
										
										
										
											2004-12-07 13:48:25 +00:00
										 |  |  |     do_rv20=y | 
					
						
							| 
									
										
										
										
											2002-05-18 23:18:22 +00:00
										 |  |  |     do_mp2=y | 
					
						
							|  |  |  |     do_ac3=y | 
					
						
							| 
									
										
										
										
											2004-02-07 15:10:47 +00:00
										 |  |  |     do_g726=y | 
					
						
							| 
									
										
										
										
											2004-02-08 02:35:37 +00:00
										 |  |  |     do_adpcm_ima_wav=y | 
					
						
							|  |  |  |     do_adpcm_ms=y | 
					
						
							| 
									
										
										
										
											2006-06-24 11:40:21 +00:00
										 |  |  |     do_flac=y | 
					
						
							| 
									
										
										
										
											2007-02-06 23:59:10 +00:00
										 |  |  |     do_wma=y | 
					
						
							| 
									
										
										
										
											2007-02-07 17:04:30 +00:00
										 |  |  |     do_vorbis=y | 
					
						
							| 
									
										
										
										
											2002-09-20 15:22:24 +00:00
										 |  |  |     do_rc=y | 
					
						
							|  |  |  |     do_mpeg4adv=y | 
					
						
							| 
									
										
										
										
											2004-02-13 17:54:10 +00:00
										 |  |  |     do_mpeg4thread=y | 
					
						
							| 
									
										
										
										
											2004-01-02 21:26:51 +00:00
										 |  |  |     do_mpeg4nr=y | 
					
						
							| 
									
										
										
										
											2003-02-08 12:13:32 +00:00
										 |  |  |     do_mpeg1b=y | 
					
						
							| 
									
										
										
										
											2003-05-27 22:43:34 +00:00
										 |  |  |     do_asv1=y | 
					
						
							| 
									
										
										
										
											2003-09-01 13:05:21 +00:00
										 |  |  |     do_asv2=y | 
					
						
							| 
									
										
										
										
											2003-07-09 23:52:06 +00:00
										 |  |  |     do_flv=y | 
					
						
							| 
									
										
										
										
											2003-11-03 21:59:21 +00:00
										 |  |  |     do_ffv1=y | 
					
						
							| 
									
										
										
										
											2003-12-14 01:42:00 +00:00
										 |  |  |     do_error=y | 
					
						
							| 
									
										
										
										
											2004-05-12 03:33:40 +00:00
										 |  |  |     do_svq1=y | 
					
						
							| 
									
										
										
										
											2005-04-03 15:39:17 +00:00
										 |  |  |     do_snow=y | 
					
						
							| 
									
										
										
										
											2006-01-14 01:58:38 +00:00
										 |  |  |     do_snowll=y | 
					
						
							| 
									
										
										
										
											2005-07-25 14:36:58 +00:00
										 |  |  |     do_adpcm_yam=y | 
					
						
							| 
									
										
										
										
											2005-08-30 19:44:02 +00:00
										 |  |  |     do_dv=y | 
					
						
							| 
									
										
										
										
											2006-03-06 08:54:33 +00:00
										 |  |  |     do_dv50=y | 
					
						
							| 
									
										
										
										
											2002-05-18 23:18:22 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # various files | 
					
						
							| 
									
										
										
										
											2007-06-07 22:36:39 +00:00
										 |  |  | ffmpeg="./ffmpeg_g" | 
					
						
							|  |  |  | tiny_psnr="tests/tiny_psnr" | 
					
						
							| 
									
										
										
										
											2002-05-18 23:18:22 +00:00
										 |  |  | reffile="$2" | 
					
						
							| 
									
										
										
										
											2002-06-05 18:14:21 +00:00
										 |  |  | benchfile="$datadir/ffmpeg.bench" | 
					
						
							| 
									
										
										
										
											2007-01-14 23:22:49 +00:00
										 |  |  | bench="$datadir/bench.tmp" | 
					
						
							|  |  |  | bench2="$datadir/bench2.tmp" | 
					
						
							| 
									
										
										
										
											2005-09-21 00:09:02 +00:00
										 |  |  | raw_src="$3/%02d.pgm" | 
					
						
							| 
									
										
										
										
											2002-06-05 18:14:21 +00:00
										 |  |  | raw_dst="$datadir/out.yuv" | 
					
						
							| 
									
										
										
										
											2003-04-10 21:29:31 +00:00
										 |  |  | raw_ref="$datadir/ref.yuv" | 
					
						
							| 
									
										
										
										
											2007-06-07 22:36:39 +00:00
										 |  |  | pcm_src="tests/asynth1.sw" | 
					
						
							| 
									
										
										
										
											2002-06-05 18:14:21 +00:00
										 |  |  | pcm_dst="$datadir/out.wav" | 
					
						
							| 
									
										
										
										
											2005-01-30 13:26:11 +00:00
										 |  |  | pcm_ref="$datadir/ref.wav" | 
					
						
							| 
									
										
										
										
											2004-02-28 15:15:58 +00:00
										 |  |  | if [ X"`echo | md5sum 2> /dev/null`" != X ]; then | 
					
						
							|  |  |  |     do_md5sum() { md5sum -b $1; } | 
					
						
							|  |  |  | elif [ -x /sbin/md5 ]; then | 
					
						
							|  |  |  |     do_md5sum() { /sbin/md5 -r $1 | sed 's# \**\./# *./#'; } | 
					
						
							|  |  |  | else | 
					
						
							|  |  |  |     do_md5sum() { echo No md5sum program found; } | 
					
						
							|  |  |  | fi | 
					
						
							| 
									
										
										
										
											2002-06-05 18:14:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-01-14 23:20:05 +00:00
										 |  |  | # create the data directory if it does not exist | 
					
						
							| 
									
										
										
										
											2002-06-05 18:14:21 +00:00
										 |  |  | mkdir -p $datadir | 
					
						
							| 
									
										
										
										
											2002-05-18 23:18:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-03-12 15:54:15 +00:00
										 |  |  | FFMPEG_OPTS="-y -flags +bitexact -dct fastint -idct simple" | 
					
						
							| 
									
										
										
										
											2006-11-05 18:14:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-30 19:34:55 +00:00
										 |  |  | do_ffmpeg() | 
					
						
							| 
									
										
										
										
											2002-05-18 23:18:22 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-01-15 07:56:15 +00:00
										 |  |  |     f="$1" | 
					
						
							| 
									
										
										
										
											2002-05-18 23:18:22 +00:00
										 |  |  |     shift | 
					
						
							| 
									
										
										
										
											2006-11-05 18:14:46 +00:00
										 |  |  |     echo $ffmpeg $FFMPEG_OPTS $* | 
					
						
							| 
									
										
										
										
											2007-01-14 23:22:49 +00:00
										 |  |  |     $ffmpeg $FFMPEG_OPTS -benchmark $* > $bench 2> /tmp/ffmpeg$$ | 
					
						
							| 
									
										
										
										
											2004-10-28 10:30:05 +00:00
										 |  |  |     egrep -v "^(Stream|Press|Input|Output|frame|  Stream|  Duration|video:)" /tmp/ffmpeg$$ || true | 
					
						
							| 
									
										
										
										
											2003-04-15 01:58:46 +00:00
										 |  |  |     rm -f /tmp/ffmpeg$$ | 
					
						
							| 
									
										
										
										
											2007-01-15 07:56:15 +00:00
										 |  |  |     do_md5sum $f >> $logfile | 
					
						
							|  |  |  |     if [ $f = $raw_dst ] ; then | 
					
						
							|  |  |  |         $tiny_psnr $f $raw_ref >> $logfile | 
					
						
							|  |  |  |     elif [ $f = $pcm_dst ] ; then | 
					
						
							|  |  |  |         $tiny_psnr $f $pcm_ref 2 >> $logfile | 
					
						
							| 
									
										
										
										
											2004-03-23 03:05:51 +00:00
										 |  |  |     else | 
					
						
							| 
									
										
										
										
											2007-01-15 07:56:15 +00:00
										 |  |  |         wc -c $f >> $logfile | 
					
						
							| 
									
										
										
										
											2003-04-10 21:29:31 +00:00
										 |  |  |     fi | 
					
						
							| 
									
										
										
										
											2007-01-14 23:22:49 +00:00
										 |  |  |     expr "`cat $bench`" : '.*utime=\(.*s\)' > $bench2 | 
					
						
							| 
									
										
										
										
											2007-01-15 07:56:15 +00:00
										 |  |  |     echo `cat $bench2` $f >> $benchfile | 
					
						
							| 
									
										
										
										
											2002-05-18 23:18:22 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-02-12 19:59:38 +00:00
										 |  |  | do_ffmpeg_nomd5() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     f="$1" | 
					
						
							|  |  |  |     shift | 
					
						
							|  |  |  |     echo $ffmpeg $FFMPEG_OPTS $* | 
					
						
							|  |  |  |     $ffmpeg $FFMPEG_OPTS -benchmark $* > $bench 2> /tmp/ffmpeg$$ | 
					
						
							|  |  |  |     egrep -v "^(Stream|Press|Input|Output|frame|  Stream|  Duration|video:)" /tmp/ffmpeg$$ || true | 
					
						
							|  |  |  |     rm -f /tmp/ffmpeg$$ | 
					
						
							|  |  |  |     if [ $f = $raw_dst ] ; then | 
					
						
							|  |  |  |         $tiny_psnr $f $raw_ref >> $logfile | 
					
						
							|  |  |  |     elif [ $f = $pcm_dst ] ; then | 
					
						
							|  |  |  |         $tiny_psnr $f $pcm_ref 2 >> $logfile | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         wc -c $f >> $logfile | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  |     expr "`cat $bench`" : '.*utime=\(.*s\)' > $bench2 | 
					
						
							|  |  |  |     echo `cat $bench2` $f >> $benchfile | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-30 19:34:55 +00:00
										 |  |  | do_ffmpeg_crc() | 
					
						
							| 
									
										
										
										
											2002-05-20 16:20:05 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-01-15 07:56:15 +00:00
										 |  |  |     f="$1" | 
					
						
							| 
									
										
										
										
											2002-05-20 16:20:05 +00:00
										 |  |  |     shift | 
					
						
							| 
									
										
										
										
											2006-11-05 18:14:46 +00:00
										 |  |  |     echo $ffmpeg $FFMPEG_OPTS $* -f crc $datadir/ffmpeg.crc | 
					
						
							|  |  |  |     $ffmpeg $FFMPEG_OPTS $* -f crc $datadir/ffmpeg.crc > /tmp/ffmpeg$$ 2>&1 | 
					
						
							| 
									
										
										
										
											2004-10-28 10:30:05 +00:00
										 |  |  |     egrep -v "^(Stream|Press|Input|Output|frame|  Stream|  Duration|video:|ffmpeg version|  configuration|  built)" /tmp/ffmpeg$$ || true | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  |     rm -f /tmp/ffmpeg$$ | 
					
						
							| 
									
										
										
										
											2007-01-15 07:56:15 +00:00
										 |  |  |     echo "$f `cat $datadir/ffmpeg.crc`" >> $logfile | 
					
						
							| 
									
										
										
										
											2002-05-20 16:20:05 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2002-05-18 23:18:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-04-10 21:29:31 +00:00
										 |  |  | do_ffmpeg_nocheck() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2007-01-15 07:56:15 +00:00
										 |  |  |     f="$1" | 
					
						
							| 
									
										
										
										
											2003-04-10 21:29:31 +00:00
										 |  |  |     shift | 
					
						
							| 
									
										
										
										
											2006-11-05 18:14:46 +00:00
										 |  |  |     echo $ffmpeg $FFMPEG_OPTS $* | 
					
						
							| 
									
										
										
										
											2007-01-14 23:22:49 +00:00
										 |  |  |     $ffmpeg $FFMPEG_OPTS -benchmark $* > $bench 2> /tmp/ffmpeg$$ | 
					
						
							| 
									
										
										
										
											2004-10-28 10:30:05 +00:00
										 |  |  |     egrep -v "^(Stream|Press|Input|Output|frame|  Stream|  Duration|video:)" /tmp/ffmpeg$$ || true | 
					
						
							| 
									
										
										
										
											2003-05-12 02:53:43 +00:00
										 |  |  |     rm -f /tmp/ffmpeg$$ | 
					
						
							| 
									
										
										
										
											2007-01-14 23:22:49 +00:00
										 |  |  |     expr "`cat $bench`" : '.*utime=\(.*s\)' > $bench2 | 
					
						
							| 
									
										
										
										
											2007-01-15 07:56:15 +00:00
										 |  |  |     echo `cat $bench2` $f >> $benchfile | 
					
						
							| 
									
										
										
										
											2003-04-10 21:29:31 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-11-05 20:05:37 +00:00
										 |  |  | do_video_decoding() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-12-02 14:55:11 +00:00
										 |  |  |     do_ffmpeg $raw_dst -y $1 -i $file -f rawvideo $2 $raw_dst | 
					
						
							| 
									
										
										
										
											2006-11-05 20:05:37 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | do_video_encoding() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-12-02 14:46:33 +00:00
										 |  |  |     file=${outfile}$1 | 
					
						
							| 
									
										
										
										
											2006-12-02 15:03:28 +00:00
										 |  |  |     do_ffmpeg $file -y $2 -f $3 -i $raw_src $4 $file | 
					
						
							| 
									
										
										
										
											2006-11-05 20:05:37 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-01 11:29:37 +00:00
										 |  |  | do_audio_encoding() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     file=${outfile}$1 | 
					
						
							| 
									
										
										
										
											2007-03-05 10:04:53 +00:00
										 |  |  |     do_ffmpeg $file -y -ab 128k -ac 2 -f s16le -i $pcm_src $3 $file | 
					
						
							| 
									
										
										
										
											2006-12-01 11:29:37 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | do_audio_decoding() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     do_ffmpeg $pcm_dst -y -i $file -f wav $pcm_dst | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-01 11:09:56 +00:00
										 |  |  | do_libav() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     file=${outfile}libav.$1 | 
					
						
							|  |  |  |     do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f s16le -i $pcm_src $2 $file | 
					
						
							|  |  |  |     do_ffmpeg_crc $file -i $file $3 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-01 10:53:02 +00:00
										 |  |  | do_streamed_images() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     file=${outfile}libav.$1 | 
					
						
							|  |  |  |     do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f image2pipe $file | 
					
						
							|  |  |  |     do_ffmpeg_crc $file -f image2pipe -i $file | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-01 10:58:02 +00:00
										 |  |  | do_image_formats() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     file=${outfile}libav%02d.$1 | 
					
						
							| 
									
										
										
										
											2007-04-14 18:58:26 +00:00
										 |  |  |     $ffmpeg -t 0.5 -y -qscale 10 -f pgmyuv -i $raw_src $2 $3 -flags +bitexact $file | 
					
						
							| 
									
										
										
										
											2006-12-01 10:58:02 +00:00
										 |  |  |     do_ffmpeg_crc $file $3 -i $file | 
					
						
							| 
									
										
										
										
											2007-03-24 02:14:34 +00:00
										 |  |  |     do_md5sum ${outfile}libav02.$1 >> $logfile | 
					
						
							| 
									
										
										
										
											2006-12-01 10:58:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-01 10:44:28 +00:00
										 |  |  | do_audio_only() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     file=${outfile}libav.$1 | 
					
						
							|  |  |  |     do_ffmpeg $file -t 1 -y -qscale 10 -f s16le -i $pcm_src $file | 
					
						
							|  |  |  |     do_ffmpeg_crc $file -i $file | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-05-18 23:18:22 +00:00
										 |  |  | echo "ffmpeg regression test" > $logfile | 
					
						
							|  |  |  | echo "ffmpeg benchmarks" > $benchfile | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-04-10 21:29:31 +00:00
										 |  |  | ################################### | 
					
						
							|  |  |  | # generate reference for quality check | 
					
						
							|  |  |  | do_ffmpeg_nocheck $raw_ref -y -f pgmyuv -i $raw_src -an -f rawvideo $raw_ref | 
					
						
							| 
									
										
										
										
											2007-03-05 10:04:53 +00:00
										 |  |  | do_ffmpeg_nocheck $pcm_ref -y -ab 128k -ac 2 -ar 44100 -f s16le -i $pcm_src -f wav $pcm_ref | 
					
						
							| 
									
										
										
										
											2003-04-10 21:29:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-05-18 23:18:22 +00:00
										 |  |  | ################################### | 
					
						
							|  |  |  | if [ -n "$do_mpeg" ] ; then | 
					
						
							| 
									
										
										
										
											2007-01-14 23:31:01 +00:00
										 |  |  | # mpeg1 | 
					
						
							| 
									
										
										
										
											2006-12-02 15:03:28 +00:00
										 |  |  | do_video_encoding mpeg1.mpg "-qscale 10" pgmyuv "-f mpeg1video" | 
					
						
							| 
									
										
										
										
											2006-11-05 20:05:37 +00:00
										 |  |  | do_video_decoding | 
					
						
							| 
									
										
										
										
											2003-08-26 07:42:25 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ################################### | 
					
						
							|  |  |  | if [ -n "$do_mpeg2" ] ; then | 
					
						
							| 
									
										
										
										
											2007-01-14 23:31:01 +00:00
										 |  |  | # mpeg2 | 
					
						
							| 
									
										
										
										
											2006-12-02 15:03:28 +00:00
										 |  |  | do_video_encoding mpeg2.mpg "-qscale 10" pgmyuv "-vcodec mpeg2video -f mpeg1video" | 
					
						
							| 
									
										
										
										
											2006-11-05 20:05:37 +00:00
										 |  |  | do_video_decoding | 
					
						
							| 
									
										
										
										
											2003-12-10 17:06:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-21 17:55:02 +00:00
										 |  |  | # mpeg2 encoding intra vlc qprd | 
					
						
							| 
									
										
										
										
											2007-03-05 10:04:53 +00:00
										 |  |  | do_video_encoding mpeg2ivlc-qprd.mpg "-vb 500k -bf 2 -flags +trell+qprd+mv0 -flags2 +ivlc -cmp 2 -subcmp 2 -mbd rd" pgmyuv "-vcodec mpeg2video -f mpeg2video" | 
					
						
							| 
									
										
										
										
											2006-05-13 17:16:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # mpeg2 decoding | 
					
						
							| 
									
										
										
										
											2006-11-05 20:05:37 +00:00
										 |  |  | do_video_decoding | 
					
						
							| 
									
										
										
										
											2006-05-13 17:16:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-01-14 23:31:01 +00:00
										 |  |  | # mpeg2 | 
					
						
							| 
									
										
										
										
											2006-12-02 15:03:28 +00:00
										 |  |  | do_video_encoding mpeg2.mpg "-qscale 10" pgmyuv "-vcodec mpeg2video -idct int -dct int -f mpeg1video" | 
					
						
							| 
									
										
										
										
											2006-12-02 14:55:11 +00:00
										 |  |  | do_video_decoding "-idct int" | 
					
						
							| 
									
										
										
										
											2004-03-22 21:20:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-12-10 17:06:36 +00:00
										 |  |  | # mpeg2 encoding interlaced | 
					
						
							| 
									
										
										
										
											2006-12-02 15:03:28 +00:00
										 |  |  | do_video_encoding mpeg2i.mpg "-qscale 10" pgmyuv "-vcodec mpeg2video -f mpeg1video -flags +ildct+ilme" | 
					
						
							| 
									
										
										
										
											2002-05-18 23:18:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # mpeg2 decoding | 
					
						
							| 
									
										
										
										
											2006-11-05 20:05:37 +00:00
										 |  |  | do_video_decoding | 
					
						
							| 
									
										
										
										
											2002-05-18 23:18:22 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-02-13 17:54:10 +00:00
										 |  |  | ################################### | 
					
						
							|  |  |  | if [ -n "$do_mpeg2thread" ] ; then | 
					
						
							|  |  |  | # mpeg2 encoding interlaced | 
					
						
							| 
									
										
										
										
											2006-12-02 15:03:28 +00:00
										 |  |  | do_video_encoding mpeg2thread.mpg "-qscale 10" pgmyuv "-vcodec mpeg2video -f mpeg1video -bf 2 -flags +ildct+ilme -threads 2" | 
					
						
							| 
									
										
										
										
											2006-05-13 17:16:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # mpeg2 decoding | 
					
						
							| 
									
										
										
										
											2006-11-05 20:05:37 +00:00
										 |  |  | do_video_decoding | 
					
						
							| 
									
										
										
										
											2006-05-13 17:16:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # mpeg2 encoding interlaced using intra vlc | 
					
						
							| 
									
										
										
										
											2006-12-02 15:03:28 +00:00
										 |  |  | do_video_encoding mpeg2threadivlc.mpg "-qscale 10" pgmyuv "-vcodec mpeg2video -f mpeg1video -bf 2 -flags +ildct+ilme -flags2 +ivlc -threads 2" | 
					
						
							| 
									
										
										
										
											2004-02-13 17:54:10 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-11-16 14:02:41 +00:00
										 |  |  | # mpeg2 decoding | 
					
						
							| 
									
										
										
										
											2006-11-05 20:05:37 +00:00
										 |  |  | do_video_decoding | 
					
						
							| 
									
										
										
										
											2004-11-16 14:02:41 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # mpeg2 encoding interlaced | 
					
						
							|  |  |  | file=${outfile}mpeg2reuse.mpg | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | do_ffmpeg $file -y -sameq -me_threshold 256 -mb_threshold 1024 -i ${outfile}mpeg2thread.mpg -vcodec mpeg2video -f mpeg1video -bf 2 -flags +ildct+ilme -threads 4 $file | 
					
						
							| 
									
										
										
										
											2004-11-16 14:02:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-02-13 17:54:10 +00:00
										 |  |  | # mpeg2 decoding | 
					
						
							| 
									
										
										
										
											2006-11-05 20:05:37 +00:00
										 |  |  | do_video_decoding | 
					
						
							| 
									
										
										
										
											2004-02-13 17:54:10 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-09-06 22:59:44 +00:00
										 |  |  | ################################### | 
					
						
							|  |  |  | if [ -n "$do_msmpeg4v2" ] ; then | 
					
						
							| 
									
										
										
										
											2007-01-14 23:31:01 +00:00
										 |  |  | # msmpeg4 | 
					
						
							| 
									
										
										
										
											2006-12-02 15:03:28 +00:00
										 |  |  | do_video_encoding msmpeg4v2.avi "-qscale 10" pgmyuv "-an -vcodec msmpeg4v2" | 
					
						
							| 
									
										
										
										
											2006-11-05 20:05:37 +00:00
										 |  |  | do_video_decoding | 
					
						
							| 
									
										
										
										
											2002-09-06 22:59:44 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-05-18 23:18:22 +00:00
										 |  |  | ################################### | 
					
						
							|  |  |  | if [ -n "$do_msmpeg4" ] ; then | 
					
						
							| 
									
										
										
										
											2007-01-14 23:31:01 +00:00
										 |  |  | # msmpeg4 | 
					
						
							| 
									
										
										
										
											2006-12-02 15:03:28 +00:00
										 |  |  | do_video_encoding msmpeg4.avi "-qscale 10" pgmyuv "-an -vcodec msmpeg4" | 
					
						
							| 
									
										
										
										
											2006-11-05 20:05:37 +00:00
										 |  |  | do_video_decoding | 
					
						
							| 
									
										
										
										
											2002-05-18 23:18:22 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-09-06 22:59:44 +00:00
										 |  |  | ################################### | 
					
						
							|  |  |  | if [ -n "$do_wmv1" ] ; then | 
					
						
							| 
									
										
										
										
											2007-01-14 23:31:01 +00:00
										 |  |  | # wmv1 | 
					
						
							| 
									
										
										
										
											2006-12-02 15:03:28 +00:00
										 |  |  | do_video_encoding wmv1.avi "-qscale 10" pgmyuv "-an -vcodec wmv1" | 
					
						
							| 
									
										
										
										
											2006-11-05 20:05:37 +00:00
										 |  |  | do_video_decoding | 
					
						
							| 
									
										
										
										
											2002-09-06 22:59:44 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-08 11:50:26 +00:00
										 |  |  | ################################### | 
					
						
							|  |  |  | if [ -n "$do_wmv2" ] ; then | 
					
						
							| 
									
										
										
										
											2007-01-14 23:31:01 +00:00
										 |  |  | # wmv2 | 
					
						
							| 
									
										
										
										
											2006-12-02 15:03:28 +00:00
										 |  |  | do_video_encoding wmv2.avi "-qscale 10" pgmyuv "-an -vcodec wmv2" | 
					
						
							| 
									
										
										
										
											2006-11-05 20:05:37 +00:00
										 |  |  | do_video_decoding | 
					
						
							| 
									
										
										
										
											2003-03-08 11:50:26 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-10-28 10:24:02 +00:00
										 |  |  | ################################### | 
					
						
							|  |  |  | if [ -n "$do_h261" ] ; then | 
					
						
							| 
									
										
										
										
											2007-01-14 23:31:01 +00:00
										 |  |  | # h261 | 
					
						
							| 
									
										
										
										
											2006-12-02 15:03:28 +00:00
										 |  |  | do_video_encoding h261.avi "-qscale 11" pgmyuv "-s 352x288 -an -vcodec h261" | 
					
						
							| 
									
										
										
										
											2006-11-05 20:05:37 +00:00
										 |  |  | do_video_decoding | 
					
						
							| 
									
										
										
										
											2004-10-28 10:24:02 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-05-18 23:18:22 +00:00
										 |  |  | ################################### | 
					
						
							|  |  |  | if [ -n "$do_h263" ] ; then | 
					
						
							| 
									
										
										
										
											2007-01-14 23:31:01 +00:00
										 |  |  | # h263 | 
					
						
							| 
									
										
										
										
											2006-12-02 15:03:28 +00:00
										 |  |  | do_video_encoding h263.avi "-qscale 10" pgmyuv "-s 352x288 -an -vcodec h263" | 
					
						
							| 
									
										
										
										
											2006-11-05 20:05:37 +00:00
										 |  |  | do_video_decoding | 
					
						
							| 
									
										
										
										
											2002-10-25 10:50:02 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ################################### | 
					
						
							|  |  |  | if [ -n "$do_h263p" ] ; then | 
					
						
							| 
									
										
										
										
											2007-01-14 23:31:01 +00:00
										 |  |  | # h263p | 
					
						
							| 
									
										
										
										
											2006-12-02 15:03:28 +00:00
										 |  |  | do_video_encoding h263p.avi "-qscale 2 -flags +umv+aiv+aic" pgmyuv "-s 352x288 -an -vcodec h263p -ps 300" | 
					
						
							| 
									
										
										
										
											2006-11-05 20:05:37 +00:00
										 |  |  | do_video_decoding | 
					
						
							| 
									
										
										
										
											2002-05-18 23:18:22 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ################################### | 
					
						
							|  |  |  | if [ -n "$do_mpeg4" ] ; then | 
					
						
							|  |  |  | # mpeg4 | 
					
						
							| 
									
										
										
										
											2007-01-14 23:44:55 +00:00
										 |  |  | do_video_encoding odivx.mp4 "-flags +mv4 -mbd bits -qscale 10" pgmyuv "-an -vcodec mpeg4" | 
					
						
							|  |  |  | do_video_decoding | 
					
						
							| 
									
										
										
										
											2002-05-18 23:18:22 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-11 20:51:03 +00:00
										 |  |  | ################################### | 
					
						
							|  |  |  | if [ -n "$do_huffyuv" ] ; then | 
					
						
							|  |  |  | # huffyuv | 
					
						
							| 
									
										
										
										
											2006-12-02 15:03:28 +00:00
										 |  |  | do_video_encoding huffyuv.avi "" pgmyuv "-an -vcodec huffyuv -pix_fmt yuv422p" | 
					
						
							| 
									
										
										
										
											2006-12-02 14:55:11 +00:00
										 |  |  | do_video_decoding "" "-strict -2 -pix_fmt yuv420p" | 
					
						
							| 
									
										
										
										
											2003-01-11 20:51:03 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-09-20 15:22:24 +00:00
										 |  |  | ################################### | 
					
						
							|  |  |  | if [ -n "$do_rc" ] ; then | 
					
						
							|  |  |  | # mpeg4 rate control | 
					
						
							| 
									
										
										
										
											2007-01-14 23:44:55 +00:00
										 |  |  | do_video_encoding mpeg4-rc.avi "-b 400k -bf 2" pgmyuv "-an -vcodec mpeg4" | 
					
						
							|  |  |  | do_video_decoding | 
					
						
							| 
									
										
										
										
											2002-09-20 15:22:24 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ################################### | 
					
						
							|  |  |  | if [ -n "$do_mpeg4adv" ] ; then | 
					
						
							|  |  |  | # mpeg4 | 
					
						
							| 
									
										
										
										
											2006-12-02 15:03:28 +00:00
										 |  |  | do_video_encoding mpeg4-adv.avi "-qscale 9 -flags +mv4+part+aic+trell -mbd bits -ps 200" pgmyuv "-an -vcodec mpeg4" | 
					
						
							| 
									
										
										
										
											2006-12-21 13:03:07 +00:00
										 |  |  | do_video_decoding | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # mpeg4 | 
					
						
							|  |  |  | do_video_encoding mpeg4-qprd.avi "-b 450k -bf 2 -flags +mv4+trell+qprd+mv0 -cmp 2 -subcmp 2 -mbd rd" pgmyuv "-an -vcodec mpeg4" | 
					
						
							|  |  |  | do_video_decoding | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # mpeg4 | 
					
						
							|  |  |  | do_video_encoding mpeg4-adap.avi "-b 550k -bf 2 -flags +mv4+trell+mv0 -cmp 1 -subcmp 2 -mbd rd -scplx_mask 0.3" pgmyuv "-an -vcodec mpeg4" | 
					
						
							| 
									
										
										
										
											2006-11-05 20:05:37 +00:00
										 |  |  | do_video_decoding | 
					
						
							| 
									
										
										
										
											2002-09-20 15:22:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-02-13 17:54:10 +00:00
										 |  |  | # mpeg4 | 
					
						
							| 
									
										
										
										
											2007-01-14 23:55:54 +00:00
										 |  |  | do_video_encoding mpeg4-Q.avi "-qscale 7 -flags +mv4+qpel -mbd 2 -bf 2 -cmp 1 -subcmp 2" pgmyuv "-an -vcodec mpeg4" | 
					
						
							| 
									
										
										
										
											2006-11-05 20:05:37 +00:00
										 |  |  | do_video_decoding | 
					
						
							| 
									
										
										
										
											2004-04-24 14:41:57 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ################################### | 
					
						
							| 
									
										
										
										
											2007-01-14 23:55:54 +00:00
										 |  |  | if [ -n "$do_mpeg4thread" ] ; then | 
					
						
							| 
									
										
										
										
											2004-04-24 14:41:57 +00:00
										 |  |  | # mpeg4 | 
					
						
							| 
									
										
										
										
											2007-01-14 23:55:54 +00:00
										 |  |  | do_video_encoding mpeg4-thread.avi "-b 500k -flags +mv4+part+aic+trell -mbd bits -ps 200 -bf 2" pgmyuv "-an -vcodec mpeg4 -threads 2" | 
					
						
							| 
									
										
										
										
											2006-11-05 20:05:37 +00:00
										 |  |  | do_video_decoding | 
					
						
							| 
									
										
										
										
											2004-02-13 17:54:10 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-24 08:03:42 +00:00
										 |  |  | ################################### | 
					
						
							|  |  |  | if [ -n "$do_mp4psp" ] ; then | 
					
						
							|  |  |  | # mp4 PSP style | 
					
						
							| 
									
										
										
										
											2007-03-05 10:04:53 +00:00
										 |  |  | do_video_encoding mpeg4-PSP.mp4 "-vb 768k -s 320x240" psp "-ar 24000 -ab 32k -i $raw_src" | 
					
						
							| 
									
										
										
										
											2006-01-24 08:03:42 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-12-14 01:42:00 +00:00
										 |  |  | ################################### | 
					
						
							|  |  |  | if [ -n "$do_error" ] ; then | 
					
						
							|  |  |  | # damaged mpeg4 | 
					
						
							| 
									
										
										
										
											2006-12-02 15:03:28 +00:00
										 |  |  | do_video_encoding error-mpeg4-adv.avi "-qscale 7 -flags +mv4+part+aic -mbd rd -ps 250 -error 10" pgmyuv "-an -vcodec mpeg4" | 
					
						
							| 
									
										
										
										
											2006-11-05 20:05:37 +00:00
										 |  |  | do_video_decoding | 
					
						
							| 
									
										
										
										
											2003-12-14 01:42:00 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-01-02 21:26:51 +00:00
										 |  |  | ################################### | 
					
						
							|  |  |  | if [ -n "$do_mpeg4nr" ] ; then | 
					
						
							|  |  |  | # noise reduction | 
					
						
							| 
									
										
										
										
											2006-12-02 15:03:28 +00:00
										 |  |  | do_video_encoding mpeg4-nr.avi "-qscale 8 -flags +mv4 -mbd rd -nr 200" pgmyuv "-an -vcodec mpeg4" | 
					
						
							| 
									
										
										
										
											2006-11-05 20:05:37 +00:00
										 |  |  | do_video_decoding | 
					
						
							| 
									
										
										
										
											2004-01-02 21:26:51 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-02-08 12:13:32 +00:00
										 |  |  | ################################### | 
					
						
							|  |  |  | if [ -n "$do_mpeg1b" ] ; then | 
					
						
							|  |  |  | # mpeg1 | 
					
						
							| 
									
										
										
										
											2006-12-02 15:03:28 +00:00
										 |  |  | do_video_encoding mpeg1b.mpg "-qscale 8 -bf 3 -ps 200" pgmyuv "-an -vcodec mpeg1video -f mpeg1video" | 
					
						
							| 
									
										
										
										
											2006-11-05 20:05:37 +00:00
										 |  |  | do_video_decoding | 
					
						
							| 
									
										
										
										
											2003-02-08 12:13:32 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-05-18 23:18:22 +00:00
										 |  |  | ################################### | 
					
						
							|  |  |  | if [ -n "$do_mjpeg" ] ; then | 
					
						
							|  |  |  | # mjpeg | 
					
						
							| 
									
										
										
										
											2006-12-02 15:03:28 +00:00
										 |  |  | do_video_encoding mjpeg.avi "-qscale 10" pgmyuv "-an -vcodec mjpeg -pix_fmt yuvj420p" | 
					
						
							| 
									
										
										
										
											2006-12-02 14:55:11 +00:00
										 |  |  | do_video_decoding "" "-pix_fmt yuv420p" | 
					
						
							| 
									
										
										
										
											2002-05-18 23:18:22 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ################################### | 
					
						
							| 
									
										
										
										
											2003-07-12 16:26:08 +00:00
										 |  |  | if [ -n "$do_ljpeg" ] ; then | 
					
						
							|  |  |  | # ljpeg | 
					
						
							| 
									
										
										
										
											2006-12-02 15:03:28 +00:00
										 |  |  | do_video_encoding ljpeg.avi "" pgmyuv "-an -vcodec ljpeg -strict -1" | 
					
						
							| 
									
										
										
										
											2006-11-05 20:05:37 +00:00
										 |  |  | do_video_decoding | 
					
						
							| 
									
										
										
										
											2003-07-12 16:26:08 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-02 15:34:09 +00:00
										 |  |  | ################################### | 
					
						
							|  |  |  | if [ -n "$do_jpegls" ] ; then | 
					
						
							|  |  |  | # jpeg ls | 
					
						
							| 
									
										
										
										
											2006-12-02 15:03:28 +00:00
										 |  |  | do_video_encoding jpegls.avi "" pgmyuv "-an -vcodec jpegls -vtag MJPG" | 
					
						
							| 
									
										
										
										
											2006-12-02 14:55:11 +00:00
										 |  |  | do_video_decoding "" "-pix_fmt yuv420p" | 
					
						
							| 
									
										
										
										
											2006-02-02 15:34:09 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-07-12 16:26:08 +00:00
										 |  |  | ################################### | 
					
						
							| 
									
										
										
										
											2002-05-18 23:18:22 +00:00
										 |  |  | if [ -n "$do_rv10" ] ; then | 
					
						
							|  |  |  | # rv10 encoding | 
					
						
							| 
									
										
										
										
											2006-12-02 15:03:28 +00:00
										 |  |  | do_video_encoding rv10.rm "-qscale 10" pgmyuv "-an" | 
					
						
							| 
									
										
										
										
											2006-11-05 20:05:37 +00:00
										 |  |  | do_video_decoding | 
					
						
							| 
									
										
										
										
											2002-05-18 23:18:22 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-12-07 13:48:25 +00:00
										 |  |  | ################################### | 
					
						
							|  |  |  | if [ -n "$do_rv20" ] ; then | 
					
						
							|  |  |  | # rv20 encoding | 
					
						
							| 
									
										
										
										
											2006-12-02 15:03:28 +00:00
										 |  |  | do_video_encoding rv20.rm "-qscale 10" pgmyuv "-vcodec rv20 -an" | 
					
						
							| 
									
										
										
										
											2006-11-05 20:05:37 +00:00
										 |  |  | do_video_decoding | 
					
						
							| 
									
										
										
										
											2004-12-07 13:48:25 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-05-27 22:43:34 +00:00
										 |  |  | ################################### | 
					
						
							|  |  |  | if [ -n "$do_asv1" ] ; then | 
					
						
							|  |  |  | # asv1 encoding | 
					
						
							| 
									
										
										
										
											2006-12-02 15:03:28 +00:00
										 |  |  | do_video_encoding asv1.avi "-qscale 10" pgmyuv "-an -vcodec asv1" | 
					
						
							| 
									
										
										
										
											2006-11-05 20:05:37 +00:00
										 |  |  | do_video_decoding | 
					
						
							| 
									
										
										
										
											2003-05-27 22:43:34 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-09-01 13:05:21 +00:00
										 |  |  | ################################### | 
					
						
							|  |  |  | if [ -n "$do_asv2" ] ; then | 
					
						
							|  |  |  | # asv2 encoding | 
					
						
							| 
									
										
										
										
											2006-12-02 15:03:28 +00:00
										 |  |  | do_video_encoding asv2.avi "-qscale 10" pgmyuv "-an -vcodec asv2" | 
					
						
							| 
									
										
										
										
											2006-11-05 20:05:37 +00:00
										 |  |  | do_video_decoding | 
					
						
							| 
									
										
										
										
											2003-09-01 13:05:21 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-07-09 23:52:06 +00:00
										 |  |  | ################################### | 
					
						
							|  |  |  | if [ -n "$do_flv" ] ; then | 
					
						
							|  |  |  | # flv encoding | 
					
						
							| 
									
										
										
										
											2006-12-02 15:03:28 +00:00
										 |  |  | do_video_encoding flv.flv "-qscale 10" pgmyuv "-an -vcodec flv" | 
					
						
							| 
									
										
										
										
											2006-11-05 20:05:37 +00:00
										 |  |  | do_video_decoding | 
					
						
							| 
									
										
										
										
											2003-07-09 23:52:06 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-11-03 21:59:21 +00:00
										 |  |  | ################################### | 
					
						
							|  |  |  | if [ -n "$do_ffv1" ] ; then | 
					
						
							|  |  |  | # ffv1 encoding | 
					
						
							| 
									
										
										
										
											2006-12-02 15:03:28 +00:00
										 |  |  | do_video_encoding ffv1.avi "-strict -2" pgmyuv "-an -vcodec ffv1" | 
					
						
							| 
									
										
										
										
											2006-11-05 20:05:37 +00:00
										 |  |  | do_video_decoding | 
					
						
							| 
									
										
										
										
											2005-04-03 15:39:17 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ################################### | 
					
						
							|  |  |  | if [ -n "$do_snow" ] ; then | 
					
						
							| 
									
										
										
										
											2007-01-14 23:31:01 +00:00
										 |  |  | # snow | 
					
						
							| 
									
										
										
										
											2006-12-02 15:03:28 +00:00
										 |  |  | do_video_encoding snow.avi "-strict -2" pgmyuv "-an -vcodec snow -qscale 2 -flags +qpel -me iter -dia_size 2 -cmp 12 -subcmp 12 -s 128x64" | 
					
						
							| 
									
										
										
										
											2006-12-02 14:55:11 +00:00
										 |  |  | do_video_decoding "" "-s 352x288" | 
					
						
							| 
									
										
										
										
											2006-01-14 01:58:38 +00:00
										 |  |  | fi | 
					
						
							| 
									
										
										
										
											2005-04-03 15:39:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-14 01:58:38 +00:00
										 |  |  | ################################### | 
					
						
							|  |  |  | if [ -n "$do_snowll" ] ; then | 
					
						
							| 
									
										
										
										
											2007-01-14 23:31:01 +00:00
										 |  |  | # snow | 
					
						
							| 
									
										
										
										
											2006-12-02 15:03:28 +00:00
										 |  |  | do_video_encoding snow53.avi "-strict -2" pgmyuv "-an -vcodec snow -qscale .001 -pred 1 -flags +mv4+qpel" | 
					
						
							| 
									
										
										
										
											2006-11-05 20:05:37 +00:00
										 |  |  | do_video_decoding | 
					
						
							| 
									
										
										
										
											2003-11-03 21:59:21 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-08-30 19:44:02 +00:00
										 |  |  | ################################### | 
					
						
							|  |  |  | if [ -n "$do_dv" ] ; then | 
					
						
							| 
									
										
										
										
											2007-01-14 23:31:01 +00:00
										 |  |  | # dv | 
					
						
							| 
									
										
										
										
											2006-12-02 15:03:28 +00:00
										 |  |  | do_video_encoding dv.dv "-dct int" pgmyuv "-s pal -an" | 
					
						
							| 
									
										
										
										
											2006-12-02 14:55:11 +00:00
										 |  |  | do_video_decoding "" "-s cif" | 
					
						
							| 
									
										
										
										
											2005-08-30 19:44:02 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-06 08:54:33 +00:00
										 |  |  | ################################### | 
					
						
							|  |  |  | if [ -n "$do_dv50" ] ; then | 
					
						
							| 
									
										
										
										
											2007-01-14 23:31:01 +00:00
										 |  |  | # dv50 | 
					
						
							| 
									
										
										
										
											2006-12-02 15:03:28 +00:00
										 |  |  | do_video_encoding dv.dv "-dct int" pgmyuv "-s pal -pix_fmt yuv422p -an" | 
					
						
							| 
									
										
										
										
											2006-12-02 14:55:11 +00:00
										 |  |  | do_video_decoding "" "-s cif -pix_fmt yuv420p" | 
					
						
							| 
									
										
										
										
											2006-03-06 08:54:33 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-05-12 03:33:40 +00:00
										 |  |  | ################################### | 
					
						
							|  |  |  | if [ -n "$do_svq1" ] ; then | 
					
						
							| 
									
										
										
										
											2007-01-14 23:31:01 +00:00
										 |  |  | # svq1 | 
					
						
							| 
									
										
										
										
											2006-12-02 15:03:28 +00:00
										 |  |  | do_video_encoding svq1.mov "" pgmyuv "-an -vcodec svq1 -qscale 3 -pix_fmt yuv410p" | 
					
						
							| 
									
										
										
										
											2006-12-02 14:55:11 +00:00
										 |  |  | do_video_decoding "" "-pix_fmt yuv420p" | 
					
						
							| 
									
										
										
										
											2004-05-12 03:33:40 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-05-18 23:18:22 +00:00
										 |  |  | ################################### | 
					
						
							|  |  |  | if [ -n "$do_mp2" ] ; then | 
					
						
							| 
									
										
										
										
											2007-01-14 23:31:01 +00:00
										 |  |  | # mp2 | 
					
						
							| 
									
										
										
										
											2006-12-01 11:29:37 +00:00
										 |  |  | do_audio_encoding mp2.mp2 "-ar 44100" | 
					
						
							|  |  |  | do_audio_decoding | 
					
						
							| 
									
										
										
										
											2005-02-01 21:16:33 +00:00
										 |  |  | $tiny_psnr $pcm_dst $pcm_ref 2 1924 >> $logfile | 
					
						
							| 
									
										
										
										
											2002-05-18 23:18:22 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ################################### | 
					
						
							|  |  |  | if [ -n "$do_ac3" ] ; then | 
					
						
							| 
									
										
										
										
											2007-01-14 23:31:01 +00:00
										 |  |  | # ac3 | 
					
						
							| 
									
										
										
										
											2006-12-01 11:29:37 +00:00
										 |  |  | do_audio_encoding ac3.rm "" -vn | 
					
						
							|  |  |  | #do_audio_decoding | 
					
						
							| 
									
										
										
										
											2002-05-18 23:18:22 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-02-07 15:10:47 +00:00
										 |  |  | ################################### | 
					
						
							|  |  |  | if [ -n "$do_g726" ] ; then | 
					
						
							| 
									
										
										
										
											2007-01-14 23:31:01 +00:00
										 |  |  | # g726 | 
					
						
							| 
									
										
										
										
											2007-03-05 10:04:53 +00:00
										 |  |  | do_audio_encoding g726.wav "-ar 44100" "-ab 32k -ac 1 -ar 8000 -acodec g726" | 
					
						
							| 
									
										
										
										
											2006-12-01 11:29:37 +00:00
										 |  |  | do_audio_decoding | 
					
						
							| 
									
										
										
										
											2004-02-07 15:10:47 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-02-08 02:35:37 +00:00
										 |  |  | ################################### | 
					
						
							|  |  |  | if [ -n "$do_adpcm_ima_wav" ] ; then | 
					
						
							| 
									
										
										
										
											2007-01-14 23:31:01 +00:00
										 |  |  | # adpcm ima | 
					
						
							| 
									
										
										
										
											2006-12-01 11:29:37 +00:00
										 |  |  | do_audio_encoding adpcm_ima.wav "-ar 44100" "-acodec adpcm_ima_wav" | 
					
						
							|  |  |  | do_audio_decoding | 
					
						
							| 
									
										
										
										
											2004-02-08 02:35:37 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ################################### | 
					
						
							|  |  |  | if [ -n "$do_adpcm_ms" ] ; then | 
					
						
							| 
									
										
										
										
											2007-01-14 23:31:01 +00:00
										 |  |  | # adpcm ms | 
					
						
							| 
									
										
										
										
											2006-12-01 11:29:37 +00:00
										 |  |  | do_audio_encoding adpcm_ms.wav "-ar 44100" "-acodec adpcm_ms" | 
					
						
							|  |  |  | do_audio_decoding | 
					
						
							| 
									
										
										
										
											2004-02-08 02:35:37 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-25 14:36:58 +00:00
										 |  |  | ################################### | 
					
						
							|  |  |  | if [ -n "$do_adpcm_yam" ] ; then | 
					
						
							| 
									
										
										
										
											2007-01-14 23:31:01 +00:00
										 |  |  | # adpcm yamaha | 
					
						
							| 
									
										
										
										
											2006-12-01 11:29:37 +00:00
										 |  |  | do_audio_encoding adpcm_yam.wav "-ar 44100" "-acodec adpcm_yamaha" | 
					
						
							|  |  |  | do_audio_decoding | 
					
						
							| 
									
										
										
										
											2005-07-25 14:36:58 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-24 11:40:21 +00:00
										 |  |  | ################################### | 
					
						
							|  |  |  | if [ -n "$do_flac" ] ; then | 
					
						
							| 
									
										
										
										
											2007-01-14 23:31:01 +00:00
										 |  |  | # flac | 
					
						
							| 
									
										
										
										
											2006-12-01 11:29:37 +00:00
										 |  |  | do_audio_encoding flac.flac "-ar 44100" "-acodec flac -compression_level 2" | 
					
						
							|  |  |  | do_audio_decoding | 
					
						
							| 
									
										
										
										
											2006-06-24 11:40:21 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-02-06 23:59:10 +00:00
										 |  |  | ################################### | 
					
						
							|  |  |  | if [ -n "$do_wma" ] ; then | 
					
						
							|  |  |  | # wmav1 | 
					
						
							|  |  |  | do_audio_encoding wmav1.asf "-ar 44100" "-acodec wmav1" | 
					
						
							| 
									
										
										
										
											2007-02-12 19:59:38 +00:00
										 |  |  | do_ffmpeg_nomd5 $pcm_dst -y -i $file -f wav $pcm_dst | 
					
						
							| 
									
										
										
										
											2007-02-06 23:59:10 +00:00
										 |  |  | $tiny_psnr $pcm_dst $pcm_ref 2 8192 >> $logfile | 
					
						
							|  |  |  | # wmav2 | 
					
						
							|  |  |  | do_audio_encoding wmav2.asf "-ar 44100" "-acodec wmav2" | 
					
						
							| 
									
										
										
										
											2007-02-12 19:59:38 +00:00
										 |  |  | do_ffmpeg_nomd5 $pcm_dst -y -i $file -f wav $pcm_dst | 
					
						
							| 
									
										
										
										
											2007-02-06 23:59:10 +00:00
										 |  |  | $tiny_psnr $pcm_dst $pcm_ref 2 8192 >> $logfile | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-02-07 17:04:30 +00:00
										 |  |  | ################################### | 
					
						
							| 
									
										
										
										
											2007-02-12 19:50:57 +00:00
										 |  |  | #if [ -n "$do_vorbis" ] ; then | 
					
						
							| 
									
										
										
										
											2007-02-07 17:04:30 +00:00
										 |  |  | # vorbis | 
					
						
							| 
									
										
										
										
											2007-02-12 19:50:57 +00:00
										 |  |  | #disabled because its broken | 
					
						
							|  |  |  | #do_audio_encoding vorbis.asf "-ar 44100" "-acodec vorbis" | 
					
						
							|  |  |  | #do_audio_decoding | 
					
						
							|  |  |  | #fi | 
					
						
							| 
									
										
										
										
											2007-02-06 23:59:10 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-05-20 16:20:05 +00:00
										 |  |  | ################################### | 
					
						
							| 
									
										
										
										
											2007-01-18 08:23:36 +00:00
										 |  |  | # libavformat testing | 
					
						
							| 
									
										
										
										
											2002-05-20 16:20:05 +00:00
										 |  |  | ################################### | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-01-18 08:21:55 +00:00
										 |  |  | if [ -n "$do_libavtest" ] ; then | 
					
						
							| 
									
										
										
										
											2002-05-20 16:20:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # avi | 
					
						
							| 
									
										
										
										
											2006-12-01 11:09:56 +00:00
										 |  |  | do_libav avi | 
					
						
							| 
									
										
										
										
											2002-05-20 16:20:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # asf | 
					
						
							| 
									
										
										
										
											2006-12-01 11:09:56 +00:00
										 |  |  | do_libav asf "-acodec mp2" "-r 25" | 
					
						
							| 
									
										
										
										
											2002-05-20 16:20:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # rm | 
					
						
							|  |  |  | file=${outfile}libav.rm | 
					
						
							|  |  |  | do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f s16le -i $pcm_src $file | 
					
						
							|  |  |  | # broken | 
					
						
							|  |  |  | #do_ffmpeg_crc $file -i $file | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # mpegps | 
					
						
							| 
									
										
										
										
											2006-12-01 11:09:56 +00:00
										 |  |  | do_libav mpg | 
					
						
							| 
									
										
										
										
											2002-05-20 16:20:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-06-03 19:06:06 +00:00
										 |  |  | # mpegts | 
					
						
							| 
									
										
										
										
											2006-12-01 11:09:56 +00:00
										 |  |  | do_libav ts | 
					
						
							| 
									
										
										
										
											2005-06-03 19:06:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-01-09 15:27:56 +00:00
										 |  |  | # swf | 
					
						
							|  |  |  | do_libav swf -an | 
					
						
							| 
									
										
										
										
											2002-05-20 16:20:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # ffm | 
					
						
							| 
									
										
										
										
											2006-12-01 11:09:56 +00:00
										 |  |  | do_libav ffm | 
					
						
							| 
									
										
										
										
											2002-05-20 16:20:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-07-09 23:52:06 +00:00
										 |  |  | # flv | 
					
						
							| 
									
										
										
										
											2006-12-01 11:09:56 +00:00
										 |  |  | do_libav flv -an | 
					
						
							| 
									
										
										
										
											2003-07-09 23:52:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-10-01 16:45:59 +00:00
										 |  |  | # mov | 
					
						
							| 
									
										
										
										
											2006-12-01 11:09:56 +00:00
										 |  |  | do_libav mov "-acodec pcm_alaw" | 
					
						
							| 
									
										
										
										
											2003-10-01 16:45:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # nut | 
					
						
							| 
									
										
										
										
											2006-12-01 11:09:56 +00:00
										 |  |  | #do_libav nut "-acodec mp2" | 
					
						
							| 
									
										
										
										
											2003-10-01 16:45:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-05-31 00:45:27 +00:00
										 |  |  | # dv | 
					
						
							| 
									
										
										
										
											2006-12-01 11:09:56 +00:00
										 |  |  | do_libav dv "-ar 48000 -r 25 -s pal -ac 2" | 
					
						
							| 
									
										
										
										
											2004-05-31 00:45:27 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-21 15:10:47 +00:00
										 |  |  | # gxf | 
					
						
							| 
									
										
										
										
											2006-12-01 11:09:56 +00:00
										 |  |  | do_libav gxf "-ar 48000 -r 25 -s pal -ac 1" | 
					
						
							| 
									
										
										
										
											2006-08-21 15:10:47 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-05-20 16:20:05 +00:00
										 |  |  | #################### | 
					
						
							|  |  |  | # streamed images | 
					
						
							|  |  |  | # mjpeg | 
					
						
							| 
									
										
										
										
											2003-05-12 02:53:43 +00:00
										 |  |  | #file=${outfile}libav.mjpeg | 
					
						
							|  |  |  | #do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src $file | 
					
						
							|  |  |  | #do_ffmpeg_crc $file -i $file | 
					
						
							| 
									
										
										
										
											2002-05-20 16:20:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-11 05:32:29 +00:00
										 |  |  | # pbmpipe | 
					
						
							| 
									
										
										
										
											2006-12-01 10:53:02 +00:00
										 |  |  | do_streamed_images pbm | 
					
						
							| 
									
										
										
										
											2003-01-11 05:32:29 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-05-20 16:20:05 +00:00
										 |  |  | # pgmpipe | 
					
						
							| 
									
										
										
										
											2006-12-01 10:53:02 +00:00
										 |  |  | do_streamed_images pgm | 
					
						
							| 
									
										
										
										
											2002-05-20 16:20:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # ppmpipe | 
					
						
							| 
									
										
										
										
											2006-12-01 10:53:02 +00:00
										 |  |  | do_streamed_images ppm | 
					
						
							| 
									
										
										
										
											2002-05-20 16:20:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # gif | 
					
						
							|  |  |  | file=${outfile}libav.gif | 
					
						
							| 
									
										
										
										
											2006-08-02 09:48:05 +00:00
										 |  |  | do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -pix_fmt rgb24 $file | 
					
						
							| 
									
										
										
										
											2003-01-11 05:32:29 +00:00
										 |  |  | #do_ffmpeg_crc $file -i $file | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # yuv4mpeg | 
					
						
							| 
									
										
										
										
											2005-04-26 09:06:39 +00:00
										 |  |  | file=${outfile}libav.y4m | 
					
						
							| 
									
										
										
										
											2003-01-11 05:32:29 +00:00
										 |  |  | do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src $file | 
					
						
							|  |  |  | #do_ffmpeg_crc $file -i $file | 
					
						
							| 
									
										
										
										
											2002-05-20 16:20:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #################### | 
					
						
							|  |  |  | # image formats | 
					
						
							| 
									
										
										
										
											2007-03-24 02:14:34 +00:00
										 |  |  | # pgm | 
					
						
							| 
									
										
										
										
											2006-12-01 10:58:02 +00:00
										 |  |  | do_image_formats pgm | 
					
						
							| 
									
										
										
										
											2002-05-20 16:20:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-03-24 02:14:34 +00:00
										 |  |  | # ppm | 
					
						
							| 
									
										
										
										
											2006-12-01 10:58:02 +00:00
										 |  |  | do_image_formats ppm | 
					
						
							| 
									
										
										
										
											2002-05-20 16:20:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-03-24 02:14:34 +00:00
										 |  |  | # bmp | 
					
						
							| 
									
										
										
										
											2007-03-24 02:03:20 +00:00
										 |  |  | do_image_formats bmp | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-03-24 02:14:34 +00:00
										 |  |  | # tga | 
					
						
							| 
									
										
										
										
											2007-03-24 02:03:20 +00:00
										 |  |  | do_image_formats tga | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-04-06 20:47:03 +00:00
										 |  |  | # tiff | 
					
						
							| 
									
										
										
										
											2007-04-06 23:16:08 +00:00
										 |  |  | do_image_formats tiff "-pix_fmt rgb24" | 
					
						
							| 
									
										
										
										
											2007-04-06 20:47:03 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # sgi | 
					
						
							|  |  |  | do_image_formats sgi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-03-24 02:14:34 +00:00
										 |  |  | # jpeg | 
					
						
							| 
									
										
										
										
											2006-12-01 10:58:02 +00:00
										 |  |  | do_image_formats jpg "-flags +bitexact -dct fastint -idct simple -pix_fmt yuvj420p" "-f image2" | 
					
						
							| 
									
										
										
										
											2002-05-25 22:47:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-05-20 16:20:05 +00:00
										 |  |  | #################### | 
					
						
							|  |  |  | # audio only | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # wav | 
					
						
							| 
									
										
										
										
											2006-12-01 10:44:28 +00:00
										 |  |  | do_audio_only wav | 
					
						
							| 
									
										
										
										
											2002-05-20 16:20:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # alaw | 
					
						
							| 
									
										
										
										
											2006-12-01 10:44:28 +00:00
										 |  |  | do_audio_only al | 
					
						
							| 
									
										
										
										
											2002-05-20 16:20:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # mulaw | 
					
						
							| 
									
										
										
										
											2006-12-01 10:44:28 +00:00
										 |  |  | do_audio_only ul | 
					
						
							| 
									
										
										
										
											2002-05-20 16:20:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # au | 
					
						
							| 
									
										
										
										
											2006-12-01 10:44:28 +00:00
										 |  |  | do_audio_only au | 
					
						
							| 
									
										
										
										
											2002-05-20 16:20:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-25 14:36:58 +00:00
										 |  |  | # mmf | 
					
						
							| 
									
										
										
										
											2006-12-01 10:44:28 +00:00
										 |  |  | do_audio_only mmf | 
					
						
							| 
									
										
										
										
											2005-07-25 14:36:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-02 15:21:19 +00:00
										 |  |  | # aiff | 
					
						
							| 
									
										
										
										
											2006-12-01 10:44:28 +00:00
										 |  |  | do_audio_only aif | 
					
						
							| 
									
										
										
										
											2006-02-02 15:21:19 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-09 22:52:23 +00:00
										 |  |  | # voc | 
					
						
							| 
									
										
										
										
											2006-12-01 10:44:28 +00:00
										 |  |  | do_audio_only voc | 
					
						
							| 
									
										
										
										
											2006-02-09 22:52:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-05-12 02:53:43 +00:00
										 |  |  | #################### | 
					
						
							|  |  |  | # pix_fmt conversions | 
					
						
							| 
									
										
										
										
											2007-02-07 11:25:50 +00:00
										 |  |  | conversions="yuv420p yuv422p yuv444p yuyv422 yuv410p yuv411p yuvj420p \
 | 
					
						
							|  |  |  |              yuvj422p yuvj444p rgb24 bgr24 rgb32 rgb565 rgb555 gray monow \
 | 
					
						
							| 
									
										
										
										
											2005-12-22 01:10:11 +00:00
										 |  |  |              monob pal8"
 | 
					
						
							| 
									
										
										
										
											2003-05-12 02:53:43 +00:00
										 |  |  | for pix_fmt in $conversions ; do | 
					
						
							|  |  |  |     file=${outfile}libav-${pix_fmt}.yuv | 
					
						
							|  |  |  |     do_ffmpeg_nocheck $file -r 1 -t 1 -y -f pgmyuv -i $raw_src \
 | 
					
						
							|  |  |  |                             -f rawvideo -s 352x288 -pix_fmt $pix_fmt $raw_dst | 
					
						
							|  |  |  |     do_ffmpeg $file -f rawvideo -s 352x288 -pix_fmt $pix_fmt -i $raw_dst \
 | 
					
						
							|  |  |  |                     -f rawvideo -s 352x288 -pix_fmt yuv444p $file | 
					
						
							|  |  |  | done | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-01-18 08:23:36 +00:00
										 |  |  | fi #  [ -n "$do_libavtest" ] | 
					
						
							| 
									
										
										
										
											2002-05-20 16:20:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-05-18 23:18:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-01-01 23:38:09 +00:00
										 |  |  | if $diff_cmd "$logfile" "$reffile" ; then | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  |     echo | 
					
						
							| 
									
										
										
										
											2002-05-18 23:18:22 +00:00
										 |  |  |     echo Regression test succeeded. | 
					
						
							|  |  |  |     exit 0 | 
					
						
							|  |  |  | else | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  |     echo | 
					
						
							| 
									
										
										
										
											2002-05-18 23:18:22 +00:00
										 |  |  |     echo Regression test: Error. | 
					
						
							|  |  |  |     exit 1 | 
					
						
							|  |  |  | fi |