regression-funcs.sh 2.9 KB
Newer Older
1 2 3 4 5 6 7 8 9
#!/bin/sh
#
# common regression functions for ffmpeg
#
#

test="${1#regtest-}"
test_ref=$2
raw_src_dir=$3
10 11
target_exec=$4
target_path=$5
12 13 14 15 16

datadir="./tests/data"
target_datadir="${target_path}/${datadir}"

this="$test.$test_ref"
17 18
logdir="$datadir/regression/$test_ref"
logfile="$logdir/$test"
19
outfile="$datadir/$test_ref/"
20
errfile="$datadir/$this.err"
21 22

# various files
23
ffmpeg="$target_exec ${target_path}/ffmpeg"
24 25 26 27 28 29 30 31 32 33 34 35 36
tiny_psnr="tests/tiny_psnr"
benchfile="$datadir/$this.bench"
bench="$datadir/$this.bench.tmp"
bench2="$datadir/$this.bench2.tmp"
raw_src="${target_path}/$raw_src_dir/%02d.pgm"
raw_dst="$datadir/$this.out.yuv"
raw_ref="$datadir/$test_ref.ref.yuv"
pcm_src="$target_datadir/asynth1.sw"
pcm_dst="$datadir/$this.out.wav"
pcm_ref="$datadir/$test_ref.ref.wav"
crcfile="$datadir/$this.crc"
target_crcfile="$target_datadir/$this.crc"

37 38 39
cleanfiles="$raw_dst $pcm_dst $crcfile $bench $bench2"
trap 'rm -f -- $cleanfiles' EXIT

40
mkdir -p "$datadir"
41
mkdir -p "$outfile"
42
mkdir -p "$logdir"
43

44 45 46
(exec >&3) 2>/dev/null || exec 3>&2

[ "${V-0}" -gt 0 ] && echov=echov || echov=:
47 48
[ "${V-0}" -gt 1 ] || exec 2>$errfile

49 50 51 52
echov(){
    echo "$@" >&3
}

53
. $(dirname $0)/md5.sh
54 55 56 57 58 59 60 61

FFMPEG_OPTS="-v 0 -y -flags +bitexact -dct fastint -idct simple -sws_flags +accurate_rnd+bitexact"

do_ffmpeg()
{
    f="$1"
    shift
    set -- $* ${target_path}/$f
62
    $echov $ffmpeg $FFMPEG_OPTS $*
63 64 65 66 67 68 69 70 71
    $ffmpeg $FFMPEG_OPTS -benchmark $* > $bench
    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
    else
        wc -c $f >> $logfile
    fi
72 73
    expr "$(cat $bench)" : '.*utime=\(.*s\)' > $bench2
    echo $(cat $bench2) $f >> $benchfile
74 75 76 77 78 79 80
}

do_ffmpeg_nomd5()
{
    f="$1"
    shift
    set -- $* ${target_path}/$f
81
    $echov $ffmpeg $FFMPEG_OPTS $*
82 83 84 85 86 87 88 89
    $ffmpeg $FFMPEG_OPTS -benchmark $* > $bench
    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
90 91
    expr "$(cat $bench)" : '.*utime=\(.*s\)' > $bench2
    echo $(cat $bench2) $f >> $benchfile
92 93 94 95 96 97
}

do_ffmpeg_crc()
{
    f="$1"
    shift
98
    $echov $ffmpeg $FFMPEG_OPTS $* -f crc "$target_crcfile"
99
    $ffmpeg $FFMPEG_OPTS $* -f crc "$target_crcfile"
100
    echo "$f $(cat $crcfile)" >> $logfile
101 102 103 104 105 106
}

do_ffmpeg_nocheck()
{
    f="$1"
    shift
107
    $echov $ffmpeg $FFMPEG_OPTS $*
108
    $ffmpeg $FFMPEG_OPTS -benchmark $* > $bench
109 110
    expr "$(cat $bench)" : '.*utime=\(.*s\)' > $bench2
    echo $(cat $bench2) $f >> $benchfile
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
}

do_video_decoding()
{
    do_ffmpeg $raw_dst $1 -i $target_path/$file -f rawvideo $2
}

do_video_encoding()
{
    file=${outfile}$1
    do_ffmpeg $file $2 -f image2 -vcodec pgmyuv -i $raw_src $3
}

do_audio_encoding()
{
    file=${outfile}$1
    do_ffmpeg $file -ab 128k -ac 2 -f s16le -i $pcm_src $3
}

do_audio_decoding()
{
    do_ffmpeg $pcm_dst -i $target_path/$file -sample_fmt s16 -f wav
}