3 # common regression functions for avconv
14 datadir
="./tests/data"
15 target_datadir
="${target_path}/${datadir}"
17 this
="$test.$test_ref"
18 outfile
="$datadir/$test_ref/"
21 avconv
="$target_exec ${target_path}/avconv"
22 tiny_psnr
="tests/tiny_psnr"
23 raw_src
="${target_path}/$raw_src_dir/%02d.pgm"
24 raw_dst
="$datadir/$this.out.yuv"
25 raw_ref
="$datadir/$test_ref.ref.yuv"
26 pcm_src
="$target_datadir/asynth1.sw"
27 pcm_dst
="$datadir/$this.out.wav"
28 pcm_ref
="$datadir/$test_ref.ref.wav"
29 crcfile
="$datadir/$this.crc"
30 target_crcfile
="$target_datadir/$this.crc"
32 cleanfiles
="$raw_dst $pcm_dst $crcfile"
33 trap 'rm -f -- $cleanfiles' EXIT
38 [ "${V-0}" -gt
0 ] && echov
=echov || echov
=:
44 . $
(dirname $0)/md5.sh
46 AVCONV_OPTS
="-nostats -y"
47 COMMON_OPTS
="-flags +bitexact -idct simple -sws_flags +accurate_rnd+bitexact"
48 DEC_OPTS
="$COMMON_OPTS -threads $threads"
49 ENC_OPTS
="$COMMON_OPTS -threads 1 -dct fastint"
53 $echov $avconv $AVCONV_OPTS $
*
54 $avconv $AVCONV_OPTS $
*
61 set -- $
* ${target_path}/$f
64 if [ $f = $raw_dst ] ; then
65 $tiny_psnr $f $raw_ref
66 elif [ $f = $pcm_dst ] ; then
67 $tiny_psnr $f $pcm_ref 2
77 set -- $
* ${target_path}/$f
79 if [ $f = $raw_dst ] ; then
80 $tiny_psnr $f $raw_ref
81 elif [ $f = $pcm_dst ] ; then
82 $tiny_psnr $f $pcm_ref 2
92 run_avconv $
* -f crc
"$target_crcfile"
93 echo "$f $(cat $crcfile)"
98 do_avconv
$raw_dst $DEC_OPTS $1 -i
$target_path/$file -f rawvideo
$ENC_OPTS $2
104 do_avconv
$file $DEC_OPTS -f image2
-vcodec pgmyuv
-i
$raw_src $ENC_OPTS $2
110 do_avconv
$file $DEC_OPTS -ac
2 -ar 44100 -f s16le
-i
$pcm_src -ab
128k
$ENC_OPTS $2
115 do_avconv
$pcm_dst $DEC_OPTS -i
$target_path/$file -sample_fmt s16
-f wav