regression.sh 19.4 KB
Newer Older
1 2 3 4 5 6
#!/bin/sh
#
# automatic regression test for ffmpeg
#
#
#set -x
7
# Even in the 21st century some diffs are not supporting -u.
M
Michael Niedermayer 已提交
8
diff -u "$0" "$0" > /dev/null 2>&1
9 10 11 12 13 14
if [ $? -eq 0 ]; then
  diff_cmd="diff -u"
else
  diff_cmd="diff"
fi

M
Michael Niedermayer 已提交
15
diff -w "$0" "$0" > /dev/null 2>&1
M
diff -w  
Michael Niedermayer 已提交
16 17 18 19
if [ $? -eq 0 ]; then
  diff_cmd="$diff_cmd -w"
fi

20 21
set -e

F
Fabrice Bellard 已提交
22 23 24
datadir="./data"

logfile="$datadir/ffmpeg.regression"
25
outfile="$datadir/a-"
F
Fabrice Bellard 已提交
26

27 28 29 30 31
# tests to do
if [ "$1" = "mpeg4" ] ; then
    do_mpeg4=y
elif [ "$1" = "mpeg" ] ; then
    do_mpeg=y
32
    do_mpeg2=y
F
Fabrice Bellard 已提交
33 34
elif [ "$1" = "ac3" ] ; then
    do_ac3=y
35 36
elif [ "$1" = "huffyuv" ] ; then
    do_huffyuv=y
M
Michael Niedermayer 已提交
37 38
elif [ "$1" = "mpeg2thread" ] ; then
    do_mpeg2thread=y
M
Michael Niedermayer 已提交
39 40
elif [ "$1" = "snow" ] ; then
    do_snow=y
M
Michael Niedermayer 已提交
41 42
elif [ "$1" = "snowll" ] ; then
    do_snowll=y
F
Fabrice Bellard 已提交
43 44
elif [ "$1" = "libavtest" ] ; then
    do_libav=y
F
Fabrice Bellard 已提交
45
    logfile="$datadir/libav.regression"
46
    outfile="$datadir/b-"
47 48
else
    do_mpeg=y
M
Michael Niedermayer 已提交
49
    do_mpeg2=y
50
    do_mpeg2thread=y
51
    do_msmpeg4v2=y
52
    do_msmpeg4=y
53
    do_wmv1=y
54
    do_wmv2=y
M
Michael Niedermayer 已提交
55
    do_h261=y
56
    do_h263=y
M
Michael Niedermayer 已提交
57
    do_h263p=y
58
    do_mpeg4=y
59
    do_mp4psp=y
60
    do_huffyuv=y
61
    do_mjpeg=y
62
    do_ljpeg=y
63
    do_rv10=y
M
Michael Niedermayer 已提交
64
    do_rv20=y
65 66
    do_mp2=y
    do_ac3=y
M
Michael Niedermayer 已提交
67
    do_g726=y
68 69
    do_adpcm_ima_wav=y
    do_adpcm_ms=y
70 71
    do_rc=y
    do_mpeg4adv=y
72
    do_mpeg4thread=y
73
    do_mpeg4nr=y
74
    do_mpeg1b=y
M
Michael Niedermayer 已提交
75
    do_asv1=y
M
Michael Niedermayer 已提交
76
    do_asv2=y
M
Michael Niedermayer 已提交
77
    do_flv=y
M
Michael Niedermayer 已提交
78
    do_ffv1=y
79
    do_error=y
M
Michael Niedermayer 已提交
80
    do_svq1=y
M
Michael Niedermayer 已提交
81
    do_snow=y
M
Michael Niedermayer 已提交
82
    do_snowll=y
83
    do_adpcm_yam=y
M
Michael Niedermayer 已提交
84
    do_dv=y
85 86 87 88
fi


# various files
M
Mark Hills 已提交
89
ffmpeg="../ffmpeg_g"
90
tiny_psnr="./tiny_psnr"
91
reffile="$2"
F
Fabrice Bellard 已提交
92
benchfile="$datadir/ffmpeg.bench"
93
raw_src="$3/%02d.pgm"
F
Fabrice Bellard 已提交
94
raw_dst="$datadir/out.yuv"
95
raw_ref="$datadir/ref.yuv"
96
pcm_src="asynth1.sw"
F
Fabrice Bellard 已提交
97
pcm_dst="$datadir/out.wav"
98
pcm_ref="$datadir/ref.wav"
99 100 101 102 103 104 105
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
F
Fabrice Bellard 已提交
106 107 108

# create the data directory if it does not exists
mkdir -p $datadir
109

110
do_ffmpeg()
111 112 113
{
    f="$1"
    shift
114 115
    echo $ffmpeg -y -flags +bitexact -dct fastint -idct simple $*
    $ffmpeg -y -flags +bitexact -dct fastint -idct simple -benchmark $* > $datadir/bench.tmp 2> /tmp/ffmpeg$$
116
    egrep -v "^(Stream|Press|Input|Output|frame|  Stream|  Duration|video:)" /tmp/ffmpeg$$ || true
117
    rm -f /tmp/ffmpeg$$
118
    do_md5sum $f >> $logfile
119 120
    if [ $f = $raw_dst ] ; then
        $tiny_psnr $f $raw_ref >> $logfile
121
    elif [ $f = $pcm_dst ] ; then
122
        $tiny_psnr $f $pcm_ref 2 >> $logfile
123 124
    else
        wc -c $f >> $logfile
125
    fi
126
    expr "`cat $datadir/bench.tmp`" : '.*utime=\(.*s\)' > $datadir/bench2.tmp
F
Fabrice Bellard 已提交
127
    echo `cat $datadir/bench2.tmp` $f >> $benchfile
128 129
}

130
do_ffmpeg_crc()
F
Fabrice Bellard 已提交
131 132 133
{
    f="$1"
    shift
134 135
    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
136
    egrep -v "^(Stream|Press|Input|Output|frame|  Stream|  Duration|video:|ffmpeg version|  configuration|  built)" /tmp/ffmpeg$$ || true
137
    rm -f /tmp/ffmpeg$$
138
    echo "$f `cat $datadir/ffmpeg.crc`" >> $logfile
F
Fabrice Bellard 已提交
139
}
140

141 142 143 144
do_ffmpeg_nocheck()
{
    f="$1"
    shift
145 146
    echo $ffmpeg -y -flags +bitexact -dct fastint -idct simple $*
    $ffmpeg -y -flags +bitexact -dct fastint -idct simple -benchmark $* > $datadir/bench.tmp 2> /tmp/ffmpeg$$
147
    egrep -v "^(Stream|Press|Input|Output|frame|  Stream|  Duration|video:)" /tmp/ffmpeg$$ || true
148
    rm -f /tmp/ffmpeg$$
149 150 151 152
    expr "`cat $datadir/bench.tmp`" : '.*utime=\(.*s\)' > $datadir/bench2.tmp
    echo `cat $datadir/bench2.tmp` $f >> $benchfile
}

153 154 155
echo "ffmpeg regression test" > $logfile
echo "ffmpeg benchmarks" > $benchfile

156 157 158
###################################
# generate reference for quality check
do_ffmpeg_nocheck $raw_ref -y -f pgmyuv -i $raw_src -an -f rawvideo $raw_ref
159
do_ffmpeg_nocheck $pcm_ref -y -ab 128 -ac 2 -ar 44100 -f s16le -i $pcm_src -f wav $pcm_ref
160

161 162 163 164
###################################
if [ -n "$do_mpeg" ] ; then
# mpeg1 encoding
file=${outfile}mpeg1.mpg
165
do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -f mpeg1video $file
166 167

# mpeg1 decoding
F
Fabrice Bellard 已提交
168
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
M
Michael Niedermayer 已提交
169 170 171 172 173
fi

###################################
if [ -n "$do_mpeg2" ] ; then
# mpeg2 encoding
174
file=${outfile}mpeg2.mpg
175
do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -vcodec mpeg2video -f mpeg1video $file
176 177 178 179

# mpeg2 decoding
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst

M
Michael Niedermayer 已提交
180 181
# mpeg2 encoding
file=${outfile}mpeg2.mpg
182
do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -vcodec mpeg2video -idct int -dct int -f mpeg1video $file
M
Michael Niedermayer 已提交
183 184

# mpeg2 decoding
185
do_ffmpeg $raw_dst -y -idct int -i $file -f rawvideo $raw_dst
M
Michael Niedermayer 已提交
186

187 188
# mpeg2 encoding interlaced
file=${outfile}mpeg2i.mpg
189
do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -vcodec mpeg2video -f mpeg1video -flags +ildct+ilme $file
190 191

# mpeg2 decoding
M
Michael Niedermayer 已提交
192
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
193 194
fi

195 196 197 198
###################################
if [ -n "$do_mpeg2thread" ] ; then
# mpeg2 encoding interlaced
file=${outfile}mpeg2thread.mpg
199
do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -vcodec mpeg2video -f mpeg1video -bf 2 -flags +ildct+ilme -threads 2 $file
200

M
Michael Niedermayer 已提交
201 202 203 204 205
# mpeg2 decoding
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst

# mpeg2 encoding interlaced
file=${outfile}mpeg2reuse.mpg
206
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
M
Michael Niedermayer 已提交
207

208 209 210 211
# mpeg2 decoding
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
fi

212 213 214 215 216 217 218
###################################
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
219
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
220 221
fi

222 223 224 225 226 227 228
###################################
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
229
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
230 231
fi

232 233 234 235 236 237 238
###################################
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
239
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
240 241
fi

242 243 244 245 246 247 248
###################################
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
249
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
250 251
fi

M
Michael Niedermayer 已提交
252 253 254 255 256 257 258
###################################
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
259
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
M
Michael Niedermayer 已提交
260 261
fi

262 263 264 265 266 267
###################################
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

M
Michael Niedermayer 已提交
268
# h263 decoding
269
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
M
Michael Niedermayer 已提交
270 271 272 273 274 275
fi

###################################
if [ -n "$do_h263p" ] ; then
# h263p encoding
file=${outfile}h263p.avi
276
do_ffmpeg $file -y -qscale 2 -flags +umv+aiv+aic -f pgmyuv -i $raw_src -s 352x288 -an -vcodec h263p -ps 300 $file
M
Michael Niedermayer 已提交
277

278
# h263p decoding
279
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
280 281 282 283 284
fi

###################################
if [ -n "$do_mpeg4" ] ; then
# mpeg4
285
file=${outfile}odivx.mp4
286
do_ffmpeg $file -y -flags +mv4 -mbd bits -qscale 10 -f pgmyuv -i $raw_src -an -vcodec mpeg4 $file
287 288

# mpeg4 decoding
289
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
290 291
fi

292 293 294 295
###################################
if [ -n "$do_huffyuv" ] ; then
# huffyuv
file=${outfile}huffyuv.avi
L
Loren Merritt 已提交
296
do_ffmpeg $file -y -f pgmyuv -i $raw_src -an -vcodec huffyuv -pix_fmt yuv422p $file
297 298

# huffyuv decoding
299
do_ffmpeg $raw_dst -y -i $file -f rawvideo -strict -2 -pix_fmt yuv420p $raw_dst
300 301
fi

302 303 304 305 306 307 308
###################################
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
309
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
310 311 312 313 314 315
fi

###################################
if [ -n "$do_mpeg4adv" ] ; then
# mpeg4
file=${outfile}mpeg4-adv.avi
316
do_ffmpeg $file -y -qscale 9 -flags +mv4+part+aic+trell -mbd bits -ps 200 -f pgmyuv -i $raw_src -an -vcodec mpeg4 $file
317 318

# mpeg4 decoding
319
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
320 321
fi

322 323 324 325
###################################
if [ -n "$do_mpeg4thread" ] ; then
# mpeg4
file=${outfile}mpeg4-thread.avi
326
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
327 328

# mpeg4 decoding
329
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
330 331 332 333 334 335
fi

###################################
if [ -n "$do_mpeg4adv" ] ; then
# mpeg4
file=${outfile}mpeg4-Q.avi
336
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
337 338

# mpeg4 decoding
339
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
340 341
fi

342 343 344 345 346 347 348
###################################
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

349 350 351 352
###################################
if [ -n "$do_error" ] ; then
# damaged mpeg4
file=${outfile}error-mpeg4-adv.avi
353
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
354 355

# damaged mpeg4 decoding
356
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
357 358
fi

359 360 361
###################################
if [ -n "$do_mpeg4nr" ] ; then
# noise reduction
362
file=${outfile}mpeg4-nr.avi
363
do_ffmpeg $file -y -qscale 8 -flags +mv4 -mbd rd -nr 200 -f pgmyuv -i $raw_src -an -vcodec mpeg4 $file
364 365

# mpeg4 decoding
366
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
367 368
fi

369 370 371 372
###################################
if [ -n "$do_mpeg1b" ] ; then
# mpeg1
file=${outfile}mpeg1b.mpg
373
do_ffmpeg $file -y -qscale 8 -bf 3 -ps 200 -f pgmyuv -i $raw_src -an -vcodec mpeg1video -f mpeg1video $file
374 375

# mpeg1 decoding
376
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
377 378
fi

379 380 381 382
###################################
if [ -n "$do_mjpeg" ] ; then
# mjpeg
file=${outfile}mjpeg.avi
M
Michael Niedermayer 已提交
383
do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -an -vcodec mjpeg -pix_fmt yuvj420p $file
384 385

# mjpeg decoding
386
do_ffmpeg $raw_dst -y -i $file -f rawvideo -pix_fmt yuv420p $raw_dst
387 388 389
fi

###################################
390 391 392
if [ -n "$do_ljpeg" ] ; then
# ljpeg
file=${outfile}ljpeg.avi
M
Michael Niedermayer 已提交
393
do_ffmpeg $file -y -f pgmyuv -i $raw_src -an -vcodec ljpeg -strict -1 $file
394 395

# ljpeg decoding
396
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
397 398 399
fi

###################################
400 401 402
if [ -n "$do_rv10" ] ; then
# rv10 encoding
file=${outfile}rv10.rm
403
do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -an $file
404 405

# rv10 decoding
406
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
407 408
fi

M
Michael Niedermayer 已提交
409 410 411 412
###################################
if [ -n "$do_rv20" ] ; then
# rv20 encoding
file=${outfile}rv20.rm
413
do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -vcodec rv20 -an $file
M
Michael Niedermayer 已提交
414 415

# rv20 decoding
416
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
M
Michael Niedermayer 已提交
417 418
fi

M
Michael Niedermayer 已提交
419 420 421 422 423 424 425
###################################
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
426
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
M
Michael Niedermayer 已提交
427 428
fi

M
Michael Niedermayer 已提交
429 430 431 432 433 434 435
###################################
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
436
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
M
Michael Niedermayer 已提交
437 438
fi

M
Michael Niedermayer 已提交
439 440 441 442 443 444 445
###################################
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
446
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
M
Michael Niedermayer 已提交
447 448
fi

M
Michael Niedermayer 已提交
449 450 451 452
###################################
if [ -n "$do_ffv1" ] ; then
# ffv1 encoding
file=${outfile}ffv1.avi
453
do_ffmpeg $file -y -strict -2 -f pgmyuv -i $raw_src -an -vcodec ffv1 $file
M
Michael Niedermayer 已提交
454 455

# ffv1 decoding
456
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
M
Michael Niedermayer 已提交
457 458 459 460 461 462
fi

###################################
if [ -n "$do_snow" ] ; then
# snow encoding
file=${outfile}snow.avi
463
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
M
Michael Niedermayer 已提交
464 465

# snow decoding
466
do_ffmpeg $raw_dst -y -i $file -f rawvideo -s 352x288 $raw_dst
M
Michael Niedermayer 已提交
467
fi
M
Michael Niedermayer 已提交
468

M
Michael Niedermayer 已提交
469 470
###################################
if [ -n "$do_snowll" ] ; then
M
Michael Niedermayer 已提交
471 472
# snow encoding
file=${outfile}snow53.avi
473
do_ffmpeg $file -y -strict -2 -f pgmyuv -i $raw_src -an -vcodec snow -pred 1 -flags +mv4+qpel $file
M
Michael Niedermayer 已提交
474 475

# snow decoding
476
do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst
M
Michael Niedermayer 已提交
477 478
fi

M
Michael Niedermayer 已提交
479 480 481 482
###################################
if [ -n "$do_dv" ] ; then
# dv encoding
file=${outfile}dv.dv
483
do_ffmpeg $file -dct int -y -f pgmyuv -i $raw_src -s pal -an $file
M
Michael Niedermayer 已提交
484 485

# dv decoding
486
do_ffmpeg $raw_dst -y -i $file -f rawvideo -s cif $raw_dst
M
Michael Niedermayer 已提交
487 488
fi

M
Michael Niedermayer 已提交
489 490 491 492
###################################
if [ -n "$do_svq1" ] ; then
# svq1 encoding
file=${outfile}svq1.mov
493
do_ffmpeg $file -y -f pgmyuv -i $raw_src -an -vcodec svq1 -qscale 3 -pix_fmt yuv410p $file
M
Michael Niedermayer 已提交
494 495

# svq1 decoding
496
do_ffmpeg $raw_dst -y -i $file -f rawvideo -pix_fmt yuv420p $raw_dst
M
Michael Niedermayer 已提交
497 498
fi

499 500 501 502
###################################
if [ -n "$do_mp2" ] ; then
# mp2 encoding
file=${outfile}mp2.mp2
503
do_ffmpeg $file -y -ab 128 -ac 2 -ar 44100 -f s16le -i $pcm_src $file
504 505

# mp2 decoding
506
do_ffmpeg $pcm_dst -y -i $file -f wav $pcm_dst
507
$tiny_psnr $pcm_dst $pcm_ref 2 1924 >> $logfile
508 509 510 511 512 513
fi

###################################
if [ -n "$do_ac3" ] ; then
# ac3 encoding
file=${outfile}ac3.rm
514
do_ffmpeg $file -y -ab 128 -ac 2 -f s16le  -i $pcm_src -vn $file
515 516

# ac3 decoding
517
#do_ffmpeg $pcm_dst -y -i $file -f wav $pcm_dst
518 519
fi

M
Michael Niedermayer 已提交
520 521 522 523
###################################
if [ -n "$do_g726" ] ; then
# g726 encoding
file=${outfile}g726.wav
524
do_ffmpeg $file -y -ab 128 -ac 2 -ar 44100 -f s16le -i $pcm_src -ab 32 -ac 1 -ar 8000 -acodec g726 $file
M
Michael Niedermayer 已提交
525 526

# g726 decoding
527
do_ffmpeg $pcm_dst -y -i $file -f wav $pcm_dst
M
Michael Niedermayer 已提交
528 529
fi

530 531 532 533
###################################
if [ -n "$do_adpcm_ima_wav" ] ; then
# encoding
file=${outfile}adpcm_ima.wav
534
do_ffmpeg $file -y -ab 128 -ac 2 -ar 44100 -f s16le -i $pcm_src -acodec adpcm_ima_wav $file
535 536

# decoding
537
do_ffmpeg $pcm_dst -y -i $file -f wav $pcm_dst
538 539 540 541 542 543
fi

###################################
if [ -n "$do_adpcm_ms" ] ; then
# encoding
file=${outfile}adpcm_ms.wav
544
do_ffmpeg $file -y -ab 128 -ac 2 -ar 44100 -f s16le -i $pcm_src -acodec adpcm_ms $file
545 546

# decoding
547
do_ffmpeg $pcm_dst -y -i $file -f wav $pcm_dst
548 549
fi

550 551 552 553
###################################
if [ -n "$do_adpcm_yam" ] ; then
# encoding
file=${outfile}adpcm_yam.wav
554
do_ffmpeg $file -y -ab 128 -ac 2 -ar 44100 -f s16le -i $pcm_src -acodec adpcm_yamaha $file
555 556

# decoding
557
do_ffmpeg $pcm_dst -y -i $file -f wav $pcm_dst
558 559
fi

F
Fabrice Bellard 已提交
560 561 562 563 564 565 566 567 568 569 570 571 572
###################################
# 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
573
do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f s16le -i $pcm_src -acodec mp2 $file
574
do_ffmpeg_crc $file -i $file -r 25
F
Fabrice Bellard 已提交
575 576 577 578 579 580 581 582 583 584 585 586

# 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

M
Michael Niedermayer 已提交
587 588 589 590 591
# 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

F
Fabrice Bellard 已提交
592 593
# swf (decode audio only)
file=${outfile}libav.swf
594
do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f s16le -i $pcm_src -acodec mp2 $file
595
do_ffmpeg_crc $file -i $file
F
Fabrice Bellard 已提交
596 597

# ffm
598 599 600
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
F
Fabrice Bellard 已提交
601

M
Michael Niedermayer 已提交
602 603
# flv
file=${outfile}libav.flv
604
do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f s16le -i $pcm_src -an $file
M
Michael Niedermayer 已提交
605 606
do_ffmpeg_crc $file -i $file

M
Michael Niedermayer 已提交
607
# mov
608 609 610
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
M
Michael Niedermayer 已提交
611 612 613

# nut
file=${outfile}libav.nut
614
do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f s16le -i $pcm_src -acodec mp2 $file
M
Michael Niedermayer 已提交
615 616
do_ffmpeg_crc $file -i $file

M
Michael Niedermayer 已提交
617
# dv
618 619 620
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
M
Michael Niedermayer 已提交
621

F
Fabrice Bellard 已提交
622 623 624
####################
# streamed images
# mjpeg
625 626 627
#file=${outfile}libav.mjpeg
#do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src $file
#do_ffmpeg_crc $file -i $file
F
Fabrice Bellard 已提交
628

F
Fabrice Bellard 已提交
629 630
# pbmpipe
file=${outfile}libav.pbm
631 632
do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f image2pipe $file
do_ffmpeg_crc $file -f image2pipe -i $file
F
Fabrice Bellard 已提交
633

F
Fabrice Bellard 已提交
634
# pgmpipe
F
Fabrice Bellard 已提交
635
file=${outfile}libav.pgm
636 637
do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f image2pipe $file
do_ffmpeg_crc $file -f image2pipe -i $file
F
Fabrice Bellard 已提交
638 639

# ppmpipe
F
Fabrice Bellard 已提交
640
file=${outfile}libav.ppm
641 642
do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f image2pipe $file
do_ffmpeg_crc $file -f image2pipe -i $file
F
Fabrice Bellard 已提交
643 644 645

# gif
file=${outfile}libav.gif
F
Fabrice Bellard 已提交
646 647 648 649
do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src $file
#do_ffmpeg_crc $file -i $file

# yuv4mpeg
650
file=${outfile}libav.y4m
F
Fabrice Bellard 已提交
651 652
do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src $file
#do_ffmpeg_crc $file -i $file
F
Fabrice Bellard 已提交
653 654 655 656

####################
# image formats
# pgm (we do not do md5 on image files yet)
657
file=${outfile}libav%02d.pgm
F
Fabrice Bellard 已提交
658 659 660 661
$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)
662
file=${outfile}libav%02d.ppm
F
Fabrice Bellard 已提交
663 664 665
$ffmpeg -t 0.5 -y -qscale 10 -f pgmyuv -i $raw_src $file
do_ffmpeg_crc $file -i $file

666
# jpeg (we do not do md5 on image files yet)
667
file=${outfile}libav%02d.jpg
668
$ffmpeg -t 0.5 -y -qscale 10 -f pgmyuv -i $raw_src -flags +bitexact -dct fastint -idct simple -pix_fmt yuvj420p -f image2 $file
M
Michael Niedermayer 已提交
669
do_ffmpeg_crc $file -f image2 -i $file
670

F
Fabrice Bellard 已提交
671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693
####################
# 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

694 695 696 697 698
# 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

699 700 701 702 703
# aiff
file=${outfile}libav.aif
do_ffmpeg $file -t 1 -y -qscale 10 -f s16le -i $pcm_src $file
do_ffmpeg_crc $file -i $file

704 705 706 707
####################
# pix_fmt conversions
conversions="yuv420p yuv422p yuv444p yuv422 yuv410p yuv411p yuvj420p \
             yuvj422p yuvj444p rgb24 bgr24 rgba32 rgb565 rgb555 gray monow \
708
             monob pal8"
709 710 711 712 713 714 715 716
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

F
Fabrice Bellard 已提交
717 718 719
fi


720

M
Michael Niedermayer 已提交
721
if $diff_cmd "$logfile" "$reffile" ; then
722
    echo
723 724 725
    echo Regression test succeeded.
    exit 0
else
726
    echo
727 728 729
    echo Regression test: Error.
    exit 1
fi