ac3dec: apply dynamic range compression to correct channels in dual-mono mode.
[ffmpeg-lucabe.git] / tests / lavf-regression.sh
blob7b97881bb35205481dcd840d5afd5bb839a38f3b
1 #!/bin/sh
3 # automatic regression test for libavformat
6 #set -x
8 set -e
10 . $(dirname $0)/regression-funcs.sh
12 eval do_$test=y
14 do_lavf()
16 file=${outfile}lavf.$1
17 do_ffmpeg $file -t 1 -qscale 10 -f image2 -vcodec pgmyuv -i $raw_src -f s16le -i $pcm_src $2
18 do_ffmpeg_crc $file -i $target_path/$file $3
21 do_streamed_images()
23 file=${outfile}${1}pipe.$1
24 do_ffmpeg $file -t 1 -qscale 10 -f image2 -vcodec pgmyuv -i $raw_src -f image2pipe
25 do_ffmpeg_crc $file -f image2pipe -i $target_path/$file
28 do_image_formats()
30 file=${outfile}lavf%02d.$1
31 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
32 $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
33 do_md5sum ${outfile}lavf02.$1 >> $logfile
34 do_ffmpeg_crc $file $3 -i $target_path/$file
35 wc -c ${outfile}lavf02.$1 >> $logfile
38 do_audio_only()
40 file=${outfile}lavf.$1
41 do_ffmpeg $file -t 1 -qscale 10 -f s16le -i $pcm_src
42 do_ffmpeg_crc $file -i $target_path/$file
45 rm -f "$logfile"
46 rm -f "$benchfile"
48 if [ -n "$do_avi" ] ; then
49 do_lavf avi
52 if [ -n "$do_asf" ] ; then
53 do_lavf asf "-acodec mp2" "-r 25"
56 if [ -n "$do_rm" ] ; then
57 file=${outfile}lavf.rm
58 do_ffmpeg $file -t 1 -qscale 10 -f image2 -vcodec pgmyuv -i $raw_src -f s16le -i $pcm_src
59 # broken
60 #do_ffmpeg_crc $file -i $target_path/$file
63 if [ -n "$do_mpg" ] ; then
64 do_lavf mpg
67 if [ -n "$do_mxf" ] ; then
68 do_lavf mxf "-ar 48000 -bf 2 -timecode_frame_start 264363"
69 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"
72 if [ -n "$do_ts" ] ; then
73 do_lavf ts
76 if [ -n "$do_swf" ] ; then
77 do_lavf swf -an
80 if [ -n "$do_ffm" ] ; then
81 do_lavf ffm
84 if [ -n "$do_flv_fmt" ] ; then
85 do_lavf flv -an
88 if [ -n "$do_mov" ] ; then
89 do_lavf mov "-acodec pcm_alaw"
92 if [ -n "$do_dv_fmt" ] ; then
93 do_lavf dv "-ar 48000 -r 25 -s pal -ac 2"
96 if [ -n "$do_gxf" ] ; then
97 do_lavf gxf "-ar 48000 -r 25 -s pal -ac 1"
100 if [ -n "$do_nut" ] ; then
101 do_lavf nut "-acodec mp2"
104 if [ -n "$do_mkv" ] ; then
105 do_lavf mkv
109 # streamed images
110 # mjpeg
111 #file=${outfile}lavf.mjpeg
112 #do_ffmpeg $file -t 1 -qscale 10 -f image2 -vcodec pgmyuv -i $raw_src
113 #do_ffmpeg_crc $file -i $target_path/$file
115 if [ -n "$do_pbmpipe" ] ; then
116 do_streamed_images pbm
119 if [ -n "$do_pgmpipe" ] ; then
120 do_streamed_images pgm
123 if [ -n "$do_ppmpipe" ] ; then
124 do_streamed_images ppm
127 if [ -n "$do_gif" ] ; then
128 file=${outfile}lavf.gif
129 do_ffmpeg $file -t 1 -qscale 10 -f image2 -vcodec pgmyuv -i $raw_src -pix_fmt rgb24
130 #do_ffmpeg_crc $file -i $target_path/$file
133 if [ -n "$do_yuv4mpeg" ] ; then
134 file=${outfile}lavf.y4m
135 do_ffmpeg $file -t 1 -qscale 10 -f image2 -vcodec pgmyuv -i $raw_src
136 #do_ffmpeg_crc $file -i $target_path/$file
139 # image formats
141 if [ -n "$do_pgm" ] ; then
142 do_image_formats pgm
145 if [ -n "$do_ppm" ] ; then
146 do_image_formats ppm
149 if [ -n "$do_bmp" ] ; then
150 do_image_formats bmp
153 if [ -n "$do_tga" ] ; then
154 do_image_formats tga
157 if [ -n "$do_tiff" ] ; then
158 do_image_formats tiff "-pix_fmt rgb24"
161 if [ -n "$do_sgi" ] ; then
162 do_image_formats sgi
165 if [ -n "$do_jpg" ] ; then
166 do_image_formats jpg "-flags +bitexact -dct fastint -idct simple -pix_fmt yuvj420p" "-f image2"
169 if [ -n "$do_pcx" ] ; then
170 do_image_formats pcx
173 # audio only
175 if [ -n "$do_wav" ] ; then
176 do_audio_only wav
179 if [ -n "$do_alaw" ] ; then
180 do_audio_only al
183 if [ -n "$do_mulaw" ] ; then
184 do_audio_only ul
187 if [ -n "$do_au" ] ; then
188 do_audio_only au
191 if [ -n "$do_mmf" ] ; then
192 do_audio_only mmf
195 if [ -n "$do_aiff" ] ; then
196 do_audio_only aif
199 if [ -n "$do_voc" ] ; then
200 do_audio_only voc
203 if [ -n "$do_ogg" ] ; then
204 do_audio_only ogg
207 # pix_fmt conversions
209 if [ -n "$do_pixfmt" ] ; then
210 conversions="yuv420p yuv422p yuv444p yuyv422 yuv410p yuv411p yuvj420p \
211 yuvj422p yuvj444p rgb24 bgr24 rgb32 rgb565 rgb555 gray monow \
212 monob yuv440p yuvj440p"
213 for pix_fmt in $conversions ; do
214 file=${outfile}lavf-${pix_fmt}.yuv
215 do_ffmpeg_nocheck $file -r 1 -t 1 -f image2 -vcodec pgmyuv -i $raw_src \
216 -f rawvideo -s 352x288 -pix_fmt $pix_fmt $target_path/$raw_dst
217 do_ffmpeg $file -f rawvideo -s 352x288 -pix_fmt $pix_fmt -i $target_path/$raw_dst \
218 -f rawvideo -s 352x288 -pix_fmt yuv444p
219 done
222 rm -f "$bench" "$bench2"