Commit | Line | Data |
---|---|---|
51133a7d FB |
1 | #!/bin/sh |
2 | # | |
3 | # automatic regression test for ffmpeg | |
4 | # | |
5 | # | |
6 | #set -x | |
6e023978 RS |
7 | # Even in the 21st century some diffs are not supporting -u. |
8 | diff -u $0 $0 > /dev/null 2>&1 | |
9 | if [ $? -eq 0 ]; then | |
10 | diff_cmd="diff -u" | |
11 | else | |
12 | diff_cmd="diff" | |
13 | fi | |
14 | ||
d9d7653e MN |
15 | diff -w $0 $0 > /dev/null 2>&1 |
16 | if [ $? -eq 0 ]; then | |
17 | diff_cmd="$diff_cmd -w" | |
18 | fi | |
19 | ||
51133a7d FB |
20 | set -e |
21 | ||
5bcfd1ad FB |
22 | datadir="./data" |
23 | ||
24 | logfile="$datadir/ffmpeg.regression" | |
a12eea30 | 25 | outfile="$datadir/a-" |
89d5dfd5 | 26 | |
51133a7d FB |
27 | # tests to do |
28 | if [ "$1" = "mpeg4" ] ; then | |
29 | do_mpeg4=y | |
30 | elif [ "$1" = "mpeg" ] ; then | |
31 | do_mpeg=y | |
853d659d | 32 | do_mpeg2=y |
7481e919 FB |
33 | elif [ "$1" = "ac3" ] ; then |
34 | do_ac3=y | |
89d5dfd5 FB |
35 | elif [ "$1" = "libavtest" ] ; then |
36 | do_libav=y | |
5bcfd1ad | 37 | logfile="$datadir/libav.regression" |
a12eea30 | 38 | outfile="$datadir/b-" |
51133a7d FB |
39 | else |
40 | do_mpeg=y | |
922bc38d | 41 | do_mpeg2=y |
9c3d33d6 | 42 | do_mpeg2thread=y |
6ebd933b | 43 | do_msmpeg4v2=y |
51133a7d | 44 | do_msmpeg4=y |
6ebd933b | 45 | do_wmv1=y |
e23d5712 | 46 | do_wmv2=y |
51133a7d | 47 | do_h263=y |
6e2d5f1a | 48 | do_h263p=y |
51133a7d | 49 | do_mpeg4=y |
e23d5712 | 50 | do_huffyuv=y |
51133a7d | 51 | do_mjpeg=y |
3b37408b | 52 | do_ljpeg=y |
64a7a8af | 53 | do_rv10=y |
51133a7d FB |
54 | do_mp2=y |
55 | do_ac3=y | |
311be1fb | 56 | do_g726=y |
f02ab814 MN |
57 | do_adpcm_ima_wav=y |
58 | do_adpcm_ms=y | |
1dbb6d90 MN |
59 | do_rc=y |
60 | do_mpeg4adv=y | |
9c3d33d6 | 61 | do_mpeg4thread=y |
be408b67 | 62 | do_mpeg4nr=y |
cfadadec | 63 | do_mpeg1b=y |
9ca9fce1 | 64 | do_asv1=y |
8d876a43 | 65 | do_asv2=y |
bbdd42d3 | 66 | do_flv=y |
f3203047 | 67 | do_ffv1=y |
7ebfc0ea | 68 | do_error=y |
b86bd1f1 | 69 | do_svq1=y |
51133a7d FB |
70 | fi |
71 | ||
72 | ||
73 | # various files | |
3aca208a | 74 | ffmpeg="../ffmpeg_g" |
67cbe681 | 75 | tiny_psnr="./tiny_psnr" |
51133a7d | 76 | reffile="$2" |
5bcfd1ad | 77 | benchfile="$datadir/ffmpeg.bench" |
6afd3b92 | 78 | raw_src="$3/%d.pgm" |
5bcfd1ad | 79 | raw_dst="$datadir/out.yuv" |
67cbe681 | 80 | raw_ref="$datadir/ref.yuv" |
51133a7d | 81 | pcm_src="asynth1.sw" |
5bcfd1ad | 82 | pcm_dst="$datadir/out.wav" |
853d659d JD |
83 | if [ X"`echo | md5sum 2> /dev/null`" != X ]; then |
84 | do_md5sum() { md5sum -b $1; } | |
85 | elif [ -x /sbin/md5 ]; then | |
86 | do_md5sum() { /sbin/md5 -r $1 | sed 's# \**\./# *./#'; } | |
87 | else | |
88 | do_md5sum() { echo No md5sum program found; } | |
89 | fi | |
5bcfd1ad FB |
90 | |
91 | # create the data directory if it does not exists | |
92 | mkdir -p $datadir | |
51133a7d | 93 | |
3f027ca7 | 94 | do_ffmpeg() |
51133a7d FB |
95 | { |
96 | f="$1" | |
97 | shift | |
affd55a1 RS |
98 | echo $ffmpeg -y -bitexact -dct_algo 1 -idct_algo 2 $* |
99 | $ffmpeg -y -bitexact -dct_algo 1 -idct_algo 2 -benchmark $* > $datadir/bench.tmp 2> /tmp/ffmpeg$$ | |
19a11db2 | 100 | egrep -v "^(Stream|Press|Input|Output|frame| Stream| Duration)" /tmp/ffmpeg$$ || true |
e31c1c30 | 101 | rm -f /tmp/ffmpeg$$ |
853d659d | 102 | do_md5sum $f >> $logfile |
67cbe681 MN |
103 | if [ $f = $raw_dst ] ; then |
104 | $tiny_psnr $f $raw_ref >> $logfile | |
039e7889 MN |
105 | else |
106 | wc -c $f >> $logfile | |
67cbe681 | 107 | fi |
90cee0c3 | 108 | expr "`cat $datadir/bench.tmp`" : '.*utime=\(.*s\)' > $datadir/bench2.tmp |
5bcfd1ad | 109 | echo `cat $datadir/bench2.tmp` $f >> $benchfile |
51133a7d FB |
110 | } |
111 | ||
3f027ca7 | 112 | do_ffmpeg_crc() |
89d5dfd5 FB |
113 | { |
114 | f="$1" | |
115 | shift | |
2ad1516a | 116 | echo $ffmpeg -y -bitexact -dct_algo 1 -idct_algo 2 $* -f crc $datadir/ffmpeg.crc |
affd55a1 | 117 | $ffmpeg -y -bitexact -dct_algo 1 -idct_algo 2 $* -f crc $datadir/ffmpeg.crc > /tmp/ffmpeg$$ 2>&1 |
19a11db2 | 118 | egrep -v "^(Stream|Press|Input|Output|frame| Stream| Duration)" /tmp/ffmpeg$$ || true |
affd55a1 RS |
119 | rm -f /tmp/ffmpeg$$ |
120 | echo "$f `cat $datadir/ffmpeg.crc`" >> $logfile | |
89d5dfd5 | 121 | } |
51133a7d | 122 | |
67cbe681 MN |
123 | do_ffmpeg_nocheck() |
124 | { | |
125 | f="$1" | |
126 | shift | |
affd55a1 RS |
127 | echo $ffmpeg -y -bitexact -dct_algo 1 -idct_algo 2 $* |
128 | $ffmpeg -y -bitexact -dct_algo 1 -idct_algo 2 -benchmark $* > $datadir/bench.tmp 2> /tmp/ffmpeg$$ | |
19a11db2 | 129 | egrep -v "^(Stream|Press|Input|Output|frame| Stream| Duration)" /tmp/ffmpeg$$ || true |
affd55a1 | 130 | rm -f /tmp/ffmpeg$$ |
67cbe681 MN |
131 | expr "`cat $datadir/bench.tmp`" : '.*utime=\(.*s\)' > $datadir/bench2.tmp |
132 | echo `cat $datadir/bench2.tmp` $f >> $benchfile | |
133 | } | |
134 | ||
51133a7d FB |
135 | echo "ffmpeg regression test" > $logfile |
136 | echo "ffmpeg benchmarks" > $benchfile | |
137 | ||
138 | ################################### | |
67cbe681 MN |
139 | # generate reference for quality check |
140 | do_ffmpeg_nocheck $raw_ref -y -f pgmyuv -i $raw_src -an -f rawvideo $raw_ref | |
141 | ||
142 | ################################### | |
51133a7d FB |
143 | if [ -n "$do_mpeg" ] ; then |
144 | # mpeg1 encoding | |
145 | file=${outfile}mpeg1.mpg | |
89d5dfd5 | 146 | do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -f mpeg1video $file |
51133a7d FB |
147 | |
148 | # mpeg1 decoding | |
89d5dfd5 | 149 | do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst |
922bc38d MN |
150 | fi |
151 | ||
152 | ################################### | |
153 | if [ -n "$do_mpeg2" ] ; then | |
154 | # mpeg2 encoding | |
83dddc4a FB |
155 | file=${outfile}mpeg2.mpg |
156 | do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -vcodec mpeg2video -f mpeg1video $file | |
157 | ||
158 | # mpeg2 decoding | |
159 | do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst | |
160 | ||
6486ad57 MN |
161 | # mpeg2 encoding |
162 | file=${outfile}mpeg2.mpg | |
163 | do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -vcodec mpeg2video -idct_algo 1 -dct_algo 2 -f mpeg1video $file | |
164 | ||
165 | # mpeg2 decoding | |
166 | do_ffmpeg $raw_dst -y -idct_algo 1 -i $file -f rawvideo $raw_dst | |
167 | ||
83dddc4a FB |
168 | # mpeg2 encoding interlaced |
169 | file=${outfile}mpeg2i.mpg | |
69768b77 | 170 | do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -vcodec mpeg2video -f mpeg1video -ildct -ilme $file |
51133a7d FB |
171 | |
172 | # mpeg2 decoding | |
922bc38d | 173 | do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst |
51133a7d FB |
174 | fi |
175 | ||
176 | ################################### | |
9c3d33d6 MN |
177 | if [ -n "$do_mpeg2thread" ] ; then |
178 | # mpeg2 encoding interlaced | |
179 | file=${outfile}mpeg2thread.mpg | |
180 | do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -vcodec mpeg2video -f mpeg1video -bf 2 -ildct -ilme -threads 2 $file | |
181 | ||
182 | # mpeg2 decoding | |
183 | do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst | |
184 | fi | |
185 | ||
186 | ################################### | |
6ebd933b MN |
187 | if [ -n "$do_msmpeg4v2" ] ; then |
188 | # msmpeg4 encoding | |
189 | file=${outfile}msmpeg4v2.avi | |
190 | do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -an -vcodec msmpeg4v2 $file | |
191 | ||
192 | # msmpeg4v2 decoding | |
193 | do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst | |
194 | fi | |
195 | ||
196 | ################################### | |
51133a7d FB |
197 | if [ -n "$do_msmpeg4" ] ; then |
198 | # msmpeg4 encoding | |
199 | file=${outfile}msmpeg4.avi | |
200 | do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -an -vcodec msmpeg4 $file | |
201 | ||
202 | # msmpeg4 decoding | |
203 | do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst | |
204 | fi | |
205 | ||
206 | ################################### | |
6ebd933b MN |
207 | if [ -n "$do_wmv1" ] ; then |
208 | # wmv1 encoding | |
209 | file=${outfile}wmv1.avi | |
210 | do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -an -vcodec wmv1 $file | |
211 | ||
212 | # wmv1 decoding | |
213 | do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst | |
214 | fi | |
215 | ||
216 | ################################### | |
e23d5712 MN |
217 | if [ -n "$do_wmv2" ] ; then |
218 | # wmv2 encoding | |
219 | file=${outfile}wmv2.avi | |
220 | do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -an -vcodec wmv2 $file | |
221 | ||
222 | # wmv2 decoding | |
223 | do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst | |
224 | fi | |
225 | ||
226 | ################################### | |
51133a7d FB |
227 | if [ -n "$do_h263" ] ; then |
228 | # h263 encoding | |
229 | file=${outfile}h263.avi | |
230 | do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -s 352x288 -an -vcodec h263 $file | |
231 | ||
6e2d5f1a MN |
232 | # h263 decoding |
233 | do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst | |
234 | fi | |
235 | ||
236 | ################################### | |
237 | if [ -n "$do_h263p" ] ; then | |
238 | # h263p encoding | |
239 | file=${outfile}h263p.avi | |
d7d24282 | 240 | do_ffmpeg $file -y -qscale 2 -umv -aiv -aic -f pgmyuv -i $raw_src -s 352x288 -an -vcodec h263p -ps 300 $file |
6e2d5f1a | 241 | |
51133a7d FB |
242 | # h263p decoding |
243 | do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst | |
244 | fi | |
245 | ||
246 | ################################### | |
247 | if [ -n "$do_mpeg4" ] ; then | |
248 | # mpeg4 | |
28c70622 | 249 | file=${outfile}odivx.mp4 |
d3985de7 | 250 | do_ffmpeg $file -y -4mv -hq -qscale 10 -f pgmyuv -i $raw_src -an -vcodec mpeg4 $file |
51133a7d FB |
251 | |
252 | # mpeg4 decoding | |
253 | do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst | |
254 | fi | |
255 | ||
256 | ################################### | |
e629ab68 RD |
257 | if [ -n "$do_huffyuv" ] ; then |
258 | # huffyuv | |
259 | file=${outfile}huffyuv.avi | |
260 | do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -an -vcodec huffyuv -strict -1 $file | |
261 | ||
262 | # huffyuv decoding | |
263 | do_ffmpeg $raw_dst -y -i $file -f rawvideo -strict -1 $raw_dst | |
264 | fi | |
265 | ||
266 | ################################### | |
1dbb6d90 MN |
267 | if [ -n "$do_rc" ] ; then |
268 | # mpeg4 rate control | |
269 | file=${outfile}mpeg4-rc.avi | |
270 | do_ffmpeg $file -y -b 400 -bf 2 -f pgmyuv -i $raw_src -an -vcodec mpeg4 $file | |
271 | ||
272 | # mpeg4 rate control decoding | |
273 | do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst | |
274 | fi | |
275 | ||
276 | ################################### | |
277 | if [ -n "$do_mpeg4adv" ] ; then | |
278 | # mpeg4 | |
279 | file=${outfile}mpeg4-adv.avi | |
c0baa56a | 280 | do_ffmpeg $file -y -qscale 9 -4mv -hq -part -ps 200 -aic -trell -f pgmyuv -i $raw_src -an -vcodec mpeg4 $file |
1dbb6d90 MN |
281 | |
282 | # mpeg4 decoding | |
283 | do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst | |
284 | fi | |
285 | ||
286 | ################################### | |
9c3d33d6 MN |
287 | if [ -n "$do_mpeg4thread" ] ; then |
288 | # mpeg4 | |
289 | file=${outfile}mpeg4-thread.avi | |
290 | do_ffmpeg $file -y -b 500 -4mv -hq -part -ps 200 -aic -trell -bf 2 -f pgmyuv -i $raw_src -an -vcodec mpeg4 -threads 2 $file | |
291 | ||
292 | # mpeg4 decoding | |
293 | do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst | |
aab9cdcf MN |
294 | fi |
295 | ||
296 | ################################### | |
297 | if [ -n "$do_mpeg4adv" ] ; then | |
298 | # mpeg4 | |
299 | file=${outfile}mpeg4-Q.avi | |
300 | do_ffmpeg $file -y -qscale 7 -4mv -mbd 2 -qpel -bf 2 -cmp 1 -subcmp 2 -f pgmyuv -i $raw_src -an -vcodec mpeg4 $file | |
301 | ||
302 | # mpeg4 decoding | |
303 | do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst | |
9c3d33d6 MN |
304 | fi |
305 | ||
306 | ################################### | |
7ebfc0ea MN |
307 | if [ -n "$do_error" ] ; then |
308 | # damaged mpeg4 | |
309 | file=${outfile}error-mpeg4-adv.avi | |
310 | do_ffmpeg $file -y -qscale 7 -4mv -mbd 2 -part -ps 250 -error 10 -aic -f pgmyuv -i $raw_src -an -vcodec mpeg4 $file | |
311 | ||
312 | # damaged mpeg4 decoding | |
313 | do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst | |
314 | fi | |
315 | ||
316 | ################################### | |
be408b67 MN |
317 | if [ -n "$do_mpeg4nr" ] ; then |
318 | # noise reduction | |
9c3d33d6 | 319 | file=${outfile}mpeg4-nr.avi |
be408b67 MN |
320 | do_ffmpeg $file -y -qscale 8 -4mv -mbd 2 -nr 200 -f pgmyuv -i $raw_src -an -vcodec mpeg4 $file |
321 | ||
322 | # mpeg4 decoding | |
323 | do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst | |
324 | fi | |
325 | ||
326 | ################################### | |
cfadadec MN |
327 | if [ -n "$do_mpeg1b" ] ; then |
328 | # mpeg1 | |
329 | file=${outfile}mpeg1b.mpg | |
83dddc4a | 330 | do_ffmpeg $file -y -qscale 8 -bf 3 -ps 200 -f pgmyuv -i $raw_src -an -vcodec mpeg1video -f mpeg1video $file |
cfadadec MN |
331 | |
332 | # mpeg1 decoding | |
333 | do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst | |
334 | fi | |
335 | ||
336 | ################################### | |
51133a7d FB |
337 | if [ -n "$do_mjpeg" ] ; then |
338 | # mjpeg | |
339 | file=${outfile}mjpeg.avi | |
340 | do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -an -vcodec mjpeg $file | |
341 | ||
342 | # mjpeg decoding | |
343 | do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst | |
344 | fi | |
345 | ||
346 | ################################### | |
3b37408b MN |
347 | if [ -n "$do_ljpeg" ] ; then |
348 | # ljpeg | |
349 | file=${outfile}ljpeg.avi | |
350 | do_ffmpeg $file -y -f pgmyuv -i $raw_src -an -vcodec ljpeg $file | |
351 | ||
352 | # ljpeg decoding | |
353 | do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst | |
354 | fi | |
355 | ||
356 | ################################### | |
51133a7d FB |
357 | if [ -n "$do_rv10" ] ; then |
358 | # rv10 encoding | |
359 | file=${outfile}rv10.rm | |
360 | do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -an $file | |
361 | ||
362 | # rv10 decoding | |
363 | do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst | |
364 | fi | |
365 | ||
366 | ################################### | |
9ca9fce1 MN |
367 | if [ -n "$do_asv1" ] ; then |
368 | # asv1 encoding | |
369 | file=${outfile}asv1.avi | |
370 | do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -an -vcodec asv1 $file | |
371 | ||
372 | # asv1 decoding | |
373 | do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst | |
374 | fi | |
375 | ||
376 | ################################### | |
8d876a43 MN |
377 | if [ -n "$do_asv2" ] ; then |
378 | # asv2 encoding | |
379 | file=${outfile}asv2.avi | |
380 | do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -an -vcodec asv2 $file | |
381 | ||
382 | # asv2 decoding | |
383 | do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst | |
384 | fi | |
385 | ||
386 | ################################### | |
bbdd42d3 MN |
387 | if [ -n "$do_flv" ] ; then |
388 | # flv encoding | |
389 | file=${outfile}flv.flv | |
390 | do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -an -vcodec flv $file | |
391 | ||
392 | # flv decoding | |
393 | do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst | |
394 | fi | |
395 | ||
396 | ################################### | |
f3203047 MN |
397 | if [ -n "$do_ffv1" ] ; then |
398 | # ffv1 encoding | |
399 | file=${outfile}ffv1.avi | |
400 | do_ffmpeg $file -y -strict -1 -f pgmyuv -i $raw_src -an -vcodec ffv1 $file | |
401 | ||
402 | # ffv1 decoding | |
403 | do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst | |
404 | fi | |
405 | ||
406 | ################################### | |
b86bd1f1 MN |
407 | if [ -n "$do_svq1" ] ; then |
408 | # svq1 encoding | |
409 | file=${outfile}svq1.mov | |
e6cf9be5 | 410 | do_ffmpeg $file -y -f pgmyuv -i $raw_src -an -vcodec svq1 -qscale 3 -pix_fmt yuv410p $file |
b86bd1f1 MN |
411 | |
412 | # svq1 decoding | |
413 | do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst | |
414 | fi | |
415 | ||
416 | ################################### | |
51133a7d FB |
417 | if [ -n "$do_mp2" ] ; then |
418 | # mp2 encoding | |
419 | file=${outfile}mp2.mp2 | |
420 | do_ffmpeg $file -y -ab 128 -ac 2 -ar 44100 -f s16le -i $pcm_src $file | |
421 | ||
422 | # mp2 decoding | |
423 | do_ffmpeg $pcm_dst -y -i $file -f wav $pcm_dst | |
424 | fi | |
425 | ||
426 | ################################### | |
427 | if [ -n "$do_ac3" ] ; then | |
428 | # ac3 encoding | |
429 | file=${outfile}ac3.rm | |
430 | do_ffmpeg $file -y -ab 128 -ac 2 -f s16le -i $pcm_src -vn $file | |
431 | ||
432 | # ac3 decoding | |
3c300082 | 433 | #do_ffmpeg $pcm_dst -y -i $file -f wav $pcm_dst |
51133a7d FB |
434 | fi |
435 | ||
89d5dfd5 | 436 | ################################### |
311be1fb MN |
437 | if [ -n "$do_g726" ] ; then |
438 | # g726 encoding | |
439 | file=${outfile}g726.wav | |
440 | do_ffmpeg $file -y -ab 128 -ac 2 -ar 44100 -f s16le -i $pcm_src -ab 32 -ac 1 -ar 8000 -acodec g726 $file | |
441 | ||
442 | # g726 decoding | |
443 | do_ffmpeg $pcm_dst -y -i $file -f wav $pcm_dst | |
444 | fi | |
445 | ||
446 | ################################### | |
f02ab814 MN |
447 | if [ -n "$do_adpcm_ima_wav" ] ; then |
448 | # encoding | |
449 | file=${outfile}adpcm_ima.wav | |
450 | do_ffmpeg $file -y -ab 128 -ac 2 -ar 44100 -f s16le -i $pcm_src -acodec adpcm_ima_wav $file | |
451 | ||
452 | # decoding | |
453 | do_ffmpeg $pcm_dst -y -i $file -f wav $pcm_dst | |
454 | fi | |
455 | ||
456 | ################################### | |
457 | if [ -n "$do_adpcm_ms" ] ; then | |
458 | # encoding | |
459 | file=${outfile}adpcm_ms.wav | |
460 | do_ffmpeg $file -y -ab 128 -ac 2 -ar 44100 -f s16le -i $pcm_src -acodec adpcm_ms $file | |
461 | ||
462 | # decoding | |
463 | do_ffmpeg $pcm_dst -y -i $file -f wav $pcm_dst | |
464 | fi | |
465 | ||
466 | ################################### | |
89d5dfd5 FB |
467 | # libav testing |
468 | ################################### | |
469 | ||
470 | if [ -n "$do_libav" ] ; then | |
471 | ||
472 | # avi | |
473 | file=${outfile}libav.avi | |
474 | do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f s16le -i $pcm_src $file | |
475 | do_ffmpeg_crc $file -i $file | |
476 | ||
477 | # asf | |
478 | file=${outfile}libav.asf | |
ba30abcb | 479 | do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f s16le -i $pcm_src -acodec mp2 $file |
e928649b | 480 | do_ffmpeg_crc $file -i $file -r 25 |
89d5dfd5 FB |
481 | |
482 | # rm | |
483 | file=${outfile}libav.rm | |
484 | do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f s16le -i $pcm_src $file | |
485 | # broken | |
486 | #do_ffmpeg_crc $file -i $file | |
487 | ||
488 | # mpegps | |
489 | file=${outfile}libav.mpg | |
490 | do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f s16le -i $pcm_src $file | |
491 | do_ffmpeg_crc $file -i $file | |
492 | ||
493 | # swf (decode audio only) | |
494 | file=${outfile}libav.swf | |
2dd59ebd | 495 | do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f s16le -i $pcm_src -acodec mp2 $file |
d0c30ca5 | 496 | do_ffmpeg_crc $file -i $file |
89d5dfd5 FB |
497 | |
498 | # ffm | |
74d69c07 MN |
499 | file=${outfile}libav.ffm |
500 | do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f s16le -i $pcm_src $file | |
501 | do_ffmpeg_crc $file -i $file | |
89d5dfd5 | 502 | |
bbdd42d3 MN |
503 | # flv |
504 | file=${outfile}libav.flv | |
ba30abcb | 505 | do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f s16le -i $pcm_src -an $file |
bbdd42d3 MN |
506 | do_ffmpeg_crc $file -i $file |
507 | ||
c280f2d7 | 508 | # mov |
2dd59ebd MN |
509 | file=${outfile}libav.mov |
510 | do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f s16le -i $pcm_src -acodec pcm_alaw $file | |
511 | do_ffmpeg_crc $file -i $file | |
c280f2d7 MN |
512 | |
513 | # nut | |
514 | file=${outfile}libav.nut | |
ba30abcb | 515 | do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f s16le -i $pcm_src -acodec mp2 $file |
c280f2d7 MN |
516 | do_ffmpeg_crc $file -i $file |
517 | ||
a811de6e | 518 | # dv |
3ea1ce21 RS |
519 | file=${outfile}libav.dv |
520 | 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 | |
521 | do_ffmpeg_crc $file -i $file | |
a811de6e | 522 | |
c280f2d7 | 523 | # XXX: need mpegts tests (add bitstreams or add output capability in ffmpeg) |
89d5dfd5 FB |
524 | |
525 | #################### | |
526 | # streamed images | |
527 | # mjpeg | |
affd55a1 RS |
528 | #file=${outfile}libav.mjpeg |
529 | #do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src $file | |
530 | #do_ffmpeg_crc $file -i $file | |
89d5dfd5 | 531 | |
7481e919 FB |
532 | # pbmpipe |
533 | file=${outfile}libav.pbm | |
534 | do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f imagepipe $file | |
535 | do_ffmpeg_crc $file -f imagepipe -i $file | |
536 | ||
89d5dfd5 | 537 | # pgmpipe |
7481e919 FB |
538 | file=${outfile}libav.pgm |
539 | do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f imagepipe $file | |
540 | do_ffmpeg_crc $file -f imagepipe -i $file | |
89d5dfd5 FB |
541 | |
542 | # ppmpipe | |
7481e919 FB |
543 | file=${outfile}libav.ppm |
544 | do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f imagepipe $file | |
545 | do_ffmpeg_crc $file -f imagepipe -i $file | |
89d5dfd5 FB |
546 | |
547 | # gif | |
548 | file=${outfile}libav.gif | |
7481e919 FB |
549 | do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src $file |
550 | #do_ffmpeg_crc $file -i $file | |
551 | ||
552 | # yuv4mpeg | |
553 | file=${outfile}libav.yuv4mpeg | |
554 | do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src $file | |
555 | #do_ffmpeg_crc $file -i $file | |
89d5dfd5 FB |
556 | |
557 | #################### | |
558 | # image formats | |
559 | # pgm (we do not do md5 on image files yet) | |
560 | file=${outfile}libav%d.pgm | |
561 | $ffmpeg -t 0.5 -y -qscale 10 -f pgmyuv -i $raw_src $file | |
562 | do_ffmpeg_crc $file -i $file | |
563 | ||
564 | # ppm (we do not do md5 on image files yet) | |
565 | file=${outfile}libav%d.ppm | |
566 | $ffmpeg -t 0.5 -y -qscale 10 -f pgmyuv -i $raw_src $file | |
567 | do_ffmpeg_crc $file -i $file | |
568 | ||
d0c30ca5 | 569 | # jpeg (we do not do md5 on image files yet) |
72f89c4c MN |
570 | file=${outfile}libav%d.jpg |
571 | $ffmpeg -t 0.5 -y -qscale 10 -f pgmyuv -i $raw_src -f image2 $file | |
572 | do_ffmpeg_crc $file -f image2 -i $file | |
d0c30ca5 | 573 | |
89d5dfd5 FB |
574 | #################### |
575 | # audio only | |
576 | ||
577 | # wav | |
578 | file=${outfile}libav.wav | |
579 | do_ffmpeg $file -t 1 -y -qscale 10 -f s16le -i $pcm_src $file | |
580 | do_ffmpeg_crc $file -i $file | |
581 | ||
582 | # alaw | |
583 | file=${outfile}libav.al | |
584 | do_ffmpeg $file -t 1 -y -qscale 10 -f s16le -i $pcm_src $file | |
585 | do_ffmpeg_crc $file -i $file | |
586 | ||
587 | # mulaw | |
588 | file=${outfile}libav.ul | |
589 | do_ffmpeg $file -t 1 -y -qscale 10 -f s16le -i $pcm_src $file | |
590 | do_ffmpeg_crc $file -i $file | |
591 | ||
592 | # au | |
593 | file=${outfile}libav.au | |
594 | do_ffmpeg $file -t 1 -y -qscale 10 -f s16le -i $pcm_src $file | |
595 | do_ffmpeg_crc $file -i $file | |
596 | ||
affd55a1 RS |
597 | #################### |
598 | # pix_fmt conversions | |
599 | conversions="yuv420p yuv422p yuv444p yuv422 yuv410p yuv411p yuvj420p \ | |
600 | yuvj422p yuvj444p rgb24 bgr24 rgba32 rgb565 rgb555 gray monow \ | |
601 | monob pal8" | |
602 | for pix_fmt in $conversions ; do | |
603 | file=${outfile}libav-${pix_fmt}.yuv | |
604 | do_ffmpeg_nocheck $file -r 1 -t 1 -y -f pgmyuv -i $raw_src \ | |
605 | -f rawvideo -s 352x288 -pix_fmt $pix_fmt $raw_dst | |
606 | do_ffmpeg $file -f rawvideo -s 352x288 -pix_fmt $pix_fmt -i $raw_dst \ | |
607 | -f rawvideo -s 352x288 -pix_fmt yuv444p $file | |
608 | done | |
609 | ||
89d5dfd5 FB |
610 | fi |
611 | ||
612 | ||
51133a7d | 613 | |
6e023978 | 614 | if $diff_cmd $logfile $reffile ; then |
51133a7d FB |
615 | echo |
616 | echo Regression test succeeded. | |
617 | exit 0 | |
618 | else | |
619 | echo | |
620 | echo Regression test: Error. | |
621 | exit 1 | |
622 | fi |