2009-10-23 22:49:05 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2012-05-27 13:34:47 +00:00
|
|
|
# common regression functions for ffmpeg
|
2009-10-23 22:49:05 +00:00
|
|
|
#
|
|
|
|
#
|
|
|
|
|
|
|
|
test="${1#regtest-}"
|
|
|
|
test_ref=$2
|
|
|
|
raw_src_dir=$3
|
2010-03-02 21:42:03 +00:00
|
|
|
target_exec=$4
|
|
|
|
target_path=$5
|
2011-03-21 23:07:54 +00:00
|
|
|
threads=${6:-1}
|
2012-03-05 07:05:56 +00:00
|
|
|
cpuflags=${8:-all}
|
2014-03-18 00:29:50 +00:00
|
|
|
target_samples=$9
|
2009-10-23 22:49:05 +00:00
|
|
|
|
|
|
|
datadir="./tests/data"
|
|
|
|
target_datadir="${target_path}/${datadir}"
|
|
|
|
|
|
|
|
this="$test.$test_ref"
|
2010-03-02 21:41:52 +00:00
|
|
|
outfile="$datadir/$test_ref/"
|
2009-10-23 22:49:05 +00:00
|
|
|
|
|
|
|
# various files
|
2012-05-27 13:34:47 +00:00
|
|
|
ffmpeg="$target_exec ${target_path}/ffmpeg"
|
2009-10-23 22:49:05 +00:00
|
|
|
raw_src="${target_path}/$raw_src_dir/%02d.pgm"
|
|
|
|
raw_dst="$datadir/$this.out.yuv"
|
|
|
|
pcm_src="$target_datadir/asynth1.sw"
|
2012-04-23 21:21:55 +00:00
|
|
|
pcm_src_1ch="$target_datadir/asynth-16000-1.wav"
|
2012-04-07 11:19:35 +00:00
|
|
|
pcm_ref_1ch="$datadir/$test_ref-16000-1.ref.wav"
|
2009-10-23 22:49:05 +00:00
|
|
|
crcfile="$datadir/$this.crc"
|
|
|
|
target_crcfile="$target_datadir/$this.crc"
|
|
|
|
|
2012-05-18 09:33:28 +00:00
|
|
|
cleanfiles="$raw_dst $crcfile"
|
2010-07-21 20:49:41 +00:00
|
|
|
trap 'rm -f -- $cleanfiles' EXIT
|
|
|
|
|
2010-01-30 21:47:13 +00:00
|
|
|
mkdir -p "$datadir"
|
2010-03-02 21:41:52 +00:00
|
|
|
mkdir -p "$outfile"
|
2010-09-23 09:55:31 +00:00
|
|
|
|
|
|
|
[ "${V-0}" -gt 0 ] && echov=echov || echov=:
|
2010-01-16 20:17:55 +00:00
|
|
|
|
2010-09-23 09:55:31 +00:00
|
|
|
echov(){
|
|
|
|
echo "$@" >&3
|
|
|
|
}
|
|
|
|
|
2010-03-08 00:26:58 +00:00
|
|
|
. $(dirname $0)/md5.sh
|
2009-10-23 22:49:05 +00:00
|
|
|
|
2012-03-05 07:05:56 +00:00
|
|
|
AVCONV_OPTS="-nostats -y -cpuflags $cpuflags"
|
2014-05-01 08:43:10 +00:00
|
|
|
COMMON_OPTS="-flags +bitexact -idct simple -sws_flags +accurate_rnd+bitexact -fflags +bitexact"
|
2011-05-07 12:57:21 +00:00
|
|
|
DEC_OPTS="$COMMON_OPTS -threads $threads"
|
2011-05-20 11:57:12 +00:00
|
|
|
ENC_OPTS="$COMMON_OPTS -threads 1 -dct fastint"
|
2009-10-23 22:49:05 +00:00
|
|
|
|
2011-07-27 18:56:59 +00:00
|
|
|
run_avconv()
|
2011-01-21 21:31:21 +00:00
|
|
|
{
|
2012-05-27 13:34:47 +00:00
|
|
|
$echov $ffmpeg $AVCONV_OPTS $*
|
|
|
|
$ffmpeg $AVCONV_OPTS $*
|
2011-01-21 21:31:21 +00:00
|
|
|
}
|
|
|
|
|
2011-07-27 18:56:59 +00:00
|
|
|
do_avconv()
|
2009-10-23 22:49:05 +00:00
|
|
|
{
|
|
|
|
f="$1"
|
|
|
|
shift
|
|
|
|
set -- $* ${target_path}/$f
|
2011-07-27 18:56:59 +00:00
|
|
|
run_avconv $*
|
2011-06-19 15:19:06 +00:00
|
|
|
do_md5sum $f
|
2012-05-18 09:33:28 +00:00
|
|
|
echo $(wc -c $f)
|
2009-10-23 22:49:05 +00:00
|
|
|
}
|
|
|
|
|
2011-07-27 18:56:59 +00:00
|
|
|
do_avconv_nomd5()
|
2009-10-23 22:49:05 +00:00
|
|
|
{
|
|
|
|
f="$1"
|
|
|
|
shift
|
|
|
|
set -- $* ${target_path}/$f
|
2011-07-27 18:56:59 +00:00
|
|
|
run_avconv $*
|
2009-10-23 22:49:05 +00:00
|
|
|
if [ $f = $raw_dst ] ; then
|
2011-06-19 15:19:06 +00:00
|
|
|
$tiny_psnr $f $raw_ref
|
2009-10-23 22:49:05 +00:00
|
|
|
elif [ $f = $pcm_dst ] ; then
|
2011-06-19 15:19:06 +00:00
|
|
|
$tiny_psnr $f $pcm_ref 2
|
2009-10-23 22:49:05 +00:00
|
|
|
else
|
2012-05-15 21:02:42 +00:00
|
|
|
echo $(wc -c $f)
|
2009-10-23 22:49:05 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2011-07-27 18:56:59 +00:00
|
|
|
do_avconv_crc()
|
2009-10-23 22:49:05 +00:00
|
|
|
{
|
|
|
|
f="$1"
|
|
|
|
shift
|
2011-07-27 18:56:59 +00:00
|
|
|
run_avconv $* -f crc "$target_crcfile"
|
2011-06-19 15:19:06 +00:00
|
|
|
echo "$f $(cat $crcfile)"
|
2009-10-23 22:49:05 +00:00
|
|
|
}
|