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

test="${1#regtest-}"
test_ref=$2
raw_src_dir=$3
10 11
target_exec=$4
target_path=$5
12
threads=${6:-1}
13
cpuflags=${8:-all}
14
samples=$9
15 16 17 18 19

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

this="$test.$test_ref"
20
outfile="$datadir/$test_ref/"
21 22

# various files
23
avconv="$target_exec ${target_path}/ffmpeg"
24 25 26 27 28 29 30 31 32 33
tiny_psnr="tests/tiny_psnr"
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"

34
cleanfiles="$raw_dst $pcm_dst $crcfile"
35 36
trap 'rm -f -- $cleanfiles' EXIT

37
mkdir -p "$datadir"
38
mkdir -p "$outfile"
39 40

[ "${V-0}" -gt 0 ] && echov=echov || echov=:
41

42 43 44 45
echov(){
    echo "$@" >&3
}

46
. $(dirname $0)/md5.sh
47

48
AVCONV_OPTS="-nostats -y -cpuflags $cpuflags"
49 50
COMMON_OPTS="-flags +bitexact -idct simple -sws_flags +accurate_rnd+bitexact"
DEC_OPTS="$COMMON_OPTS -threads $threads"
51
ENC_OPTS="$COMMON_OPTS -threads 1 -dct fastint"
52

53
run_avconv()
54
{
55 56
    $echov $avconv $AVCONV_OPTS $*
    $avconv $AVCONV_OPTS $*
57 58
}

59
do_avconv()
60 61 62 63
{
    f="$1"
    shift
    set -- $* ${target_path}/$f
64
    run_avconv $*
65
    do_md5sum $f
66
    if [ $f = $raw_dst ] ; then
67
        $tiny_psnr $f $raw_ref
68
    elif [ $f = $pcm_dst ] ; then
69
        $tiny_psnr $f $pcm_ref 2
70
    else
71
        wc -c $f
72 73 74
    fi
}

75
do_avconv_nomd5()
76 77 78 79
{
    f="$1"
    shift
    set -- $* ${target_path}/$f
80
    run_avconv $*
81
    if [ $f = $raw_dst ] ; then
82
        $tiny_psnr $f $raw_ref
83
    elif [ $f = $pcm_dst ] ; then
84
        $tiny_psnr $f $pcm_ref 2
85
    else
86
        wc -c $f
87 88 89
    fi
}

90
do_avconv_crc()
91 92 93
{
    f="$1"
    shift
94
    run_avconv $* -f crc "$target_crcfile"
95
    echo "$f $(cat $crcfile)"
96 97 98 99
}

do_video_decoding()
{
100
    do_avconv $raw_dst $DEC_OPTS $1 -i $target_path/$file -f rawvideo $ENC_OPTS -vsync 0 $2
101 102 103 104 105
}

do_video_encoding()
{
    file=${outfile}$1
106
    do_avconv $file $DEC_OPTS -f image2 -vcodec pgmyuv -i $raw_src $ENC_OPTS $2
107 108
}

109 110 111 112 113 114
do_video_encoding_nomd5()
{
    file=${outfile}$1
    do_avconv_nomd5 $file $DEC_OPTS -f image2 -vcodec pgmyuv -i $raw_src $ENC_OPTS $2
}

115 116 117
do_audio_encoding()
{
    file=${outfile}$1
118
    do_avconv $file $DEC_OPTS -ac 2 -ar 44100 -f s16le -i $pcm_src -ab 128k $ENC_OPTS $2
119 120 121 122
}

do_audio_decoding()
{
123
    do_avconv $pcm_dst $DEC_OPTS -i $target_path/$file -sample_fmt s16 -f wav
124
}