cosmetics: add more detailed information to the documentation for
[FFMpeg-mirror/lagarith.git] / tests / codec-regression.sh
blobd795459fb24ccf6cb10c860e726d703ddad8d071
1 #!/bin/sh
3 # automatic regression test for ffmpeg
6 #set -x
8 set -e
10 target_exec=$5
11 target_path=$6
13 datadir="./tests/data"
14 target_datadir="${target_path}/${datadir}"
16 test="${1#regtest-}"
17 this="$test.$2"
18 logfile="$datadir/$this.regression"
19 outfile="$datadir/$4-"
21 eval do_$test=y
23 # various files
24 ffmpeg="$target_exec ${target_path}/ffmpeg_g"
25 tiny_psnr="tests/tiny_psnr"
26 benchfile="$datadir/$this.bench"
27 bench="$datadir/$this.bench.tmp"
28 bench2="$datadir/$this.bench2.tmp"
29 raw_src="${target_path}/$3/%02d.pgm"
30 raw_dst="$datadir/$this.out.yuv"
31 raw_ref="$datadir/$2.ref.yuv"
32 pcm_src="$target_datadir/asynth1.sw"
33 pcm_dst="$datadir/$this.out.wav"
34 pcm_ref="$datadir/$2.ref.wav"
35 crcfile="$datadir/$this.crc"
36 target_crcfile="$target_datadir/$this.crc"
38 if [ X"`echo | md5sum 2> /dev/null`" != X ]; then
39 do_md5sum() { md5sum -b $1; }
40 elif [ X"`echo | md5 2> /dev/null`" != X ]; then
41 do_md5sum() { md5 -r $1 | sed 's# \**\./# *./#'; }
42 elif [ -x /sbin/md5 ]; then
43 do_md5sum() { /sbin/md5 -r $1 | sed 's# \**\./# *./#'; }
44 else
45 do_md5sum() { echo No md5sum program found; }
48 FFMPEG_OPTS="-y -flags +bitexact -dct fastint -idct simple -sws_flags +accurate_rnd+bitexact"
50 do_ffmpeg()
52 f="$1"
53 shift
54 set -- $* ${target_path}/$f
55 echo $ffmpeg $FFMPEG_OPTS $*
56 $ffmpeg $FFMPEG_OPTS -benchmark $* > $bench 2> /tmp/ffmpeg$$
57 egrep -v "^(Stream|Press|Input|Output|frame| Stream| Duration|video:)" /tmp/ffmpeg$$ || true
58 rm -f /tmp/ffmpeg$$
59 do_md5sum $f >> $logfile
60 if [ $f = $raw_dst ] ; then
61 $tiny_psnr $f $raw_ref >> $logfile
62 elif [ $f = $pcm_dst ] ; then
63 $tiny_psnr $f $pcm_ref 2 >> $logfile
64 else
65 wc -c $f >> $logfile
67 expr "`cat $bench`" : '.*utime=\(.*s\)' > $bench2
68 echo `cat $bench2` $f >> $benchfile
71 do_ffmpeg_nomd5()
73 f="$1"
74 shift
75 set -- $* ${target_path}/$f
76 echo $ffmpeg $FFMPEG_OPTS $*
77 $ffmpeg $FFMPEG_OPTS -benchmark $* > $bench 2> /tmp/ffmpeg$$
78 egrep -v "^(Stream|Press|Input|Output|frame| Stream| Duration|video:)" /tmp/ffmpeg$$ || true
79 rm -f /tmp/ffmpeg$$
80 if [ $f = $raw_dst ] ; then
81 $tiny_psnr $f $raw_ref >> $logfile
82 elif [ $f = $pcm_dst ] ; then
83 $tiny_psnr $f $pcm_ref 2 >> $logfile
84 else
85 wc -c $f >> $logfile
87 expr "`cat $bench`" : '.*utime=\(.*s\)' > $bench2
88 echo `cat $bench2` $f >> $benchfile
91 do_ffmpeg_crc()
93 f="$1"
94 shift
95 echo $ffmpeg $FFMPEG_OPTS $* -f crc "$target_crcfile"
96 $ffmpeg $FFMPEG_OPTS $* -f crc "$target_crcfile" > /tmp/ffmpeg$$ 2>&1
97 egrep -v "^(Stream|Press|Input|Output|frame| Stream| Duration|video:|ffmpeg version| configuration| built)" /tmp/ffmpeg$$ || true
98 rm -f /tmp/ffmpeg$$
99 echo "$f `cat $crcfile`" >> $logfile
100 rm -f "$crcfile"
103 do_ffmpeg_nocheck()
105 f="$1"
106 shift
107 echo $ffmpeg $FFMPEG_OPTS $*
108 $ffmpeg $FFMPEG_OPTS -benchmark $* > $bench 2> /tmp/ffmpeg$$
109 egrep -v "^(Stream|Press|Input|Output|frame| Stream| Duration|video:)" /tmp/ffmpeg$$ || true
110 rm -f /tmp/ffmpeg$$
111 expr "`cat $bench`" : '.*utime=\(.*s\)' > $bench2
112 echo `cat $bench2` $f >> $benchfile
115 do_video_decoding()
117 do_ffmpeg $raw_dst $1 -i $target_path/$file -f rawvideo $2
118 rm -f $raw_dst
121 do_video_encoding()
123 file=${outfile}$1
124 do_ffmpeg $file $2 -f image2 -vcodec pgmyuv -i $raw_src $3
127 do_audio_encoding()
129 file=${outfile}$1
130 do_ffmpeg $file -ab 128k -ac 2 -f s16le -i $pcm_src $3
133 do_audio_decoding()
135 do_ffmpeg $pcm_dst -i $target_path/$file -sample_fmt s16 -f wav
138 do_lavf()
140 file=${outfile}lavf.$1
141 do_ffmpeg $file -t 1 -qscale 10 -f image2 -vcodec pgmyuv -i $raw_src -f s16le -i $pcm_src $2
142 do_ffmpeg_crc $file -i $target_path/$file $3
145 do_streamed_images()
147 file=${outfile}${1}pipe.$1
148 do_ffmpeg $file -t 1 -qscale 10 -f image2 -vcodec pgmyuv -i $raw_src -f image2pipe
149 do_ffmpeg_crc $file -f image2pipe -i $target_path/$file
152 do_image_formats()
154 file=${outfile}lavf%02d.$1
155 echo $ffmpeg -t 0.5 -y -qscale 10 -f image2 -vcodec pgmyuv -i $raw_src $2 $3 -flags +bitexact -sws_flags +accurate_rnd+bitexact $target_path/$file
156 $ffmpeg -t 0.5 -y -qscale 10 -f image2 -vcodec pgmyuv -i $raw_src $2 $3 -flags +bitexact -sws_flags +accurate_rnd+bitexact $target_path/$file
157 do_md5sum ${outfile}lavf02.$1 >> $logfile
158 do_ffmpeg_crc $file $3 -i $target_path/$file
159 wc -c ${outfile}lavf02.$1 >> $logfile
162 do_audio_only()
164 file=${outfile}lavf.$1
165 do_ffmpeg $file -t 1 -qscale 10 -f s16le -i $pcm_src
166 do_ffmpeg_crc $file -i $target_path/$file
169 rm -f "$logfile"
170 rm -f "$benchfile"
172 # generate reference for quality check
173 if [ -n "$do_ref" ]; then
174 do_ffmpeg_nocheck $raw_ref -f image2 -vcodec pgmyuv -i $raw_src -an -f rawvideo $target_path/$raw_ref
175 do_ffmpeg_nocheck $pcm_ref -ab 128k -ac 2 -ar 44100 -f s16le -i $pcm_src -f wav $target_path/$pcm_ref
178 if [ -n "$do_mpeg" ] ; then
179 # mpeg1
180 do_video_encoding mpeg1.mpg "-qscale 10" "-f mpeg1video"
181 do_video_decoding
184 if [ -n "$do_mpeg2" ] ; then
185 # mpeg2
186 do_video_encoding mpeg2.mpg "-qscale 10" "-vcodec mpeg2video -f mpeg1video"
187 do_video_decoding
189 # mpeg2 encoding intra vlc qprd
190 do_video_encoding mpeg2ivlc-qprd.mpg "-vb 500k -bf 2 -trellis 1 -flags +qprd+mv0 -flags2 +ivlc -cmp 2 -subcmp 2 -mbd rd" "-vcodec mpeg2video -f mpeg2video"
191 do_video_decoding
193 #mpeg2 4:2:2 encoding
194 do_video_encoding mpeg2_422.mpg "-vb 1000k -bf 2 -trellis 1 -flags +qprd+mv0+ildct+ilme -flags2 +ivlc -mbd rd" "-vcodec mpeg2video -pix_fmt yuv422p -f mpeg2video"
195 do_video_decoding
197 # mpeg2
198 do_video_encoding mpeg2.mpg "-qscale 10" "-vcodec mpeg2video -idct int -dct int -f mpeg1video"
199 do_video_decoding "-idct int"
201 # mpeg2 encoding interlaced
202 do_video_encoding mpeg2i.mpg "-qscale 10" "-vcodec mpeg2video -f mpeg1video -flags +ildct+ilme"
203 do_video_decoding
206 if [ -n "$do_mpeg2thread" ] ; then
207 # mpeg2 encoding interlaced
208 do_video_encoding mpeg2thread.mpg "-qscale 10" "-vcodec mpeg2video -f mpeg1video -bf 2 -flags +ildct+ilme -threads 2"
209 do_video_decoding
211 # mpeg2 encoding interlaced using intra vlc
212 do_video_encoding mpeg2threadivlc.mpg "-qscale 10" "-vcodec mpeg2video -f mpeg1video -bf 2 -flags +ildct+ilme -flags2 +ivlc -threads 2"
213 do_video_decoding
215 # mpeg2 encoding interlaced
216 file=${outfile}mpeg2reuse.mpg
217 do_ffmpeg $file -sameq -me_threshold 256 -mb_threshold 1024 -i ${target_path}/${outfile}mpeg2thread.mpg -vcodec mpeg2video -f mpeg1video -bf 2 -flags +ildct+ilme -threads 4
218 do_video_decoding
221 if [ -n "$do_msmpeg4v2" ] ; then
222 do_video_encoding msmpeg4v2.avi "-qscale 10" "-an -vcodec msmpeg4v2"
223 do_video_decoding
226 if [ -n "$do_msmpeg4" ] ; then
227 do_video_encoding msmpeg4.avi "-qscale 10" "-an -vcodec msmpeg4"
228 do_video_decoding
231 if [ -n "$do_wmv1" ] ; then
232 do_video_encoding wmv1.avi "-qscale 10" "-an -vcodec wmv1"
233 do_video_decoding
236 if [ -n "$do_wmv2" ] ; then
237 do_video_encoding wmv2.avi "-qscale 10" "-an -vcodec wmv2"
238 do_video_decoding
241 if [ -n "$do_h261" ] ; then
242 do_video_encoding h261.avi "-qscale 11" "-s 352x288 -an -vcodec h261"
243 do_video_decoding
246 if [ -n "$do_h263" ] ; then
247 do_video_encoding h263.avi "-qscale 10" "-s 352x288 -an -vcodec h263"
248 do_video_decoding
251 if [ -n "$do_h263p" ] ; then
252 do_video_encoding h263p.avi "-qscale 2 -flags +umv+aiv+aic" "-s 352x288 -an -vcodec h263p -ps 300"
253 do_video_decoding
256 if [ -n "$do_mpeg4" ] ; then
257 do_video_encoding odivx.mp4 "-flags +mv4 -mbd bits -qscale 10" "-an -vcodec mpeg4"
258 do_video_decoding
261 if [ -n "$do_huffyuv" ] ; then
262 do_video_encoding huffyuv.avi "" "-an -vcodec huffyuv -pix_fmt yuv422p -sws_flags neighbor+bitexact"
263 do_video_decoding "" "-strict -2 -pix_fmt yuv420p -sws_flags neighbor+bitexact"
266 if [ -n "$do_rc" ] ; then
267 do_video_encoding mpeg4-rc.avi "-b 400k -bf 2" "-an -vcodec mpeg4"
268 do_video_decoding
271 if [ -n "$do_mpeg4adv" ] ; then
272 do_video_encoding mpeg4-adv.avi "-qscale 9 -flags +mv4+part+aic -trellis 1 -mbd bits -ps 200" "-an -vcodec mpeg4"
273 do_video_decoding
275 do_video_encoding mpeg4-qprd.avi "-b 450k -bf 2 -trellis 1 -flags +mv4+qprd+mv0 -cmp 2 -subcmp 2 -mbd rd" "-an -vcodec mpeg4"
276 do_video_decoding
278 do_video_encoding mpeg4-adap.avi "-b 550k -bf 2 -flags +mv4+mv0 -trellis 1 -cmp 1 -subcmp 2 -mbd rd -scplx_mask 0.3" "-an -vcodec mpeg4"
279 do_video_decoding
281 do_video_encoding mpeg4-Q.avi "-qscale 7 -flags +mv4+qpel -mbd 2 -bf 2 -cmp 1 -subcmp 2" "-an -vcodec mpeg4"
282 do_video_decoding
285 if [ -n "$do_mpeg4thread" ] ; then
286 do_video_encoding mpeg4-thread.avi "-b 500k -flags +mv4+part+aic -trellis 1 -mbd bits -ps 200 -bf 2" "-an -vcodec mpeg4 -threads 2"
287 do_video_decoding
290 if [ -n "$do_error" ] ; then
291 do_video_encoding error-mpeg4-adv.avi "-qscale 7 -flags +mv4+part+aic -mbd rd -ps 250 -error 10" "-an -vcodec mpeg4"
292 do_video_decoding
295 if [ -n "$do_mpeg4nr" ] ; then
296 do_video_encoding mpeg4-nr.avi "-qscale 8 -flags +mv4 -mbd rd -nr 200" "-an -vcodec mpeg4"
297 do_video_decoding
300 if [ -n "$do_mpeg1b" ] ; then
301 do_video_encoding mpeg1b.mpg "-qscale 8 -bf 3 -ps 200" "-an -vcodec mpeg1video -f mpeg1video"
302 do_video_decoding
305 if [ -n "$do_mjpeg" ] ; then
306 do_video_encoding mjpeg.avi "-qscale 10" "-an -vcodec mjpeg -pix_fmt yuvj420p"
307 do_video_decoding "" "-pix_fmt yuv420p"
310 if [ -n "$do_ljpeg" ] ; then
311 do_video_encoding ljpeg.avi "" "-an -vcodec ljpeg -strict -1"
312 do_video_decoding
315 if [ -n "$do_jpegls" ] ; then
316 do_video_encoding jpegls.avi "" "-an -vcodec jpegls -vtag MJPG -sws_flags neighbor+full_chroma_int+accurate_rnd+bitexact"
317 do_video_decoding "" "-pix_fmt yuv420p -sws_flags area+bitexact"
320 if [ -n "$do_rv10" ] ; then
321 do_video_encoding rv10.rm "-qscale 10" "-an"
322 do_video_decoding
325 if [ -n "$do_rv20" ] ; then
326 do_video_encoding rv20.rm "-qscale 10" "-vcodec rv20 -an"
327 do_video_decoding
330 if [ -n "$do_asv1" ] ; then
331 do_video_encoding asv1.avi "-qscale 10" "-an -vcodec asv1"
332 do_video_decoding
335 if [ -n "$do_asv2" ] ; then
336 do_video_encoding asv2.avi "-qscale 10" "-an -vcodec asv2"
337 do_video_decoding
340 if [ -n "$do_flv" ] ; then
341 do_video_encoding flv.flv "-qscale 10" "-an -vcodec flv"
342 do_video_decoding
345 if [ -n "$do_ffv1" ] ; then
346 do_video_encoding ffv1.avi "-strict -2" "-an -vcodec ffv1"
347 do_video_decoding
350 if [ -n "$do_snow" ] ; then
351 do_video_encoding snow.avi "-strict -2" "-an -vcodec snow -qscale 2 -flags +qpel -me_method iter -dia_size 2 -cmp 12 -subcmp 12 -s 128x64"
352 do_video_decoding "" "-s 352x288"
355 if [ -n "$do_snowll" ] ; then
356 do_video_encoding snow53.avi "-strict -2" "-an -vcodec snow -qscale .001 -pred 1 -flags +mv4+qpel"
357 do_video_decoding
360 if [ -n "$do_dv" ] ; then
361 do_video_encoding dv.dv "-dct int" "-s pal -an"
362 do_video_decoding "" "-s cif"
364 do_video_encoding dv411.dv "-dct int" "-s pal -an -pix_fmt yuv411p -sws_flags area+accurate_rnd+bitexact"
365 do_video_decoding "" "-s cif -sws_flags area+accurate_rnd+bitexact"
368 if [ -n "$do_dv50" ] ; then
369 do_video_encoding dv50.dv "-dct int" "-s pal -pix_fmt yuv422p -an -sws_flags neighbor+bitexact"
370 do_video_decoding "" "-s cif -pix_fmt yuv420p -sws_flags neighbor+bitexact"
373 if [ -n "$do_svq1" ] ; then
374 do_video_encoding svq1.mov "" "-an -vcodec svq1 -qscale 3 -pix_fmt yuv410p"
375 do_video_decoding "" "-pix_fmt yuv420p"
378 if [ -n "$do_flashsv" ] ; then
379 do_video_encoding flashsv.flv "" "-an -vcodec flashsv -sws_flags neighbor+full_chroma_int+accurate_rnd+bitexact"
380 do_video_decoding "" "-pix_fmt yuv420p -sws_flags area+accurate_rnd+bitexact"
383 if [ -n "$do_mp2" ] ; then
384 do_audio_encoding mp2.mp2 "-ar 44100"
385 do_audio_decoding
386 $tiny_psnr $pcm_dst $pcm_ref 2 1924 >> $logfile
389 if [ -n "$do_ac3" ] ; then
390 do_audio_encoding ac3.rm "" -vn
391 # binaries configured with --disable-sse decode ac3 differently
392 #do_audio_decoding
393 #$tiny_psnr $pcm_dst $pcm_ref 2 1024 >> $logfile
396 if [ -n "$do_g726" ] ; then
397 do_audio_encoding g726.wav "-ar 44100" "-ab 32k -ac 1 -ar 8000 -acodec g726"
398 do_audio_decoding
401 if [ -n "$do_adpcm_ima_wav" ] ; then
402 do_audio_encoding adpcm_ima.wav "-ar 44100" "-acodec adpcm_ima_wav"
403 do_audio_decoding
406 if [ -n "$do_adpcm_ima_qt" ] ; then
407 do_audio_encoding adpcm_qt.aiff "-ar 44100" "-acodec adpcm_ima_qt"
408 do_audio_decoding
411 if [ -n "$do_adpcm_ms" ] ; then
412 do_audio_encoding adpcm_ms.wav "-ar 44100" "-acodec adpcm_ms"
413 do_audio_decoding
416 if [ -n "$do_adpcm_yam" ] ; then
417 do_audio_encoding adpcm_yam.wav "-ar 44100" "-acodec adpcm_yamaha"
418 do_audio_decoding
421 if [ -n "$do_adpcm_swf" ] ; then
422 do_audio_encoding adpcm_swf.flv "-ar 44100" "-acodec adpcm_swf"
423 do_audio_decoding
426 if [ -n "$do_flac" ] ; then
427 do_audio_encoding flac.flac "-ar 44100" "-acodec flac -compression_level 2"
428 do_audio_decoding
431 if [ -n "$do_wma" ] ; then
432 # wmav1
433 do_audio_encoding wmav1.asf "-ar 44100" "-acodec wmav1"
434 do_ffmpeg_nomd5 $pcm_dst -i $target_path/$file -f wav
435 $tiny_psnr $pcm_dst $pcm_ref 2 8192 >> $logfile
436 # wmav2
437 do_audio_encoding wmav2.asf "-ar 44100" "-acodec wmav2"
438 do_ffmpeg_nomd5 $pcm_dst -i $target_path/$file -f wav
439 $tiny_psnr $pcm_dst $pcm_ref 2 8192 >> $logfile
442 #if [ -n "$do_vorbis" ] ; then
443 # vorbis
444 #disabled because it is broken
445 #do_audio_encoding vorbis.asf "-ar 44100" "-acodec vorbis"
446 #do_audio_decoding
449 do_audio_enc_dec() {
450 do_audio_encoding $3.$1 "" "$4 -sample_fmt $2 -acodec $3"
451 do_audio_decoding
454 if [ -n "$do_pcm" ] ; then
455 do_audio_enc_dec wav s16 pcm_alaw
456 do_audio_enc_dec wav s16 pcm_mulaw
457 do_audio_enc_dec mov u8 pcm_s8
458 do_audio_enc_dec wav u8 pcm_u8
459 do_audio_enc_dec mov s16 pcm_s16be
460 do_audio_enc_dec wav s16 pcm_s16le
461 do_audio_enc_dec mkv s16 pcm_s16be
462 do_audio_enc_dec mkv s16 pcm_s16le
463 do_audio_enc_dec mov s32 pcm_s24be
464 do_audio_enc_dec wav s32 pcm_s24le
465 #do_audio_enc_dec ??? s32 pcm_u24be #no compatible muxer or demuxer
466 #do_audio_enc_dec ??? s32 pcm_u24le #no compatible muxer or demuxer
467 do_audio_enc_dec mov s32 pcm_s32be
468 do_audio_enc_dec wav s32 pcm_s32le
469 #do_audio_enc_dec ??? s32 pcm_u32be #no compatible muxer or demuxer
470 #do_audio_enc_dec ??? s32 pcm_u32le #no compatible muxer or demuxer
471 do_audio_enc_dec au flt pcm_f32be
472 do_audio_enc_dec wav flt pcm_f32le
473 do_audio_enc_dec au dbl pcm_f64be
474 do_audio_enc_dec wav dbl pcm_f64le
475 do_audio_enc_dec wav s16 pcm_zork
476 do_audio_enc_dec 302 s16 pcm_s24daud "-ac 6 -ar 96000"
479 # libavformat testing
481 if [ -n "$do_avi" ] ; then
482 do_lavf avi
485 if [ -n "$do_asf" ] ; then
486 do_lavf asf "-acodec mp2" "-r 25"
489 if [ -n "$do_rm" ] ; then
490 file=${outfile}lavf.rm
491 do_ffmpeg $file -t 1 -qscale 10 -f image2 -vcodec pgmyuv -i $raw_src -f s16le -i $pcm_src
492 # broken
493 #do_ffmpeg_crc $file -i $target_path/$file
496 if [ -n "$do_mpg" ] ; then
497 do_lavf mpg
500 if [ -n "$do_mxf" ] ; then
501 do_lavf mxf "-ar 48000 -bf 2 -timecode_frame_start 264363"
502 do_lavf mxf_d10 "-ar 48000 -ac 2 -r 25 -s 720x576 -padtop 32 -vcodec mpeg2video -intra -flags +ildct+low_delay -dc 10 -flags2 +ivlc+non_linear_q -qscale 1 -ps 1 -qmin 1 -rc_max_vbv_use 1 -rc_min_vbv_use 1 -pix_fmt yuv422p -minrate 30000k -maxrate 30000k -b 30000k -bufsize 1200000 -top 1 -rc_init_occupancy 1200000 -qmax 12 -f mxf_d10"
505 if [ -n "$do_ts" ] ; then
506 do_lavf ts
509 if [ -n "$do_swf" ] ; then
510 do_lavf swf -an
513 if [ -n "$do_ffm" ] ; then
514 do_lavf ffm
517 if [ -n "$do_flv_fmt" ] ; then
518 do_lavf flv -an
521 if [ -n "$do_mov" ] ; then
522 do_lavf mov "-acodec pcm_alaw"
525 if [ -n "$do_dv_fmt" ] ; then
526 do_lavf dv "-ar 48000 -r 25 -s pal -ac 2"
529 if [ -n "$do_gxf" ] ; then
530 do_lavf gxf "-ar 48000 -r 25 -s pal -ac 1"
533 if [ -n "$do_nut" ] ; then
534 do_lavf nut "-acodec mp2"
537 if [ -n "$do_mkv" ] ; then
538 do_lavf mkv
542 # streamed images
543 # mjpeg
544 #file=${outfile}lavf.mjpeg
545 #do_ffmpeg $file -t 1 -qscale 10 -f image2 -vcodec pgmyuv -i $raw_src
546 #do_ffmpeg_crc $file -i $target_path/$file
548 if [ -n "$do_pbmpipe" ] ; then
549 do_streamed_images pbm
552 if [ -n "$do_pgmpipe" ] ; then
553 do_streamed_images pgm
556 if [ -n "$do_ppmpipe" ] ; then
557 do_streamed_images ppm
560 if [ -n "$do_gif" ] ; then
561 file=${outfile}lavf.gif
562 do_ffmpeg $file -t 1 -qscale 10 -f image2 -vcodec pgmyuv -i $raw_src -pix_fmt rgb24
563 #do_ffmpeg_crc $file -i $target_path/$file
566 if [ -n "$do_yuv4mpeg" ] ; then
567 file=${outfile}lavf.y4m
568 do_ffmpeg $file -t 1 -qscale 10 -f image2 -vcodec pgmyuv -i $raw_src
569 #do_ffmpeg_crc $file -i $target_path/$file
572 # image formats
574 if [ -n "$do_pgm" ] ; then
575 do_image_formats pgm
578 if [ -n "$do_ppm" ] ; then
579 do_image_formats ppm
582 if [ -n "$do_bmp" ] ; then
583 do_image_formats bmp
586 if [ -n "$do_tga" ] ; then
587 do_image_formats tga
590 if [ -n "$do_tiff" ] ; then
591 do_image_formats tiff "-pix_fmt rgb24"
594 if [ -n "$do_sgi" ] ; then
595 do_image_formats sgi
598 if [ -n "$do_jpg" ] ; then
599 do_image_formats jpg "-flags +bitexact -dct fastint -idct simple -pix_fmt yuvj420p" "-f image2"
602 if [ -n "$do_pcx" ] ; then
603 do_image_formats pcx
606 # audio only
608 if [ -n "$do_wav" ] ; then
609 do_audio_only wav
612 if [ -n "$do_alaw" ] ; then
613 do_audio_only al
616 if [ -n "$do_mulaw" ] ; then
617 do_audio_only ul
620 if [ -n "$do_au" ] ; then
621 do_audio_only au
624 if [ -n "$do_mmf" ] ; then
625 do_audio_only mmf
628 if [ -n "$do_aiff" ] ; then
629 do_audio_only aif
632 if [ -n "$do_voc" ] ; then
633 do_audio_only voc
636 if [ -n "$do_ogg" ] ; then
637 do_audio_only ogg
640 # pix_fmt conversions
642 if [ -n "$do_pixfmt" ] ; then
643 conversions="yuv420p yuv422p yuv444p yuyv422 yuv410p yuv411p yuvj420p \
644 yuvj422p yuvj444p rgb24 bgr24 rgb32 rgb565 rgb555 gray monow \
645 monob yuv440p yuvj440p"
646 for pix_fmt in $conversions ; do
647 file=${outfile}lavf-${pix_fmt}.yuv
648 do_ffmpeg_nocheck $file -r 1 -t 1 -f image2 -vcodec pgmyuv -i $raw_src \
649 -f rawvideo -s 352x288 -pix_fmt $pix_fmt $target_path/$raw_dst
650 do_ffmpeg $file -f rawvideo -s 352x288 -pix_fmt $pix_fmt -i $target_path/$raw_dst \
651 -f rawvideo -s 352x288 -pix_fmt yuv444p
652 done
655 rm -f "$bench" "$bench2"