2002-05-18 23:18:22 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# automatic regression test for ffmpeg
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#set -x
|
2003-04-15 22:29:37 +00:00
|
|
|
# Even in the 21st century some diffs are not supporting -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
|
|
|
|
|
2002-06-05 18:14:21 +00:00
|
|
|
datadir="./data"
|
|
|
|
|
|
|
|
logfile="$datadir/ffmpeg.regression"
|
2003-07-16 19:13:33 +00:00
|
|
|
outfile="$datadir/a-"
|
2002-05-20 16:20:05 +00:00
|
|
|
|
2002-05-18 23:18:22 +00:00
|
|
|
# tests to do
|
|
|
|
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
|
|
|
|
do_libav=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
|
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
|
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
|
2002-05-18 23:18:22 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
# various files
|
2002-11-22 07:27:13 +00:00
|
|
|
ffmpeg="../ffmpeg_g"
|
2003-04-10 21:29:31 +00:00
|
|
|
tiny_psnr="./tiny_psnr"
|
2002-05-18 23:18:22 +00:00
|
|
|
reffile="$2"
|
2002-06-05 18:14:21 +00:00
|
|
|
benchfile="$datadir/ffmpeg.bench"
|
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"
|
2002-05-18 23:18:22 +00:00
|
|
|
pcm_src="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
|
|
|
|
|
|
|
# create the data directory if it does not exists
|
|
|
|
mkdir -p $datadir
|
2002-05-18 23:18:22 +00:00
|
|
|
|
2002-08-30 19:34:55 +00:00
|
|
|
do_ffmpeg()
|
2002-05-18 23:18:22 +00:00
|
|
|
{
|
|
|
|
f="$1"
|
|
|
|
shift
|
2005-09-12 19:16:07 +00:00
|
|
|
echo $ffmpeg -y -flags +bitexact -dct fastint -idct simple $*
|
|
|
|
$ffmpeg -y -flags +bitexact -dct fastint -idct simple -benchmark $* > $datadir/bench.tmp 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$$
|
2004-02-28 15:15:58 +00:00
|
|
|
do_md5sum $f >> $logfile
|
2003-04-10 21:29:31 +00:00
|
|
|
if [ $f = $raw_dst ] ; then
|
|
|
|
$tiny_psnr $f $raw_ref >> $logfile
|
2005-01-30 13:26:11 +00:00
|
|
|
elif [ $f = $pcm_dst ] ; then
|
2005-02-01 21:16:33 +00:00
|
|
|
$tiny_psnr $f $pcm_ref 2 >> $logfile
|
2004-03-23 03:05:51 +00:00
|
|
|
else
|
|
|
|
wc -c $f >> $logfile
|
2003-04-10 21:29:31 +00:00
|
|
|
fi
|
2002-08-21 19:18:02 +00:00
|
|
|
expr "`cat $datadir/bench.tmp`" : '.*utime=\(.*s\)' > $datadir/bench2.tmp
|
2002-06-05 18:14:21 +00:00
|
|
|
echo `cat $datadir/bench2.tmp` $f >> $benchfile
|
2002-05-18 23:18:22 +00:00
|
|
|
}
|
|
|
|
|
2002-08-30 19:34:55 +00:00
|
|
|
do_ffmpeg_crc()
|
2002-05-20 16:20:05 +00:00
|
|
|
{
|
|
|
|
f="$1"
|
|
|
|
shift
|
2005-09-12 19:16:07 +00:00
|
|
|
echo $ffmpeg -y -flags +bitexact -dct fastint -idct simple $* -f crc $datadir/ffmpeg.crc
|
|
|
|
$ffmpeg -y -flags +bitexact -dct fastint -idct simple $* -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$$
|
2003-05-12 02:53:43 +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()
|
|
|
|
{
|
|
|
|
f="$1"
|
|
|
|
shift
|
2005-09-12 19:16:07 +00:00
|
|
|
echo $ffmpeg -y -flags +bitexact -dct fastint -idct simple $*
|
|
|
|
$ffmpeg -y -flags +bitexact -dct fastint -idct simple -benchmark $* > $datadir/bench.tmp 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$$
|
2003-04-10 21:29:31 +00:00
|
|
|
expr "`cat $datadir/bench.tmp`" : '.*utime=\(.*s\)' > $datadir/bench2.tmp
|
|
|
|
echo `cat $datadir/bench2.tmp` $f >> $benchfile
|
|
|
|
}
|
|
|
|
|
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
|
2005-01-30 13:26:11 +00:00
|
|
|
do_ffmpeg_nocheck $pcm_ref -y -ab 128 -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
|
|
|
|
# mpeg1 encoding
|
|
|
|
file=${outfile}mpeg1.mpg
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -f mpeg1video $file
|
2002-05-18 23:18:22 +00:00
|
|
|
|
|
|
|
# mpeg1 decoding
|
2002-05-20 16:20:05 +00:00
|
|
|
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
|
2003-08-26 07:42:25 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
###################################
|
|
|
|
if [ -n "$do_mpeg2" ] ; then
|
|
|
|
# mpeg2 encoding
|
2003-12-10 17:06:36 +00:00
|
|
|
file=${outfile}mpeg2.mpg
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -vcodec mpeg2video -f mpeg1video $file
|
2003-12-10 17:06:36 +00:00
|
|
|
|
|
|
|
# mpeg2 decoding
|
|
|
|
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
|
|
|
|
|
2004-03-22 21:20:14 +00:00
|
|
|
# mpeg2 encoding
|
|
|
|
file=${outfile}mpeg2.mpg
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -vcodec mpeg2video -idct int -dct int -f mpeg1video $file
|
2004-03-22 21:20:14 +00:00
|
|
|
|
|
|
|
# mpeg2 decoding
|
2005-09-12 19:16:07 +00:00
|
|
|
do_ffmpeg $raw_dst -y -idct int -i $file -f rawvideo $raw_dst
|
2004-03-22 21:20:14 +00:00
|
|
|
|
2003-12-10 17:06:36 +00:00
|
|
|
# mpeg2 encoding interlaced
|
|
|
|
file=${outfile}mpeg2i.mpg
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -vcodec mpeg2video -f mpeg1video -flags +ildct+ilme $file
|
2002-05-18 23:18:22 +00:00
|
|
|
|
|
|
|
# mpeg2 decoding
|
2003-08-26 07:42:25 +00:00
|
|
|
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
|
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
|
|
|
|
file=${outfile}mpeg2thread.mpg
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -vcodec mpeg2video -f mpeg1video -bf 2 -flags +ildct+ilme -threads 2 $file
|
2004-02-13 17:54:10 +00:00
|
|
|
|
2004-11-16 14:02:41 +00:00
|
|
|
# mpeg2 decoding
|
|
|
|
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
|
|
|
|
|
|
|
|
# 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
|
|
|
|
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
|
|
|
|
fi
|
|
|
|
|
2002-09-06 22:59:44 +00:00
|
|
|
###################################
|
|
|
|
if [ -n "$do_msmpeg4v2" ] ; then
|
|
|
|
# msmpeg4 encoding
|
|
|
|
file=${outfile}msmpeg4v2.avi
|
|
|
|
do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -an -vcodec msmpeg4v2 $file
|
|
|
|
|
|
|
|
# msmpeg4v2 decoding
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
|
2002-09-06 22:59:44 +00:00
|
|
|
fi
|
|
|
|
|
2002-05-18 23:18:22 +00:00
|
|
|
###################################
|
|
|
|
if [ -n "$do_msmpeg4" ] ; then
|
|
|
|
# msmpeg4 encoding
|
|
|
|
file=${outfile}msmpeg4.avi
|
|
|
|
do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -an -vcodec msmpeg4 $file
|
|
|
|
|
|
|
|
# msmpeg4 decoding
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
|
2002-05-18 23:18:22 +00:00
|
|
|
fi
|
|
|
|
|
2002-09-06 22:59:44 +00:00
|
|
|
###################################
|
|
|
|
if [ -n "$do_wmv1" ] ; then
|
|
|
|
# wmv1 encoding
|
|
|
|
file=${outfile}wmv1.avi
|
|
|
|
do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -an -vcodec wmv1 $file
|
|
|
|
|
|
|
|
# wmv1 decoding
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
|
2002-09-06 22:59:44 +00:00
|
|
|
fi
|
|
|
|
|
2003-03-08 11:50:26 +00:00
|
|
|
###################################
|
|
|
|
if [ -n "$do_wmv2" ] ; then
|
|
|
|
# wmv2 encoding
|
|
|
|
file=${outfile}wmv2.avi
|
|
|
|
do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -an -vcodec wmv2 $file
|
|
|
|
|
|
|
|
# wmv2 decoding
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
|
2003-03-08 11:50:26 +00:00
|
|
|
fi
|
|
|
|
|
2004-10-28 10:24:02 +00:00
|
|
|
###################################
|
|
|
|
if [ -n "$do_h261" ] ; then
|
|
|
|
# h261 encoding
|
|
|
|
file=${outfile}h261.avi
|
|
|
|
do_ffmpeg $file -y -qscale 11 -f pgmyuv -i $raw_src -s 352x288 -an -vcodec h261 $file
|
|
|
|
|
|
|
|
# h261 decoding
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
|
2004-10-28 10:24:02 +00:00
|
|
|
fi
|
|
|
|
|
2002-05-18 23:18:22 +00:00
|
|
|
###################################
|
|
|
|
if [ -n "$do_h263" ] ; then
|
|
|
|
# h263 encoding
|
|
|
|
file=${outfile}h263.avi
|
|
|
|
do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -s 352x288 -an -vcodec h263 $file
|
|
|
|
|
2002-10-25 10:50:02 +00:00
|
|
|
# h263 decoding
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
|
2002-10-25 10:50:02 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
###################################
|
|
|
|
if [ -n "$do_h263p" ] ; then
|
|
|
|
# h263p encoding
|
|
|
|
file=${outfile}h263p.avi
|
2005-09-12 19:16:07 +00:00
|
|
|
do_ffmpeg $file -y -qscale 2 -flags +umv+aiv+aic -f pgmyuv -i $raw_src -s 352x288 -an -vcodec h263p -ps 300 $file
|
2002-10-25 10:50:02 +00:00
|
|
|
|
2002-05-18 23:18:22 +00:00
|
|
|
# h263p decoding
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
|
2002-05-18 23:18:22 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
###################################
|
|
|
|
if [ -n "$do_mpeg4" ] ; then
|
|
|
|
# mpeg4
|
2003-11-04 12:57:19 +00:00
|
|
|
file=${outfile}odivx.mp4
|
2005-09-12 19:16:07 +00:00
|
|
|
do_ffmpeg $file -y -flags +mv4 -mbd bits -qscale 10 -f pgmyuv -i $raw_src -an -vcodec mpeg4 $file
|
2002-05-18 23:18:22 +00:00
|
|
|
|
|
|
|
# mpeg4 decoding
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
|
2002-05-18 23:18:22 +00:00
|
|
|
fi
|
|
|
|
|
2003-01-11 20:51:03 +00:00
|
|
|
###################################
|
|
|
|
if [ -n "$do_huffyuv" ] ; then
|
|
|
|
# huffyuv
|
|
|
|
file=${outfile}huffyuv.avi
|
2004-11-28 18:29:38 +00:00
|
|
|
do_ffmpeg $file -y -f pgmyuv -i $raw_src -an -vcodec huffyuv -pix_fmt yuv422p $file
|
2003-01-11 20:51:03 +00:00
|
|
|
|
|
|
|
# huffyuv decoding
|
2005-05-08 20:15:42 +00:00
|
|
|
do_ffmpeg $raw_dst -y -i $file -f rawvideo -strict -2 -pix_fmt yuv420p $raw_dst
|
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
|
|
|
|
file=${outfile}mpeg4-rc.avi
|
|
|
|
do_ffmpeg $file -y -b 400 -bf 2 -f pgmyuv -i $raw_src -an -vcodec mpeg4 $file
|
|
|
|
|
|
|
|
# mpeg4 rate control decoding
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
|
2002-09-20 15:22:24 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
###################################
|
|
|
|
if [ -n "$do_mpeg4adv" ] ; then
|
|
|
|
# mpeg4
|
|
|
|
file=${outfile}mpeg4-adv.avi
|
2005-09-12 19:16:07 +00:00
|
|
|
do_ffmpeg $file -y -qscale 9 -flags +mv4+part+aic+trell -mbd bits -ps 200 -f pgmyuv -i $raw_src -an -vcodec mpeg4 $file
|
2002-09-20 15:22:24 +00:00
|
|
|
|
|
|
|
# mpeg4 decoding
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
|
2002-09-20 15:22:24 +00:00
|
|
|
fi
|
|
|
|
|
2004-02-13 17:54:10 +00:00
|
|
|
###################################
|
|
|
|
if [ -n "$do_mpeg4thread" ] ; then
|
|
|
|
# mpeg4
|
|
|
|
file=${outfile}mpeg4-thread.avi
|
2005-09-12 19:16:07 +00:00
|
|
|
do_ffmpeg $file -y -b 500 -flags +mv4+part+aic+trell -mbd bits -ps 200 -bf 2 -f pgmyuv -i $raw_src -an -vcodec mpeg4 -threads 2 $file
|
2004-02-13 17:54:10 +00:00
|
|
|
|
|
|
|
# mpeg4 decoding
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
|
2004-04-24 14:41:57 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
###################################
|
|
|
|
if [ -n "$do_mpeg4adv" ] ; then
|
|
|
|
# mpeg4
|
|
|
|
file=${outfile}mpeg4-Q.avi
|
2005-09-12 19:16:07 +00:00
|
|
|
do_ffmpeg $file -y -qscale 7 -flags +mv4+qpel -mbd 2 -bf 2 -cmp 1 -subcmp 2 -f pgmyuv -i $raw_src -an -vcodec mpeg4 $file
|
2004-04-24 14:41:57 +00:00
|
|
|
|
|
|
|
# mpeg4 decoding
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
|
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
|
|
|
|
file=${outfile}mpeg4-PSP.mp4
|
|
|
|
do_ffmpeg $file -y -b 768 -s 320x240 -f psp -ar 24000 -ab 32 -i $raw_src $file
|
|
|
|
fi
|
|
|
|
|
2003-12-14 01:42:00 +00:00
|
|
|
###################################
|
|
|
|
if [ -n "$do_error" ] ; then
|
|
|
|
# damaged mpeg4
|
|
|
|
file=${outfile}error-mpeg4-adv.avi
|
2005-09-12 19:16:07 +00:00
|
|
|
do_ffmpeg $file -y -qscale 7 -flags +mv4+part+aic -mbd rd -ps 250 -error 10 -f pgmyuv -i $raw_src -an -vcodec mpeg4 $file
|
2003-12-14 01:42:00 +00:00
|
|
|
|
|
|
|
# damaged mpeg4 decoding
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
|
2003-12-14 01:42:00 +00:00
|
|
|
fi
|
|
|
|
|
2004-01-02 21:26:51 +00:00
|
|
|
###################################
|
|
|
|
if [ -n "$do_mpeg4nr" ] ; then
|
|
|
|
# noise reduction
|
2004-02-13 17:54:10 +00:00
|
|
|
file=${outfile}mpeg4-nr.avi
|
2005-09-12 19:16:07 +00:00
|
|
|
do_ffmpeg $file -y -qscale 8 -flags +mv4 -mbd rd -nr 200 -f pgmyuv -i $raw_src -an -vcodec mpeg4 $file
|
2004-01-02 21:26:51 +00:00
|
|
|
|
|
|
|
# mpeg4 decoding
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
|
2004-01-02 21:26:51 +00:00
|
|
|
fi
|
|
|
|
|
2003-02-08 12:13:32 +00:00
|
|
|
###################################
|
|
|
|
if [ -n "$do_mpeg1b" ] ; then
|
|
|
|
# mpeg1
|
|
|
|
file=${outfile}mpeg1b.mpg
|
2003-12-10 17:06:36 +00:00
|
|
|
do_ffmpeg $file -y -qscale 8 -bf 3 -ps 200 -f pgmyuv -i $raw_src -an -vcodec mpeg1video -f mpeg1video $file
|
2003-02-08 12:13:32 +00:00
|
|
|
|
|
|
|
# mpeg1 decoding
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
|
2003-02-08 12:13:32 +00:00
|
|
|
fi
|
|
|
|
|
2002-05-18 23:18:22 +00:00
|
|
|
###################################
|
|
|
|
if [ -n "$do_mjpeg" ] ; then
|
|
|
|
# mjpeg
|
|
|
|
file=${outfile}mjpeg.avi
|
2005-01-20 00:30:20 +00:00
|
|
|
do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -an -vcodec mjpeg -pix_fmt yuvj420p $file
|
2002-05-18 23:18:22 +00:00
|
|
|
|
|
|
|
# mjpeg decoding
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $raw_dst -y -i $file -f rawvideo -pix_fmt yuv420p $raw_dst
|
2002-05-18 23:18:22 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
###################################
|
2003-07-12 16:26:08 +00:00
|
|
|
if [ -n "$do_ljpeg" ] ; then
|
|
|
|
# ljpeg
|
|
|
|
file=${outfile}ljpeg.avi
|
2005-01-20 00:30:20 +00:00
|
|
|
do_ffmpeg $file -y -f pgmyuv -i $raw_src -an -vcodec ljpeg -strict -1 $file
|
2003-07-12 16:26:08 +00:00
|
|
|
|
|
|
|
# ljpeg decoding
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
|
2003-07-12 16:26:08 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
###################################
|
2002-05-18 23:18:22 +00:00
|
|
|
if [ -n "$do_rv10" ] ; then
|
|
|
|
# rv10 encoding
|
|
|
|
file=${outfile}rv10.rm
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -an $file
|
2002-05-18 23:18:22 +00:00
|
|
|
|
|
|
|
# rv10 decoding
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
|
2002-05-18 23:18:22 +00:00
|
|
|
fi
|
|
|
|
|
2004-12-07 13:48:25 +00:00
|
|
|
###################################
|
|
|
|
if [ -n "$do_rv20" ] ; then
|
|
|
|
# rv20 encoding
|
|
|
|
file=${outfile}rv20.rm
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -vcodec rv20 -an $file
|
2004-12-07 13:48:25 +00:00
|
|
|
|
|
|
|
# rv20 decoding
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
|
2004-12-07 13:48:25 +00:00
|
|
|
fi
|
|
|
|
|
2003-05-27 22:43:34 +00:00
|
|
|
###################################
|
|
|
|
if [ -n "$do_asv1" ] ; then
|
|
|
|
# asv1 encoding
|
|
|
|
file=${outfile}asv1.avi
|
|
|
|
do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -an -vcodec asv1 $file
|
|
|
|
|
|
|
|
# asv1 decoding
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
|
2003-05-27 22:43:34 +00:00
|
|
|
fi
|
|
|
|
|
2003-09-01 13:05:21 +00:00
|
|
|
###################################
|
|
|
|
if [ -n "$do_asv2" ] ; then
|
|
|
|
# asv2 encoding
|
|
|
|
file=${outfile}asv2.avi
|
|
|
|
do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -an -vcodec asv2 $file
|
|
|
|
|
|
|
|
# asv2 decoding
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
|
2003-09-01 13:05:21 +00:00
|
|
|
fi
|
|
|
|
|
2003-07-09 23:52:06 +00:00
|
|
|
###################################
|
|
|
|
if [ -n "$do_flv" ] ; then
|
|
|
|
# flv encoding
|
|
|
|
file=${outfile}flv.flv
|
|
|
|
do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -an -vcodec flv $file
|
|
|
|
|
|
|
|
# flv decoding
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
|
2003-07-09 23:52:06 +00:00
|
|
|
fi
|
|
|
|
|
2003-11-03 21:59:21 +00:00
|
|
|
###################################
|
|
|
|
if [ -n "$do_ffv1" ] ; then
|
|
|
|
# ffv1 encoding
|
|
|
|
file=${outfile}ffv1.avi
|
2005-05-08 20:15:42 +00:00
|
|
|
do_ffmpeg $file -y -strict -2 -f pgmyuv -i $raw_src -an -vcodec ffv1 $file
|
2003-11-03 21:59:21 +00:00
|
|
|
|
|
|
|
# ffv1 decoding
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
|
2005-04-03 15:39:17 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
###################################
|
|
|
|
if [ -n "$do_snow" ] ; then
|
|
|
|
# snow encoding
|
|
|
|
file=${outfile}snow.avi
|
2006-01-23 18:49:08 +00:00
|
|
|
do_ffmpeg $file -y -strict -2 -f pgmyuv -i $raw_src -an -vcodec snow -qscale 2 -flags +qpel -me iter -dia_size 2 -cmp 12 -subcmp 12 -s 128x64 $file
|
2005-04-03 15:39:17 +00:00
|
|
|
|
|
|
|
# snow decoding
|
2006-01-23 18:49:08 +00:00
|
|
|
do_ffmpeg $raw_dst -y -i $file -f rawvideo -s 352x288 $raw_dst
|
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
|
2005-04-03 15:39:17 +00:00
|
|
|
# snow encoding
|
|
|
|
file=${outfile}snow53.avi
|
2005-09-12 19:16:07 +00:00
|
|
|
do_ffmpeg $file -y -strict -2 -f pgmyuv -i $raw_src -an -vcodec snow -pred 1 -flags +mv4+qpel $file
|
2005-04-03 15:39:17 +00:00
|
|
|
|
|
|
|
# snow decoding
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
|
2003-11-03 21:59:21 +00:00
|
|
|
fi
|
|
|
|
|
2005-08-30 19:44:02 +00:00
|
|
|
###################################
|
|
|
|
if [ -n "$do_dv" ] ; then
|
|
|
|
# dv encoding
|
|
|
|
file=${outfile}dv.dv
|
2005-09-12 19:16:07 +00:00
|
|
|
do_ffmpeg $file -dct int -y -f pgmyuv -i $raw_src -s pal -an $file
|
2005-08-30 19:44:02 +00:00
|
|
|
|
|
|
|
# dv decoding
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $raw_dst -y -i $file -f rawvideo -s cif $raw_dst
|
2005-08-30 19:44:02 +00:00
|
|
|
fi
|
|
|
|
|
2004-05-12 03:33:40 +00:00
|
|
|
###################################
|
|
|
|
if [ -n "$do_svq1" ] ; then
|
|
|
|
# svq1 encoding
|
|
|
|
file=${outfile}svq1.mov
|
2004-07-28 09:22:52 +00:00
|
|
|
do_ffmpeg $file -y -f pgmyuv -i $raw_src -an -vcodec svq1 -qscale 3 -pix_fmt yuv410p $file
|
2004-05-12 03:33:40 +00:00
|
|
|
|
|
|
|
# svq1 decoding
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $raw_dst -y -i $file -f rawvideo -pix_fmt yuv420p $raw_dst
|
2004-05-12 03:33:40 +00:00
|
|
|
fi
|
|
|
|
|
2002-05-18 23:18:22 +00:00
|
|
|
###################################
|
|
|
|
if [ -n "$do_mp2" ] ; then
|
|
|
|
# mp2 encoding
|
|
|
|
file=${outfile}mp2.mp2
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $file -y -ab 128 -ac 2 -ar 44100 -f s16le -i $pcm_src $file
|
2002-05-18 23:18:22 +00:00
|
|
|
|
|
|
|
# mp2 decoding
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $pcm_dst -y -i $file -f wav $pcm_dst
|
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
|
|
|
|
# ac3 encoding
|
|
|
|
file=${outfile}ac3.rm
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $file -y -ab 128 -ac 2 -f s16le -i $pcm_src -vn $file
|
2002-05-18 23:18:22 +00:00
|
|
|
|
|
|
|
# ac3 decoding
|
2005-12-17 18:14:38 +00:00
|
|
|
#do_ffmpeg $pcm_dst -y -i $file -f wav $pcm_dst
|
2002-05-18 23:18:22 +00:00
|
|
|
fi
|
|
|
|
|
2004-02-07 15:10:47 +00:00
|
|
|
###################################
|
|
|
|
if [ -n "$do_g726" ] ; then
|
|
|
|
# g726 encoding
|
|
|
|
file=${outfile}g726.wav
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $file -y -ab 128 -ac 2 -ar 44100 -f s16le -i $pcm_src -ab 32 -ac 1 -ar 8000 -acodec g726 $file
|
2004-02-07 15:10:47 +00:00
|
|
|
|
|
|
|
# g726 decoding
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $pcm_dst -y -i $file -f wav $pcm_dst
|
2004-02-07 15:10:47 +00:00
|
|
|
fi
|
|
|
|
|
2004-02-08 02:35:37 +00:00
|
|
|
###################################
|
|
|
|
if [ -n "$do_adpcm_ima_wav" ] ; then
|
|
|
|
# encoding
|
|
|
|
file=${outfile}adpcm_ima.wav
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $file -y -ab 128 -ac 2 -ar 44100 -f s16le -i $pcm_src -acodec adpcm_ima_wav $file
|
2004-02-08 02:35:37 +00:00
|
|
|
|
|
|
|
# decoding
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $pcm_dst -y -i $file -f wav $pcm_dst
|
2004-02-08 02:35:37 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
###################################
|
|
|
|
if [ -n "$do_adpcm_ms" ] ; then
|
|
|
|
# encoding
|
|
|
|
file=${outfile}adpcm_ms.wav
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $file -y -ab 128 -ac 2 -ar 44100 -f s16le -i $pcm_src -acodec adpcm_ms $file
|
2004-02-08 02:35:37 +00:00
|
|
|
|
|
|
|
# decoding
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $pcm_dst -y -i $file -f wav $pcm_dst
|
2004-02-08 02:35:37 +00:00
|
|
|
fi
|
|
|
|
|
2005-07-25 14:36:58 +00:00
|
|
|
###################################
|
|
|
|
if [ -n "$do_adpcm_yam" ] ; then
|
|
|
|
# encoding
|
|
|
|
file=${outfile}adpcm_yam.wav
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $file -y -ab 128 -ac 2 -ar 44100 -f s16le -i $pcm_src -acodec adpcm_yamaha $file
|
2005-07-25 14:36:58 +00:00
|
|
|
|
|
|
|
# decoding
|
2005-12-17 18:14:38 +00:00
|
|
|
do_ffmpeg $pcm_dst -y -i $file -f wav $pcm_dst
|
2005-07-25 14:36:58 +00:00
|
|
|
fi
|
|
|
|
|
2002-05-20 16:20:05 +00:00
|
|
|
###################################
|
|
|
|
# libav testing
|
|
|
|
###################################
|
|
|
|
|
|
|
|
if [ -n "$do_libav" ] ; then
|
|
|
|
|
|
|
|
# avi
|
|
|
|
file=${outfile}libav.avi
|
|
|
|
do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f s16le -i $pcm_src $file
|
|
|
|
do_ffmpeg_crc $file -i $file
|
|
|
|
|
|
|
|
# asf
|
|
|
|
file=${outfile}libav.asf
|
2004-03-09 15:20:04 +00:00
|
|
|
do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f s16le -i $pcm_src -acodec mp2 $file
|
2004-05-29 02:06:32 +00:00
|
|
|
do_ffmpeg_crc $file -i $file -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
|
|
|
|
file=${outfile}libav.mpg
|
|
|
|
do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f s16le -i $pcm_src $file
|
|
|
|
do_ffmpeg_crc $file -i $file
|
|
|
|
|
2005-06-03 19:06:06 +00:00
|
|
|
# mpegts
|
|
|
|
file=${outfile}libav.ts
|
|
|
|
do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f s16le -i $pcm_src $file
|
|
|
|
do_ffmpeg_crc $file -i $file
|
|
|
|
|
2002-05-20 16:20:05 +00:00
|
|
|
# swf (decode audio only)
|
|
|
|
file=${outfile}libav.swf
|
2004-02-18 19:07:58 +00:00
|
|
|
do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f s16le -i $pcm_src -acodec mp2 $file
|
2002-05-25 22:47:17 +00:00
|
|
|
do_ffmpeg_crc $file -i $file
|
2002-05-20 16:20:05 +00:00
|
|
|
|
|
|
|
# ffm
|
2004-03-18 22:54:44 +00:00
|
|
|
file=${outfile}libav.ffm
|
|
|
|
do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f s16le -i $pcm_src $file
|
|
|
|
do_ffmpeg_crc $file -i $file
|
2002-05-20 16:20:05 +00:00
|
|
|
|
2003-07-09 23:52:06 +00:00
|
|
|
# flv
|
|
|
|
file=${outfile}libav.flv
|
2004-03-09 15:20:04 +00:00
|
|
|
do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f s16le -i $pcm_src -an $file
|
2003-07-09 23:52:06 +00:00
|
|
|
do_ffmpeg_crc $file -i $file
|
|
|
|
|
2003-10-01 16:45:59 +00:00
|
|
|
# mov
|
2004-02-18 19:07:58 +00:00
|
|
|
file=${outfile}libav.mov
|
|
|
|
do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f s16le -i $pcm_src -acodec pcm_alaw $file
|
|
|
|
do_ffmpeg_crc $file -i $file
|
2003-10-01 16:45:59 +00:00
|
|
|
|
|
|
|
# nut
|
|
|
|
file=${outfile}libav.nut
|
2004-03-09 15:20:04 +00:00
|
|
|
do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f s16le -i $pcm_src -acodec mp2 $file
|
2003-10-01 16:45:59 +00:00
|
|
|
do_ffmpeg_crc $file -i $file
|
|
|
|
|
2004-05-31 00:45:27 +00:00
|
|
|
# dv
|
2004-07-27 17:58:47 +00:00
|
|
|
file=${outfile}libav.dv
|
|
|
|
do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f s16le -i $pcm_src -ar 48000 -r 25 -s pal -ac 2 $file
|
|
|
|
do_ffmpeg_crc $file -i $file
|
2004-05-31 00:45:27 +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
|
|
|
|
file=${outfile}libav.pbm
|
2004-11-12 22:57:07 +00:00
|
|
|
do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f image2pipe $file
|
|
|
|
do_ffmpeg_crc $file -f image2pipe -i $file
|
2003-01-11 05:32:29 +00:00
|
|
|
|
2002-05-20 16:20:05 +00:00
|
|
|
# pgmpipe
|
2003-01-11 05:32:29 +00:00
|
|
|
file=${outfile}libav.pgm
|
2004-11-12 22:57:07 +00:00
|
|
|
do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f image2pipe $file
|
|
|
|
do_ffmpeg_crc $file -f image2pipe -i $file
|
2002-05-20 16:20:05 +00:00
|
|
|
|
|
|
|
# ppmpipe
|
2003-01-11 05:32:29 +00:00
|
|
|
file=${outfile}libav.ppm
|
2004-11-12 22:57:07 +00:00
|
|
|
do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f image2pipe $file
|
|
|
|
do_ffmpeg_crc $file -f image2pipe -i $file
|
2002-05-20 16:20:05 +00:00
|
|
|
|
|
|
|
# gif
|
|
|
|
file=${outfile}libav.gif
|
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
|
|
|
|
|
|
|
|
# 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
|
|
|
|
# pgm (we do not do md5 on image files yet)
|
2005-09-21 00:09:02 +00:00
|
|
|
file=${outfile}libav%02d.pgm
|
2002-05-20 16:20:05 +00:00
|
|
|
$ffmpeg -t 0.5 -y -qscale 10 -f pgmyuv -i $raw_src $file
|
|
|
|
do_ffmpeg_crc $file -i $file
|
|
|
|
|
|
|
|
# ppm (we do not do md5 on image files yet)
|
2005-09-21 00:09:02 +00:00
|
|
|
file=${outfile}libav%02d.ppm
|
2002-05-20 16:20:05 +00:00
|
|
|
$ffmpeg -t 0.5 -y -qscale 10 -f pgmyuv -i $raw_src $file
|
|
|
|
do_ffmpeg_crc $file -i $file
|
|
|
|
|
2002-05-25 22:47:17 +00:00
|
|
|
# jpeg (we do not do md5 on image files yet)
|
2005-09-21 00:09:02 +00:00
|
|
|
file=${outfile}libav%02d.jpg
|
2005-09-12 19:16:07 +00:00
|
|
|
$ffmpeg -t 0.5 -y -qscale 10 -f pgmyuv -i $raw_src -flags +bitexact -dct fastint -idct simple -pix_fmt yuvj420p -f image2 $file
|
2004-09-22 21:25:59 +00:00
|
|
|
do_ffmpeg_crc $file -f image2 -i $file
|
2002-05-25 22:47:17 +00:00
|
|
|
|
2002-05-20 16:20:05 +00:00
|
|
|
####################
|
|
|
|
# audio only
|
|
|
|
|
|
|
|
# wav
|
|
|
|
file=${outfile}libav.wav
|
|
|
|
do_ffmpeg $file -t 1 -y -qscale 10 -f s16le -i $pcm_src $file
|
|
|
|
do_ffmpeg_crc $file -i $file
|
|
|
|
|
|
|
|
# alaw
|
|
|
|
file=${outfile}libav.al
|
|
|
|
do_ffmpeg $file -t 1 -y -qscale 10 -f s16le -i $pcm_src $file
|
|
|
|
do_ffmpeg_crc $file -i $file
|
|
|
|
|
|
|
|
# mulaw
|
|
|
|
file=${outfile}libav.ul
|
|
|
|
do_ffmpeg $file -t 1 -y -qscale 10 -f s16le -i $pcm_src $file
|
|
|
|
do_ffmpeg_crc $file -i $file
|
|
|
|
|
|
|
|
# au
|
|
|
|
file=${outfile}libav.au
|
|
|
|
do_ffmpeg $file -t 1 -y -qscale 10 -f s16le -i $pcm_src $file
|
|
|
|
do_ffmpeg_crc $file -i $file
|
|
|
|
|
2005-07-25 14:36:58 +00:00
|
|
|
# mmf
|
|
|
|
file=${outfile}libav.mmf
|
|
|
|
do_ffmpeg $file -t 1 -y -qscale 10 -f s16le -i $pcm_src $file
|
|
|
|
do_ffmpeg_crc $file -i $file
|
|
|
|
|
2003-05-12 02:53:43 +00:00
|
|
|
####################
|
|
|
|
# pix_fmt conversions
|
|
|
|
conversions="yuv420p yuv422p yuv444p yuv422 yuv410p yuv411p yuvj420p \
|
|
|
|
yuvj422p yuvj444p rgb24 bgr24 rgba32 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
|
|
|
|
|
2002-05-20 16:20:05 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
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
|